:root {
    --primary-color: #577cb7;
    --secondary-color: #4a6ba3;
    --accent-color: #6b94d4;
    --dark-bg: #202739;
    --dark-purple: #1a1f2e;
    --light-purple: #2d3548;
    --text-light: #F3F4F6;
    --text-gray: #D1D5DB;
    --gradient-1: linear-gradient(135deg, #577cb7 0%, #6b94d4 100%);
    --gradient-2: linear-gradient(135deg, #4a6ba3 0%, #577cb7 100%);
    --gradient-3: linear-gradient(135deg, #202739 0%, #1a1f2e 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark-purple);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 31, 46, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(87, 124, 183, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 20px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: 1px;
    position: relative;
}

.logo::before {
    content: '✦';
    position: absolute;
    left: -25px;
    color: var(--accent-color);
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

.btn-download-nav {
    background: var(--gradient-1);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(87, 124, 183, 0.3);
}

.btn-download-nav::after {
    display: none;
}

.btn-download-nav:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(87, 124, 183, 0.5);
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-light);
    transition: 0.3s;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(87, 124, 183, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(107, 148, 212, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 50% 20%, rgba(74, 107, 163, 0.1) 0%, transparent 40%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23577cb7' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
}

.star {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-color);
    animation: twinkle 3s infinite;
}

.star:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.star:nth-child(2) {
    top: 40%;
    left: 30%;
    animation-delay: 0.5s;
}

.star:nth-child(3) {
    top: 60%;
    right: 20%;
    animation-delay: 1s;
}

.star:nth-child(4) {
    top: 80%;
    right: 40%;
    animation-delay: 1.5s;
}

.star:nth-child(5) {
    top: 30%;
    right: 10%;
    animation-delay: 2s;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.8); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, var(--accent-color) 50%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
    text-shadow: 0 0 40px rgba(87, 124, 183, 0.3);
    position: relative;
}

.hero-title::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(20px);
    opacity: 0.5;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.2s backwards;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 8px 25px rgba(87, 124, 183, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(87, 124, 183, 0.6);
}

.btn-secondary {
    background: rgba(87, 124, 183, 0.1);
    color: var(--accent-color);
    border-color: var(--accent-color);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--gradient-1);
    color: white;
    border-color: transparent;
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border-color: var(--text-gray);
}

.btn-outline:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background: rgba(87, 124, 183, 0.1);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.hero-image {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: var(--gradient-1);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    z-index: -1;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    filter: drop-shadow(0 25px 60px rgba(87, 124, 183, 0.6));
    position: relative;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 4rem;
}

.features {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(87, 124, 183, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    position: relative;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: var(--light-purple);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(87, 124, 183, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(87, 124, 183, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.6s;
    z-index: 0;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover::after {
    width: 400px;
    height: 400px;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--accent-color);
    box-shadow: 0 25px 60px rgba(87, 124, 183, 0.4);
    background: var(--dark-bg);
}

.feature-card > * {
    position: relative;
    z-index: 1;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(87, 124, 183, 0.4);
    transition: all 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(87, 124, 183, 0.6);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

.how-it-works {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-purple) 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.how-it-works::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-top: 5rem;
    position: relative;
}

@media (max-width: 968px) {
    .steps {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.step {
    text-align: center;
    position: relative;
    padding: 2rem;
    background: rgba(45, 53, 72, 0.3);
    border-radius: 20px;
    border: 1px solid rgba(87, 124, 183, 0.1);
    transition: all 0.4s;
}

.step:hover {
    transform: translateY(-10px);
    background: rgba(45, 53, 72, 0.5);
    border-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(87, 124, 183, 0.3);
}

.step-number {
    width: 90px;
    height: 90px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 auto 2rem;
    box-shadow: 0 15px 40px rgba(87, 124, 183, 0.5);
    position: relative;
    transition: all 0.4s;
}

.step:hover .step-number {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 20px 50px rgba(87, 124, 183, 0.7);
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 3px solid var(--accent-color);
    opacity: 0.3;
    animation: ripple 2s infinite;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.step p {
    color: var(--text-gray);
}

.screenshots {
    padding: 8rem 0;
    background: var(--dark-purple);
    position: relative;
}

.screenshots::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.screenshots-slider {
    display: flex;
    gap: 2.5rem;
    margin-top: 4rem;
    overflow-x: auto;
    padding: 2rem 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color) var(--dark-bg);
}

.screenshots-slider::-webkit-scrollbar {
    height: 8px;
}

.screenshots-slider::-webkit-scrollbar-track {
    background: var(--dark-bg);
    border-radius: 10px;
}

.screenshots-slider::-webkit-scrollbar-thumb {
    background: var(--gradient-1);
    border-radius: 10px;
}

@media (min-width: 1200px) {
    .screenshots-slider {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        overflow-x: visible;
    }
}

@media (max-width: 768px) {
    .screenshots-slider {
        gap: 1.5rem;
    }
}

.screenshot-item {
    text-align: center;
    min-width: 220px;
    scroll-snap-align: center;
    transition: all 0.3s;
}

.screenshot-item:hover {
    transform: scale(1.05);
}

.screenshot-item img {
    width: 100%;
    max-width: 250px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.screenshot-item img:hover {
    transform: scale(1.05);
}

.screenshot-item p {
    margin-top: 1rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.pricing {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--dark-purple) 0%, var(--dark-bg) 50%, var(--dark-purple) 100%);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.pricing::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(87, 124, 183, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 968px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
}

.pricing-card {
    background: var(--light-purple);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    border: 2px solid rgba(87, 124, 183, 0.15);
    text-align: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top, rgba(87, 124, 183, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card:hover {
    transform: translateY(-15px);
    border-color: var(--accent-color);
    box-shadow: 0 25px 60px rgba(87, 124, 183, 0.4);
}

.pricing-card.featured {
    border-color: var(--accent-color);
    box-shadow: 0 30px 70px rgba(87, 124, 183, 0.5);
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--light-purple) 100%);
    transform: scale(1.08);
    border-width: 3px;
}

.pricing-card.featured::before {
    opacity: 1;
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-15px);
    box-shadow: 0 35px 80px rgba(87, 124, 183, 0.6);
}

.pricing-card > * {
    position: relative;
    z-index: 1;
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-1);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(87, 124, 183, 0.4);
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

.price span {
    font-size: 1rem;
    color: var(--text-gray);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    padding: 0.8rem 0;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.pricing-features i {
    color: var(--accent-color);
}

.one-time-purchases {
    margin-top: 6rem;
    text-align: center;
    padding: 3rem;
    background: rgba(45, 53, 72, 0.3);
    border-radius: 24px;
    border: 1px solid rgba(87, 124, 183, 0.15);
    position: relative;
    z-index: 1;
}

.one-time-purchases h3 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: white;
    position: relative;
    display: inline-block;
}

.one-time-purchases h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.purchases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 640px) {
    .purchases-grid {
        grid-template-columns: 1fr;
    }
}

.purchase-item {
    background: var(--dark-bg);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(87, 124, 183, 0.2);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.purchase-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.purchase-item:hover::before {
    transform: scaleX(1);
}

.purchase-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(87, 124, 183, 0.4);
}

.purchase-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
}

.purchase-price {
    font-size: 2rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.faq {
    padding: 8rem 0;
    background: var(--dark-purple);
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light-purple);
    margin-bottom: 1.5rem;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(87, 124, 183, 0.15);
    transition: all 0.4s;
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-1);
    transform: scaleY(0);
    transition: transform 0.4s;
}

.faq-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 8px 25px rgba(87, 124, 183, 0.2);
    transform: translateX(5px);
}

.faq-item:hover::before,
.faq-item.active::before {
    transform: scaleY(1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    color: white;
    font-size: 1.1rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    color: var(--accent-color);
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.faq-answer a {
    color: var(--accent-color);
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.cta-final {
    padding: 10rem 0;
    text-align: center;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-purple) 100%);
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.cta-final::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(107, 148, 212, 0.15) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.cta-final h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.cta-final p {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.cta-final .btn {
    position: relative;
    z-index: 1;
}

.footer {
    background: var(--dark-purple);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(87, 124, 183, 0.15);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-col p {
    color: var(--text-gray);
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--accent-color);
}

.footer-disclaimer {
    background: var(--light-purple);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-color);
}

.footer-disclaimer p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-disclaimer strong {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(87, 124, 183, 0.15);
    color: var(--text-gray);
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--dark-purple);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        border-top: 1px solid rgba(87, 124, 183, 0.15);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-image {
        order: -1;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: scale(1) translateY(-15px);
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .step {
        padding: 1.5rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
}


.legal-page {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--light-purple);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(87, 124, 183, 0.15);
}

.legal-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: white;
    margin-bottom: 0.5rem;
}

.legal-content .updated {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-content section {
    margin-bottom: 2.5rem;
}

.legal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
}

.legal-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
    color: var(--text-gray);
    line-height: 1.8;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s;
}

.legal-content a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-content strong {
    color: white;
    font-weight: 600;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 2rem 1.5rem;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .legal-content h2 {
        font-size: 1.5rem;
    }

    .legal-content h3 {
        font-size: 1.2rem;
    }
}


.screenshot-item img {
    width: 100%;
    max-width: 250px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.4s;
    border: 2px solid rgba(87, 124, 183, 0.2);
}

.screenshot-item img:hover {
    transform: scale(1.08) translateY(-5px);
    box-shadow: 0 20px 50px rgba(87, 124, 183, 0.4);
    border-color: var(--accent-color);
}

.hero-image img {
    animation: float 6s ease-in-out infinite, glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 25px 60px rgba(87, 124, 183, 0.4));
    }
    to {
        filter: drop-shadow(0 30px 70px rgba(107, 148, 212, 0.7));
    }
}

.btn {
    position: relative;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s;
    background: inherit;
    filter: blur(15px);
    z-index: -1;
}

.btn:hover::after {
    opacity: 0.6;
}

.step {
    position: relative;
}

.step::before {
    content: '';
    position: absolute;
    top: 40px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    opacity: 0.3;
}

.step:last-child::before {
    display: none;
}

@media (max-width: 968px) {
    .step::before {
        display: none;
    }
}


.badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-1);
    padding: 0.6rem 1.8rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(87, 124, 183, 0.5);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
    }
    50% {
        transform: translateX(-50%) scale(1.05);
    }
}

.purchase-item h4 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: white;
    font-weight: 600;
}

.hero-content {
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.feature-icon i,
.step-number,
.pricing-card h3 {
    user-select: none;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease-out;
}

.nav-menu a:hover::after {
    width: 100%;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-question {
    width: 100%;
    padding: 1.8rem 2.5rem;
    background: none;
    border: none;
    color: white;
    font-size: 1.15rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
    font-weight: 500;
}

.faq-question i {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--accent-color);
    font-size: 1.2rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 600px;
}

.footer-col h4 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 50px;
    overflow: hidden;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
}

.pricing-features li {
    padding: 1rem 0;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(87, 124, 183, 0.1);
    transition: all 0.3s;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li:hover {
    color: var(--text-light);
    padding-left: 5px;
}

.pricing-features i {
    color: var(--accent-color);
    font-size: 1.1rem;
    min-width: 20px;
}

.pricing-card h3 {
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 600;
}

.step h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
}

.step p {
    color: var(--text-gray);
    line-height: 1.8;
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
}

@media (max-width: 640px) {
    .faq-question {
        padding: 1.5rem;
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 1.5rem 1.5rem;
    }
}


.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(87, 124, 183, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(107, 148, 212, 0.12) 0%, transparent 50%);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 8s ease-in-out infinite;
}

.hero-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(87, 124, 183, 0.4) 0%, transparent 70%);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(107, 148, 212, 0.3) 0%, transparent 70%);
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.hero-orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(74, 107, 163, 0.3) 0%, transparent 70%);
    bottom: 20%;
    left: 40%;
    animation-delay: 4s;
}

#starsCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(87, 124, 183, 0.15);
    border: 1px solid rgba(87, 124, 183, 0.3);
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease-out;
}

.hero-badge i {
    color: var(--accent-color);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.title-line {
    display: block;
    color: white;
}

.title-highlight {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 15px;
    background: rgba(87, 124, 183, 0.2);
    z-index: -1;
    border-radius: 5px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 600px;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.hero-cta {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.8s backwards;
}

.btn-hero {
    padding: 1.1rem 2.2rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.btn-hero i {
    font-size: 1.2rem;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--text-gray);
    font-size: 0.9rem;
    animation: fadeInUp 1s ease-out 1s backwards;
}

.hero-trust i {
    color: var(--accent-color);
}

.hero-visual {
    position: relative;
    animation: fadeInUp 1s ease-out 0.5s backwards;
}

.phone-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-frame {
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.phone-frame img {
    width: 100%;
    max-width: 380px;
    filter: drop-shadow(0 30px 70px rgba(87, 124, 183, 0.6));
}

.phone-frame::before {
    content: '';
    position: absolute;
    inset: -30px;
    background: var(--gradient-1);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    z-index: -1;
    animation: pulse 4s ease-in-out infinite;
}

.floating-card {
    position: absolute;
    background: var(--light-purple);
    border: 1px solid rgba(87, 124, 183, 0.3);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: floatCard 4s ease-in-out infinite;
    z-index: 3;
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.floating-card span {
    font-size: 0.95rem;
    font-weight: 500;
    color: white;
}

.card-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: -15%;
    animation-delay: 1.5s;
}

.card-3 {
    bottom: 15%;
    left: -5%;
    animation-delay: 3s;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

.screenshots {
    padding: 8rem 0;
    background: var(--dark-purple);
    position: relative;
}

.screenshots::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    background: rgba(87, 124, 183, 0.15);
    border: 1px solid rgba(87, 124, 183, 0.3);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.screenshots-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.featured-screen {
    background: var(--light-purple);
    border-radius: 24px;
    padding: 2.5rem;
    border: 2px solid rgba(87, 124, 183, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.5s;
}

.featured-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
}

.featured-screen:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(87, 124, 183, 0.4);
    border-color: var(--accent-color);
}

.screen-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--gradient-1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(87, 124, 183, 0.4);
    z-index: 2;
}

.screen-image {
    margin-bottom: 2rem;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.screen-image img {
    width: 100%;
    display: block;
    transition: transform 0.5s;
}

.featured-screen:hover .screen-image img {
    transform: scale(1.05);
}

.screen-info h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.screen-info p {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.screen-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.screen-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.screen-features i {
    color: var(--accent-color);
}

.screenshots-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.screenshot-card {
    background: var(--light-purple);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(87, 124, 183, 0.15);
    transition: all 0.4s;
    cursor: pointer;
}

.screenshot-card:hover {
    transform: translateX(10px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(87, 124, 183, 0.3);
}

.screenshots-grid .screenshot-card {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
    align-items: center;
}

.screenshots-grid .screen-image {
    margin-bottom: 0;
    border-radius: 12px;
}

.screenshots-grid .screen-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.screenshots-grid .screen-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
}

.screenshots-grid .screen-info p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

@media (max-width: 1200px) {
    .screenshots-container {
        grid-template-columns: 1fr;
    }
    
    .screenshots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .screenshots-grid .screenshot-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .screenshots-grid .screen-image img {
        height: 250px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .floating-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .screenshots-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .stat-item {
        text-align: center;
    }
}


.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 31, 46, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(87, 124, 183, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    max-width: 1400px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    transition: transform 0.3s;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-image {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease-out;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-download-nav {
    background: var(--gradient-1);
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(87, 124, 183, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: white;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.btn-download-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(87, 124, 183, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-download-nav i {
    font-size: 1.1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-light);
    transition: all 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.footer {
    background: var(--dark-purple);
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(87, 124, 183, 0.15);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 5rem;
    margin-bottom: 4rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.footer-logo span {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.footer-app-badges {
    display: flex;
    gap: 1rem;
}

.app-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--light-purple);
    border: 1px solid rgba(87, 124, 183, 0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
}

.app-badge:hover {
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(87, 124, 183, 0.3);
}

.app-badge i {
    font-size: 2rem;
    color: var(--accent-color);
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-small {
    font-size: 0.7rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-large {
    font-size: 1.1rem;
    color: white;
    font-weight: 600;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-1);
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--accent-color);
    margin-top: 0.2rem;
    min-width: 16px;
}

.footer-disclaimer {
    background: var(--light-purple);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 3rem;
    border-left: 4px solid var(--accent-color);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.disclaimer-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(87, 124, 183, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.disclaimer-icon i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.disclaimer-text {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.7;
}

.disclaimer-text strong {
    color: var(--accent-color);
    font-weight: 600;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(87, 124, 183, 0.15);
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-bottom-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

.footer-bottom-links .separator {
    color: rgba(87, 124, 183, 0.3);
}

@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--dark-purple);
        width: 100%;
        text-align: center;
        transition: left 0.3s;
        padding: 2rem 0;
        border-top: 1px solid rgba(87, 124, 183, 0.15);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        gap: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 1rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .nav-link::after {
        display: none;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .logo-text {
        font-size: 1.5rem;
    }

    .logo-image {
        width: 38px;
        height: 38px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-disclaimer {
        flex-direction: column;
        text-align: center;
    }

    .disclaimer-icon {
        margin: 0 auto;
    }
}
