/* ========================================
   AI.Biznes.UZ - Premium Business Platform
   Blue/Gold Business Theme
   ======================================== */

/* CSS Variables */
:root {
    --black: #000000;
    --white: #FFFFFF;

    /* Dark Theme - Business themed */
    --bg-100: #0a0d14;
    --bg-200: #111827;
    --bg-300: #1f2937;
    --bg-400: #374151;

    /* Accent Colors - Blue/Gold */
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #f59e0b;
    --tertiary: #10b981;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    --gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --gradient-mixed: linear-gradient(135deg, #2563eb 0%, #f59e0b 100%);

    /* Text */
    --text-100: #F9FAFB;
    --text-200: #E5E7EB;
    --text-300: #9CA3AF;
    --text-400: #6B7280;

    /* Effects */
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);
    --glow: 0 0 40px rgba(37, 99, 235, 0.4);
    --glow-gold: 0 0 40px rgba(245, 158, 11, 0.4);
    --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    /* Timing */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --duration: 0.3s;
}

/* Light Theme */
[data-theme="light"] {
    --bg-100: #FFFFFF;
    --bg-200: #F3F4F6;
    --bg-300: #E5E7EB;
    --bg-400: #D1D5DB;
    --text-100: #111827;
    --text-200: #1f2937;
    --text-300: #4b5563;
    --text-400: #9ca3af;
    --primary: #2563eb;
    --border: rgba(0, 0, 0, 0.08);
    --border-hover: rgba(0, 0, 0, 0.15);
    --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    --glow: 0 0 40px rgba(37, 99, 235, 0.2);
}

/* Light mode overrides */
[data-theme="light"] .header-inner {
    background: rgba(255, 255, 255, 0.9);
}

[data-theme="light"] .service-card,
[data-theme="light"] .tool-card,
[data-theme="light"] .pricing-card,
[data-theme="light"] .bonus-card {
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-card,
.tool-card,
.pricing-card,
.bonus-card,
.contact-card {
    will-change: transform, opacity;
}

[data-theme="light"] .preloader {
    background: var(--white);
}

/* Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-100);
    color: var(--text-200);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
    position: relative;
}

::selection {
    background: rgba(37, 99, 235, 0.3);
    color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
}

/* Global text overflow prevention */
* {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

/* ========================================
   PRELOADER
   ======================================== */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg-100);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.preloader-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.preloader-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-logo 1.5s ease-in-out infinite;
    box-shadow: var(--glow);
}

.preloader-icon svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.preloader-text {
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient-mixed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes pulse-logo {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.preloader-bar {
    width: 200px;
    height: 4px;
    background: var(--bg-300);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin: 0 auto;
}

.preloader-progress {
    height: 100%;
    width: 0;
    background: var(--gradient-mixed);
    animation: loading 1.5s ease-out forwards;
}

@keyframes loading {
    to {
        width: 100%;
    }
}

/* ========================================
   PARTICLES
   ======================================== */
.particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 15s infinite;
}

.particle:nth-child(even) {
    background: var(--secondary);
}

@keyframes float {

    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    25% {
        transform: translate3d(50px, -100px, 0);
    }

    50% {
        transform: translate3d(-30px, -50px, 0);
    }

    75% {
        transform: translate3d(20px, -150px, 0);
    }
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--duration) var(--ease);
}

.header.scrolled {
    padding: 8px 0;
}

.header.scrolled .header-inner {
    background: rgba(10, 13, 20, 0.9);
    backdrop-filter: blur(20px);
    border-color: var(--border);
    box-shadow: var(--shadow);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    background: rgba(10, 13, 20, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid transparent;
    border-radius: var(--radius-full);
    transition: all var(--duration) var(--ease);
    will-change: background, backdrop-filter, padding;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 22px;
    height: 22px;
    color: var(--white);
}

.logo-text {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-100);
}

.logo-highlight {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    position: relative;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-200);
    border-radius: var(--radius-sm);
    transition: all var(--duration) var(--ease);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-100);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-mixed);
    border-radius: var(--radius-full);
    transform: translateX(-50%);
    transition: width var(--duration) var(--ease-out);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 24px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.theme-toggle {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-300);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    overflow: hidden;
    transition: all var(--duration) var(--ease);
}

.theme-toggle:hover {
    background: var(--bg-400);
}

.theme-toggle svg {
    width: 18px;
    height: 18px;
    color: var(--text-200);
    position: absolute;
    transition: all var(--duration) var(--ease-out);
}

.theme-icon-light {
    opacity: 0;
    transform: translateY(20px);
}

.theme-icon-dark {
    opacity: 1;
    transform: translateY(0);
}

[data-theme="light"] .theme-icon-light {
    opacity: 1;
    transform: translateY(0);
}

[data-theme="light"] .theme-icon-dark {
    opacity: 0;
    transform: translateY(-20px);
}

/* Language Switcher */
.lang-switcher {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--bg-300);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-200);
    cursor: pointer;
    transition: all var(--duration) var(--ease);
}

.lang-btn:hover {
    background: var(--bg-400);
}

.lang-btn svg {
    width: 14px;
    height: 14px;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 140px;
    background: var(--bg-300);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--duration) var(--ease-out);
    overflow: hidden;
    z-index: 100;
}

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

.lang-option {
    display: flex;
    width: 100%;
    padding: 12px 16px;
    border: none;
    background: none;
    font-size: 14px;
    color: var(--text-300);
    cursor: pointer;
    transition: all var(--duration);
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-100);
}

.lang-option.active {
    color: var(--primary);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background: var(--text-100);
    border-radius: 2px;
    transition: all var(--duration) var(--ease);
}

.hide-mobile {
    display: inline-flex;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--duration) var(--ease);
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 15px;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow);
}

.btn-glow {
    background: var(--gradient-mixed);
    color: var(--white);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-100);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-100);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-white {
    background: var(--white);
    color: var(--black);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-glass-white {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ========================================
   HERO
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-gradient-1 {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.3) 0%, transparent 70%);
    filter: blur(80px);
    animation: pulse 8s ease-in-out infinite;
}

.hero-gradient-2 {
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
    filter: blur(80px);
    animation: pulse 8s ease-in-out infinite 2s;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 50% at 50% 50%, black 40%, transparent 100%);
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero-title {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-100);
    margin-bottom: 24px;
}

.hero-title span {
    display: block;
}

.gradient-text {
    background: var(--gradient-mixed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-300);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-cta-mobile {
    display: none;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

.stat-number {
    display: inline;
    font-size: 36px;
    font-weight: 800;
    background: var(--gradient-mixed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-plus {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
}

.stat-label {
    display: block;
    font-size: 13px;
    color: var(--text-400);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* Hero Visual / Mockup */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-mockup {
    position: relative;
}

.business-card-mockup {
    width: 360px;
    height: 280px;
    background: var(--bg-200);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.mockup-header {
    padding: 12px 16px;
    background: var(--bg-300);
    border-bottom: 1px solid var(--border);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mockup-dots span:nth-child(1) {
    background: #ef4444;
}

.mockup-dots span:nth-child(2) {
    background: #f59e0b;
}

.mockup-dots span:nth-child(3) {
    background: #22c55e;
}

.mockup-content {
    padding: 24px;
}

.mockup-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 120px;
    padding: 16px;
    background: var(--bg-300);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
}

.chart-bar {
    width: 32px;
    background: var(--gradient-mixed);
    border-radius: 4px 4px 0 0;
    animation: grow-bar 2s ease-out forwards;
    opacity: 0;
}

.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;
}

@keyframes grow-bar {
    from {
        height: 0;
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.mockup-stats {
    display: flex;
    gap: 16px;
}

.mockup-stat {
    flex: 1;
    padding: 12px;
    background: var(--bg-300);
    border-radius: var(--radius-md);
    text-align: center;
}

.mockup-stat-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
}

.mockup-stat-label {
    font-size: 12px;
    color: var(--text-400);
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--bg-200);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-100);
    box-shadow: var(--shadow);
    animation: float-badge 3s ease-in-out infinite;
}

.floating-badge svg {
    width: 16px;
    height: 16px;
}

.badge-idea {
    top: 10%;
    left: -20%;
    animation-delay: 0s;
}

.badge-idea svg {
    color: var(--secondary);
}

.badge-money {
    top: 50%;
    right: -15%;
    animation-delay: 1s;
}

.badge-money svg {
    color: var(--tertiary);
}

.badge-chart {
    bottom: 10%;
    left: -10%;
    animation-delay: 2s;
}

.badge-chart svg {
    color: var(--primary);
}

@keyframes float-badge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ========================================
   SECTIONS COMMON
   ======================================== */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 20px;
}

.section-badge svg {
    width: 16px;
    height: 16px;
}

.section-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--text-100);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-300);
    line-height: 1.7;
}

/* ========================================
   SERVICES / IDEA ANALYSIS
   ======================================== */
.services {
    padding: 100px 0;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    position: relative;
    padding: 32px;
    background: var(--bg-200);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    transition: all var(--duration) var(--ease);
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow);
}

.service-card.featured {
    border-color: rgba(37, 99, 235, 0.3);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: 24px;
    padding: 4px 12px;
    background: var(--gradient-mixed);
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-icon-wrap {
    margin-bottom: 20px;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card.featured .service-icon {
    background: var(--gradient-mixed);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-100);
    margin-bottom: 12px;
}

.service-card>p {
    font-size: 14px;
    color: var(--text-300);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-200);
    border-top: 1px solid var(--border);
}

.service-features li:first-child {
    border-top: none;
}

.service-features svg {
    width: 16px;
    height: 16px;
    color: var(--secondary);
}

.services-grid-wrapper,
.pricing-grid-wrapper {
    position: relative;
    width: 100%;
}

.slider-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    transition: all 0.3s ease;
    cursor: pointer;
}

.dot.active {
    background: var(--primary);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.5);
}

.service-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.service-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary);
}

/* ========================================
   TOOLS / BUSINESS PLAN
   ======================================== */
.tools {
    padding: 100px 0;
    background: var(--bg-200);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.tool-card {
    padding: 28px;
    background: var(--bg-100);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all var(--duration) var(--ease);
}

.tool-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.15);
}

.tool-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--duration) var(--ease);
}

.tool-card:hover .tool-icon {
    background: var(--gradient-primary);
}

.tool-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
    transition: all var(--duration) var(--ease);
}

.tool-card:hover .tool-icon svg {
    color: var(--white);
}

.tool-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-100);
    margin-bottom: 10px;
}

.tool-card p {
    font-size: 14px;
    color: var(--text-300);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* ========================================
   INVESTMENT SECTION
   ======================================== */
.invest-section {
    background: var(--bg-100);
}

.invest-calculator {
    margin-top: 60px;
    padding: 40px;
    background: var(--bg-200);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
}

.calc-header {
    text-align: center;
    margin-bottom: 32px;
}

.calc-header h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-100);
    margin-bottom: 8px;
}

.calc-header h3 svg {
    width: 28px;
    height: 28px;
    color: var(--secondary);
}

.calc-header p {
    color: var(--text-300);
}

.calc-amounts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.calc-amount {
    padding: 24px;
    background: var(--bg-300);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--duration) var(--ease);
}

.calc-amount:hover {
    transform: translateY(-4px);
}

.calc-amount.featured {
    border-color: var(--secondary);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, transparent 100%);
}

.amount-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.amount-icon.minimal {
    background: rgba(37, 99, 235, 0.1);
}

.amount-icon.minimal svg {
    color: var(--primary);
}

.amount-icon.optimal {
    background: var(--gradient-secondary);
}

.amount-icon.optimal svg {
    color: var(--white);
}

.amount-icon.scale {
    background: rgba(16, 185, 129, 0.1);
}

.amount-icon.scale svg {
    color: var(--tertiary);
}

.amount-icon svg {
    width: 24px;
    height: 24px;
}

.amount-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.amount-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-100);
    margin-bottom: 4px;
}

.calc-amount.featured .amount-value {
    color: var(--secondary);
}

.amount-desc {
    font-size: 13px;
    color: var(--text-400);
}

/* ========================================
   BONUS SECTION
   ======================================== */
.bonus-section {
    background: var(--bg-100);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

.bonus-card {
    display: flex;
    gap: 24px;
    padding: 32px;
    background: var(--bg-200);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    transition: all var(--duration) var(--ease);
}

.bonus-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow);
}

.bonus-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: var(--gradient-mixed);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bonus-icon svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.bonus-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-100);
    margin-bottom: 10px;
}

.bonus-content p {
    font-size: 14px;
    color: var(--text-300);
    line-height: 1.6;
    margin-bottom: 16px;
}

.bonus-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.bonus-features span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-200);
    padding: 4px 10px;
    background: var(--bg-300);
    border-radius: var(--radius-full);
}

.bonus-features svg {
    width: 12px;
    height: 12px;
    color: var(--secondary);
}

/* ========================================
   PRICING
   ======================================== */
.pricing {
    padding: 100px 0;
    background: var(--bg-200);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    padding: 40px 32px;
    background: var(--bg-100);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    transition: all var(--duration) var(--ease);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.pricing-card.featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.1) 0%, var(--bg-100) 100%);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-card.featured .pricing-icon {
    background: var(--gradient-primary);
}

.pricing-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.pricing-card.featured .pricing-icon svg {
    color: var(--white);
}

.pricing-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-100);
    margin-bottom: 4px;
}

.pricing-desc {
    font-size: 14px;
    color: var(--text-400);
}

.pricing-price {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
}

.price-amount {
    font-size: 36px;
    font-weight: 800;
    background: var(--gradient-mixed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-currency {
    font-size: 16px;
    color: var(--text-400);
    margin-left: 4px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
}

.pricing-features li.included {
    color: var(--text-200);
}

.pricing-features li.disabled {
    color: var(--text-400);
}

.pricing-features li.included svg {
    color: var(--secondary);
}

.pricing-features li.disabled svg {
    color: var(--text-400);
}

.pricing-features svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ========================================
   CTA
   ======================================== */
.cta {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-gradient {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* ========================================
   CONTACT
   ======================================== */
.contact {
    padding: 100px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info .section-header {
    text-align: left;
    margin-bottom: 40px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--bg-200);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--duration) var(--ease);
}

.contact-card:hover {
    border-color: var(--primary);
    transform: translateX(4px);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card-icon svg {
    width: 22px;
    height: 22px;
    color: var(--primary);
}

.contact-card-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-100);
    margin-bottom: 2px;
}

.contact-card-content span {
    font-size: 14px;
    color: var(--text-300);
}

.contact-form-wrapper {
    padding: 40px;
    background: var(--bg-200);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-100);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-200);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-300);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 15px;
    color: var(--text-100);
    transition: all var(--duration) var(--ease);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-400);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: 80px 0 40px;
    background: var(--bg-200);
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-300);
    margin-top: 16px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-300);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: all var(--duration) var(--ease);
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.social-link svg {
    width: 18px;
    height: 18px;
    color: var(--text-300);
    transition: color var(--duration);
}

.social-link:hover svg {
    color: var(--white);
}

.footer-links h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-100);
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    font-size: 14px;
    color: var(--text-400);
    padding: 6px 0;
    transition: color var(--duration);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-400);
}

.made-with .heart {
    color: #ef4444;
}

/* ========================================
   BACK TO TOP
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--duration) var(--ease);
    z-index: 100;
    box-shadow: var(--glow);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 890px) {
    .header-cta {
        display: none !important;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta1-btn {
        width: 100%;
    }

    .hero-mobile-row {
        display: flex;
        gap: 12px;
        width: 100%;
    }

    .hero-mobile-row .btn {
        flex: 1;
        padding-left: 12px;
        padding-right: 12px;
        font-size: 14px;
        white-space: nowrap;
    }

    .hero-cta-mobile {
        display: flex !important;
    }
}

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info .section-header {
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .calc-amounts {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: auto;
        background: var(--bg-100);
        flex-direction: column;
        padding: 40px 24px;
        gap: 24px;
        border-bottom: 1px solid var(--border);
        z-index: 1000;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .nav.active {
        display: flex;
        animation: slideDownMenu 0.3s ease forwards;
    }

    @keyframes slideDownMenu {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .hide-mobile {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px;
    }

    .stat-divider {
        display: none;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .bonus-card {
        flex-direction: column;
        text-align: center;
    }

    .bonus-icon {
        margin: 0 auto;
    }

    .bonus-features {
        justify-content: center;
    }

    .header-actions .btn-sm span::after {
        content: attr(data-mobile-text);
    }

    .header-actions .btn-sm {
        padding: 8px 12px;
        font-size: 13px;
    }

    .desktop-link {
        display: none;
    }

    .mobile-link {
        display: inline;
    }
}

@media (max-width: 640px) {

    #plan,
    #documents,
    #bonus {
        display: none;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .services-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding: 10px 4px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .services-grid::-webkit-scrollbar {
        display: none;
    }

    .service-card {
        flex: 0 0 100%;
        scroll-snap-align: center;
    }

    .pricing-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding: 10px 4px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .pricing-grid::-webkit-scrollbar {
        display: none;
    }

    .pricing-card {
        flex: 0 0 100%;
        scroll-snap-align: center;
    }

    .slider-dots {
        display: flex;
    }

    .hero-title {
        font-size: clamp(28px, 8vw, 42px);
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .section-title {
        font-size: clamp(24px, 6vw, 32px);
    }

    .service-card h3,
    .tool-card h3,
    .bonus-content h3,
    .pricing-name {
        font-size: 18px;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding: 12px 8px;
        background: rgba(255, 255, 255, 0.03);
        border-radius: var(--radius-md);
        border: 1px solid var(--border);
        width: 100%;
        max-width: 100%;
    }

    .hero-stats .stat-item:last-child {
        grid-column: span 1;
    }

    .stat-number {
        font-size: 20px;
    }

    .stat-label {
        font-size: 9px;
        line-height: 1.2;
    }

    .stat-plus {
        font-size: 14px;
    }

    .stat-divider {
        display: none;
    }

    .stat-divider {
        display: none;
    }
}

@media (max-width: 480px) {

    /* Prevent all horizontal overflow */
    html,
    body {
        max-width: 100vw;
        overflow-x: hidden !important;
    }

    .container {
        padding: 0 16px;
        max-width: 100%;
    }

    .header-inner {
        padding: 8px 16px;
    }

    .hero {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-buttons {
        gap: 12px;
    }

    .btn-lg {
        padding: 14px 20px;
        font-size: 14px;
    }

    .service-card,
    .tool-card,
    .pricing-card,
    .bonus-card {
        padding: 20px;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Text truncation for long content */
    .service-card p,
    .tool-card p,
    .pricing-card p {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Compact headings */
    h1,
    h2,
    h3,
    h4 {
        word-break: break-word;
        hyphens: auto;
    }

    .section-subtitle {
        font-size: 14px;
        line-height: 1.5;
    }

    .contact-form-wrapper {
        padding: 24px 16px;
    }

    /* Ensure inputs don't overflow */
    input,
    textarea,
    select,
    button {
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Compact stats on very small screens */
    .stat-number {
        font-size: 18px;
    }

    .stat-label {
        font-size: 10px;
    }

    /* Tighter button spacing */
    .hero-mobile-row .btn {
        font-size: 13px;
        padding: 12px 10px;
    }

    /* Back to top button */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }

    /* Ensure no element causes overflow */
    section,
    div,
    article {
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* ========================================
   AUTH MODAL
   ======================================== */
.auth-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out);
}

.auth-modal.active {
    opacity: 1;
    visibility: visible;
}

.auth-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
}

.auth-container {
    position: relative;
    width: 100%;
    max-width: 440px;
    margin: 20px;
    background: var(--bg-200);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s var(--ease-out);
    overflow: hidden;
}

.auth-modal.active .auth-container {
    transform: scale(1) translateY(0);
}

.auth-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-300);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--duration) var(--ease);
    z-index: 10;
}

.auth-close:hover {
    background: var(--bg-400);
    transform: rotate(90deg);
}

.auth-close svg {
    width: 18px;
    height: 18px;
    color: var(--text-200);
}

.auth-content {
    padding: 40px;
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.auth-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-100);
    margin-bottom: 8px;
}

.auth-subtitle {
    font-size: 14px;
    color: var(--text-400);
}

.auth-form.hidden {
    display: none;
}

/* Google Button */
.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 14px 24px;
    background: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all var(--duration) var(--ease);
}

.btn-google:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Divider */
.auth-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.auth-divider span {
    font-size: 13px;
    color: var(--text-400);
}

/* Input with icon */
.input-icon-wrapper {
    position: relative;
}

.input-icon-wrapper>svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--text-400);
    pointer-events: none;
}

.input-icon-wrapper input {
    padding-left: 44px;
    padding-right: 44px;
}

.password-toggle {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-400);
    transition: color var(--duration);
}

.password-toggle:hover {
    color: var(--text-100);
}

.password-toggle svg {
    width: 18px;
    height: 18px;
}

/* Form Options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 13px;
    color: var(--text-300);
}

.checkbox-wrapper input {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid var(--border);
    border-radius: 4px;
    transition: all var(--duration);
    position: relative;
}

.checkbox-wrapper input:checked+.checkmark {
    background: var(--primary);
    border-color: var(--primary);
}

.checkbox-wrapper input:checked+.checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 12px;
}

.forgot-link {
    font-size: 13px;
    color: var(--primary);
    transition: color var(--duration);
}

.forgot-link:hover {
    color: var(--secondary);
}

/* Auth Switch */
.auth-switch {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: var(--text-400);
}

.auth-switch a {
    color: var(--primary);
    font-weight: 500;
    transition: color var(--duration);
}

.auth-switch a:hover {
    color: var(--secondary);
}

/* Auth Info */
.auth-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: var(--radius-md);
    margin-top: 24px;
}

.auth-info svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.auth-info span {
    font-size: 13px;
    color: var(--text-200);
}

/* Light mode auth */
[data-theme="light"] .auth-container {
    background: var(--white);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .btn-google {
    background: var(--bg-200);
    color: var(--text-100);
    border: 1px solid var(--border);
}

/* Responsive auth modal */
@media (max-width: 480px) {
    .auth-content {
        padding: 32px 24px;
    }

    .auth-title {
        font-size: 20px;
    }

    .form-options {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
}