/* ======================================
   CSS VARIABLES & THEME SYSTEM
   ====================================== */
:root {
    /* Color System */
    --accent-color: #4facfe;
    --accent-rgb: 79, 172, 254;
    --accent-hover: #369ce8;
    
    /* Dark Theme (Default) */
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #2a2a2a;
    --bg-card: rgba(255, 255, 255, 0.05);
    --bg-card-hover: rgba(255, 255, 255, 0.08);
    
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #999999;
    
    --border-color: rgba(255, 255, 255, 0.1);
    --border-hover: rgba(255, 255, 255, 0.2);
    
    /* Shadows */
    --shadow-small: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-large: 0 8px 32px rgba(0, 0, 0, 0.5);
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;
    
    /* Z-index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal: 1040;
    --z-popover: 1050;
    --z-tooltip: 1060;
    
    /* Animations */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Light Theme */
[data-theme="light"] {
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #e9ecef;
    --bg-card: rgba(0, 0, 0, 0.03);
    --bg-card-hover: rgba(0, 0, 0, 0.06);
    
    --text-primary: #1a1a1a;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    
    --border-color: rgba(0, 0, 0, 0.1);
    --border-hover: rgba(0, 0, 0, 0.2);
    
    --shadow-small: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-large: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* ======================================
   RESET & BASE STYLES
   ====================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    transition: background-color var(--transition-base), color var(--transition-base);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all var(--transition-fast);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    transition: all var(--transition-fast);
}

ul, ol {
    list-style: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ======================================
   LAYOUT & CONTAINERS
   ====================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-6);
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 var(--space-8);
    }
}

.section {
    padding: var(--space-16) 0;
}

@media (min-width: 768px) {
    .section {
        padding: var(--space-20) 0;
    }
}

@media (min-width: 1024px) {
    .section {
        padding: var(--space-24) 0;
    }
}

.section__header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.section__title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
    color: var(--text-primary);
}

@media (min-width: 768px) {
    .section__title {
        font-size: var(--font-size-4xl);
    }
}

@media (min-width: 1024px) {
    .section__title {
        font-size: var(--font-size-5xl);
    }
}

.section__subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ======================================
   HEADER & NAVIGATION
   ====================================== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    z-index: var(--z-fixed);
    transition: all var(--transition-base);
}

[data-theme="light"] .header {
    background: rgba(255, 255, 255, 0.9);
}

.header--scrolled {
    background: var(--bg-primary);
    box-shadow: var(--shadow-medium);
}

.header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.header__logo {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}

.logo__text {
    background: linear-gradient(135deg, var(--accent-color) 0%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: none;
}

@media (min-width: 1024px) {
    .nav {
        display: block;
    }
}

.nav--open {
    display: block;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--bg-primary);
    z-index: 999;
    padding: var(--space-8);
}

@media (min-width: 1024px) {
    .nav--open {
        position: static;
        height: auto;
        width: auto;
        background: none;
        padding: 0;
    }
}

.nav__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

@media (min-width: 1024px) {
    .nav__list {
        flex-direction: row;
        gap: var(--space-8);
        align-items: center;
    }
}

.nav__link {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: var(--font-size-lg);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.nav__link:hover {
    color: var(--accent-color);
}

@media (min-width: 1024px) {
    .nav__link {
        font-size: var(--font-size-base);
    }
}

.header__actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    cursor: pointer;
}

.theme-toggle:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    color: var(--accent-color);
}

.theme-toggle__icon--light {
    display: block;
}

.theme-toggle__icon--dark {
    display: none;
}

[data-theme="light"] .theme-toggle__icon--light {
    display: none;
}

[data-theme="light"] .theme-toggle__icon--dark {
    display: block;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-2);
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-fast);
}

.mobile-menu-toggle--open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle--open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle--open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ======================================
   BUTTONS
   ====================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: var(--font-size-base);
    line-height: 1;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
    padding: var(--space-3) var(--space-6);
}

.btn--primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, #f093fb 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(var(--accent-rgb), 0.3);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--accent-rgb), 0.4);
}

.btn--outline {
    border-color: var(--border-color);
    color: var(--text-primary);
    background: var(--bg-card);
}

.btn--outline:hover {
    border-color: var(--accent-color);
    background: var(--bg-card-hover);
    color: var(--accent-color);
}

.btn--small {
    padding: var(--space-2) var(--space-4);
    font-size: var(--font-size-sm);
}

.btn--large {
    padding: var(--space-4) var(--space-8);
    font-size: var(--font-size-lg);
}

.btn--full {
    width: 100%;
}

/* ======================================
   HERO SECTION
   ====================================== */
.hero {
    padding-top: calc(70px + var(--space-16));
    padding-bottom: var(--space-16);
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(var(--accent-rgb), 0.1) 0%, transparent 70%);
    pointer-events: none;
}

@media (min-width: 768px) {
    .hero {
        padding-top: calc(70px + var(--space-20));
        padding-bottom: var(--space-20);
    }
}

@media (min-width: 1024px) {
    .hero {
        padding-top: calc(70px + var(--space-24));
        padding-bottom: var(--space-24);
    }
}

.hero__content {
    display: grid;
    gap: var(--space-12);
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .hero__content {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-16);
    }
}

.hero__title {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--space-6);
}

@media (min-width: 768px) {
    .hero__title {
        font-size: var(--font-size-4xl);
    }
}

@media (min-width: 1024px) {
    .hero__title {
        font-size: var(--font-size-5xl);
    }
}

.hero__title-highlight {
    background: linear-gradient(135deg, var(--accent-color) 0%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__description {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: var(--space-8);
    max-width: 600px;
}

.hero__buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-bottom: var(--space-12);
}

@media (min-width: 640px) {
    .hero__buttons {
        flex-direction: row;
        gap: var(--space-6);
    }
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: var(--space-6);
}

.hero__stat {
    text-align: center;
}

@media (min-width: 1024px) {
    .hero__stat {
        text-align: left;
    }
}

.hero__stat-number {
    display: block;
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--accent-color);
}

.hero__stat-label {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    font-weight: 500;
}

.hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.trading-chart {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    backdrop-filter: blur(12px);
    max-width: 400px;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: end;
    justify-content: center;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: var(--space-2);
    height: 200px;
}

.chart-bar {
    width: 24px;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    animation: barGrow 2s ease-out forwards;
    transform-origin: bottom;
    transform: scaleY(0);
}

.chart-bar--green {
    background: linear-gradient(to top, #10b981, #34d399);
}

.chart-bar--red {
    background: linear-gradient(to top, #ef4444, #f87171);
}

@keyframes barGrow {
    to {
        transform: scaleY(1);
    }
}

.chart-bar:nth-child(1) { animation-delay: 0.1s; }
.chart-bar:nth-child(2) { animation-delay: 0.2s; }
.chart-bar:nth-child(3) { animation-delay: 0.3s; }
.chart-bar:nth-child(4) { animation-delay: 0.4s; }
.chart-bar:nth-child(5) { animation-delay: 0.5s; }
.chart-bar:nth-child(6) { animation-delay: 0.6s; }
.chart-bar:nth-child(7) { animation-delay: 0.7s; }

.shield-icon {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    opacity: 0.8;
}

/* ======================================
   BENEFITS SECTION
   ====================================== */
.benefits__grid {
    display: grid;
    gap: var(--space-8);
    margin-bottom: var(--space-12);
}

@media (min-width: 768px) {
    .benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-8);
    }
}

.benefit__card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    text-align: center;
    transition: all var(--transition-base);
    backdrop-filter: blur(12px);
}

.benefit__card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-large);
}

.benefit__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-6);
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.1) 0%, rgba(240, 147, 251, 0.1) 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
}

.benefit__title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--space-4);
    color: var(--text-primary);
}

.benefit__description {
    color: var(--text-secondary);
    line-height: 1.6;
}

.benefits__cta {
    text-align: center;
}

/* ======================================
   HOW IT WORKS SECTION
   ====================================== */
.how-it-works {
    background: var(--bg-secondary);
}

.steps {
    display: grid;
    gap: var(--space-12);
    margin-bottom: var(--space-12);
}

@media (min-width: 1024px) {
    .steps {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-8);
        align-items: start;
    }
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

@media (min-width: 1024px) {
    .step {
        text-align: left;
        align-items: flex-start;
    }
}

.step__number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #f093fb 100%);
    color: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--space-6);
    box-shadow: 0 4px 12px rgba(var(--accent-rgb), 0.3);
}

.step__title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--space-4);
    color: var(--text-primary);
}

.step__description {
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 300px;
}

@media (min-width: 1024px) {
    .step__description {
        max-width: none;
    }
}

.step__arrow {
    display: none;
    position: absolute;
    top: 30px;
    right: -50px;
    color: var(--accent-color);
}

@media (min-width: 1024px) {
    .step:not(:last-child) .step__arrow {
        display: block;
    }
}

.how-it-works__cta {
    text-align: center;
}

/* ======================================
   STATISTICS SECTION
   ====================================== */
.stats__grid {
    display: grid;
    gap: var(--space-8);
}

@media (min-width: 640px) {
    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .stats__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stats__card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    text-align: center;
    backdrop-filter: blur(12px);
    transition: all var(--transition-base);
}

.stats__card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-large);
}

.stats__number {
    display: block;
    font-size: var(--font-size-4xl);
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-color) 0%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-2);
}

.stats__label {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.stats__description {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

/* ======================================
   TESTIMONIALS SECTION
   ====================================== */
.testimonials {
    background: var(--bg-secondary);
}

.testimonials__grid {
    display: grid;
    gap: var(--space-8);
}

@media (min-width: 768px) {
    .testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial__card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    backdrop-filter: blur(12px);
    transition: all var(--transition-base);
}

.testimonial__card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-large);
}

.testimonial__stars {
    color: #fbbf24;
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-4);
}

.testimonial__text {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-6);
    font-style: italic;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.testimonial__avatar {
    flex-shrink: 0;
}

.avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #f093fb 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: var(--font-size-sm);
}

.testimonial__name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-1);
}

.testimonial__role {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

/* ======================================
   PRICING SECTION
   ====================================== */
.pricing__grid {
    display: grid;
    gap: var(--space-8);
}

@media (min-width: 768px) {
    .pricing__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pricing__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pricing__card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    backdrop-filter: blur(12px);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.pricing__card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-large);
}

.pricing__card--popular {
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.pricing__card--popular::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #f093fb 100%);
}

.pricing__badge {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    background: linear-gradient(135deg, var(--accent-color) 0%, #f093fb 100%);
    color: white;
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 600;
}

.pricing__header {
    text-align: center;
    margin-bottom: var(--space-8);
}

.pricing__title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}

.pricing__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: var(--space-4);
}

.pricing__currency {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--text-secondary);
}

.pricing__amount {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--text-primary);
}

.pricing__period {
    font-size: var(--font-size-base);
    color: var(--text-muted);
}

.pricing__description {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

.pricing__features {
    margin-bottom: var(--space-8);
}

.pricing__features li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

.pricing__features li::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: 600;
    flex-shrink: 0;
}

/* ======================================
   FAQ SECTION
   ====================================== */
.faq__container {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-4);
    background: var(--bg-card);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq__item:hover {
    border-color: var(--border-hover);
}

.faq__item--open {
    border-color: var(--accent-color);
}

.faq__question {
    width: 100%;
    padding: var(--space-6);
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-primary);
    background: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.faq__question:hover {
    color: var(--accent-color);
}

.faq__icon {
    color: var(--text-muted);
    transition: transform var(--transition-base);
    flex-shrink: 0;
    margin-left: var(--space-4);
}

.faq__item--open .faq__icon {
    transform: rotate(180deg);
    color: var(--accent-color);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.faq__item--open .faq__answer {
    max-height: 200px;
}

.faq__answer p {
    padding: 0 var(--space-6) var(--space-6);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ======================================
   SIGNUP SECTION
   ====================================== */
.signup {
    background: var(--bg-secondary);
}

.signup__content {
    display: grid;
    gap: var(--space-12);
    align-items: center;
}

@media (min-width: 1024px) {
    .signup__content {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-16);
    }
}

.signup__title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
    color: var(--text-primary);
}

.signup__description {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: var(--space-8);
    line-height: 1.6;
}

.signup__benefits {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.signup__benefit {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: var(--text-secondary);
}

.signup__benefit svg {
    flex-shrink: 0;
}

/* ======================================
   FORMS
   ====================================== */
.form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    backdrop-filter: blur(12px);
}

.form__group {
    margin-bottom: var(--space-6);
}

.form__label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.form__input {
    width: 100%;
    padding: var(--space-4);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: var(--font-size-base);
    transition: all var(--transition-fast);
}

.form__input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.1);
}

.form__input.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form__privacy {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    text-align: center;
    margin-top: var(--space-4);
    line-height: 1.5;
}

.form__privacy a {
    color: var(--accent-color);
    text-decoration: underline;
}

.form__privacy a:hover {
    color: var(--accent-hover);
}

/* ======================================
   FOOTER
   ====================================== */
.footer {
    background: var(--bg-tertiary);
    border-top: 1px solid var(--border-color);
    padding: var(--space-16) 0 var(--space-8);
}

.footer__content {
    display: grid;
    gap: var(--space-12);
    margin-bottom: var(--space-12);
}

@media (min-width: 768px) {
    .footer__content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer__content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: var(--space-8);
    }
}

.footer__section {
    display: flex;
    flex-direction: column;
}

.footer__title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
    background: linear-gradient(135deg, var(--accent-color) 0%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer__subtitle {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}

.footer__description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-6);
}

.footer__text {
    color: var(--text-secondary);
    margin-bottom: var(--space-4);
    font-size: var(--font-size-sm);
}

.footer__social {
    display: flex;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
}

.footer__social-link {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.footer__social-link:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-2px);
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer__link {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    transition: color var(--transition-fast);
}

.footer__link:hover {
    color: var(--accent-color);
}

.footer__languages {
    margin-top: var(--space-6);
}

.footer__lang-label {
    display: block;
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    margin-bottom: var(--space-2);
}

.footer__lang-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.footer__lang-link {
    padding: var(--space-1) var(--space-3);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: var(--font-size-xs);
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    text-transform: uppercase;
    font-weight: 600;
}

.footer__lang-link:hover,
.footer__lang-link.active {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background: rgba(var(--accent-rgb), 0.1);
}

.footer__bottom {
    border-top: 1px solid var(--border-color);
    padding-top: var(--space-8);
    text-align: center;
}

.footer__copy {
    color: var(--text-muted);
    font-size: var(--font-size-sm);
}

/* ======================================
   UTILITIES
   ====================================== */
.main {
    min-height: 100vh;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ======================================
   RESPONSIVE DESIGN
   ====================================== */
@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-3);
    }
    
    .section {
        padding: var(--space-12) 0;
    }
    
    .section__title {
        font-size: var(--font-size-2xl);
    }
    
    .hero__title {
        font-size: var(--font-size-2xl);
    }
    
    .btn--large {
        padding: var(--space-3) var(--space-6);
        font-size: var(--font-size-base);
    }
}

/* ======================================
   ANIMATIONS
   ====================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* ======================================
   PRINT STYLES
   ====================================== */
@media print {
    .header,
    .nav__toggle,
    .nav__buttons,
    .footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .section {
        break-inside: avoid;
    }
}

/* Language Selector */
.nav__item--language {
    position: relative;
}

.language-selector {
    position: relative;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-3);
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.language-toggle:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    color: var(--text-primary);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-large);
    padding: var(--space-2);
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-fast);
    z-index: 1000;
}

.language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--font-size-sm);
    font-weight: 500;
    transition: all var(--transition-fast);
}

.language-option:hover {
    background: var(--bg-card-hover);
    color: var(--text-primary);
}

.language-option.active {
    background: rgba(var(--accent-rgb), 0.1);
    color: var(--accent-color);
}

.flag {
    font-size: 16px;
    line-height: 1;
}

@media (max-width: 1023px) {
    .nav__item--language {
        order: -1;
        margin-bottom: var(--space-4);
        border-bottom: 1px solid var(--border-color);
        padding-bottom: var(--space-4);
    }
    
    .language-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0;
        margin-top: var(--space-2);
    }
    
    .language-option {
        padding: var(--space-2) 0;
        border-radius: 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .language-option:last-child {
        border-bottom: none;
    }
} 