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

:root {
    --purple-900: #2E1065;
    --purple-800: #3B0764;
    --purple-700: #6D28D9;
    --purple-600: #7C3AED;
    --purple-500: #8B5CF6;
    --purple-400: #A78BFA;
    --purple-300: #C4B5FD;
    --purple-100: #EDE9FE;
    --gold-600: #D97706;
    --gold-500: #F59E0B;
    --gold-400: #FBBF24;
    --gold-300: #FCD34D;
    --gold-100: #FEF3C7;
    --dark: #09090B;
    --dark-2: #111113;
    --dark-3: #18181B;
    --dark-4: #27272A;
    --dark-5: #3F3F46;
    --gray-400: #A1A1AA;
    --gray-300: #D4D4D8;
    --gray-100: #F4F4F5;
    --white: #FFFFFF;
    --grad-pg: linear-gradient(135deg, #7C3AED 0%, #A78BFA 50%, #FBBF24 100%);
    --grad-p: linear-gradient(135deg, #7C3AED, #A78BFA);
    --grad-g: linear-gradient(135deg, #F59E0B, #FCD34D);
    --shadow-purple: 0 0 40px rgba(124,58,237,0.3);
    --shadow-gold: 0 0 40px rgba(245,158,11,0.3);
    --r-sm: 8px; --r-md: 12px; --r-lg: 16px; --r-xl: 24px; --r-full: 9999px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 1rem 0;
    background: rgba(9,9,11,0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s ease;
}
.nav-container {
    max-width: 1280px; margin: 0 auto; padding: 0 2rem;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
    display: flex; align-items: center; gap: 0.5rem;
    font-family: 'Outfit', sans-serif; font-size: 1.6rem; font-weight: 800;
    background: var(--grad-pg); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text;
}
.logo-mark { font-size: 1.2rem; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
    color: var(--gray-400); text-decoration: none; font-size: 0.9rem;
    font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.btn-nav-login {
    background: transparent; border: 1px solid var(--dark-5);
    color: var(--gray-300); padding: 0.5rem 1.25rem;
    border-radius: var(--r-md); font-size: 0.9rem; font-weight: 500;
    cursor: pointer; font-family: inherit; transition: all 0.2s;
}
.btn-nav-login:hover { border-color: var(--purple-500); color: var(--white); }
.btn-nav-primary {
    display: flex; align-items: center; gap: 0.5rem;
    background: var(--grad-pg); color: var(--white);
    border: none; padding: 0.55rem 1.25rem; border-radius: var(--r-md);
    font-size: 0.9rem; font-weight: 600; cursor: pointer; font-family: inherit;
    transition: all 0.2s; box-shadow: 0 0 20px rgba(124,58,237,0.4);
}
.btn-nav-primary:hover { box-shadow: 0 0 30px rgba(124,58,237,0.6); transform: translateY(-1px); }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--gray-300); border-radius: 2px; }

/* ===== HERO ===== */
.hero {
    min-height: 100vh; padding: 8rem 2rem 5rem;
    display: flex; align-items: center;
    position: relative; overflow: hidden;
    background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(109,40,217,0.25) 0%, transparent 70%),
                radial-gradient(ellipse 50% 40% at 90% 60%, rgba(245,158,11,0.1) 0%, transparent 60%), var(--dark);
}
.hero-orb {
    position: absolute; border-radius: 50%;
    filter: blur(80px); pointer-events: none; animation: orbPulse 8s ease-in-out infinite;
}
.orb-1 { width: 500px; height: 500px; top: -100px; left: -100px; background: rgba(124,58,237,0.15); animation-delay: 0s; }
.orb-2 { width: 400px; height: 400px; bottom: -50px; right: -50px; background: rgba(245,158,11,0.1); animation-delay: 2s; }
.orb-3 { width: 300px; height: 300px; top: 40%; left: 40%; background: rgba(139,92,246,0.08); animation-delay: 4s; }
@keyframes orbPulse { 0%,100% { opacity: 0.6; transform: scale(1); } 50% { opacity: 1; transform: scale(1.1); } }

.hero-container {
    max-width: 1280px; margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
    position: relative; z-index: 1;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.6rem;
    background: rgba(124,58,237,0.15); border: 1px solid rgba(167,139,250,0.3);
    padding: 0.4rem 1rem; border-radius: var(--r-full);
    font-size: 0.8rem; font-weight: 500; color: var(--purple-300);
    margin-bottom: 1.5rem; letter-spacing: 0.02em;
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: #22C55E; box-shadow: 0 0 8px #22C55E; }
.hero-title {
    font-family: 'Outfit', sans-serif; font-size: 3.8rem; font-weight: 900;
    line-height: 1.08; margin-bottom: 1.5rem; color: var(--white);
}
.hero-description { font-size: 1.1rem; color: var(--gray-400); margin-bottom: 2.5rem; line-height: 1.75; max-width: 520px; }
.hero-cta { display: flex; gap: 1rem; margin-bottom: 1rem; flex-wrap: wrap; }
.btn-hero-primary {
    display: flex; align-items: center; gap: 0.6rem;
    background: var(--grad-pg); color: var(--white); border: none;
    padding: 0.85rem 1.75rem; border-radius: var(--r-lg);
    font-size: 1rem; font-weight: 700; cursor: pointer; font-family: inherit;
    box-shadow: 0 0 40px rgba(124,58,237,0.5); transition: all 0.25s;
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 0 60px rgba(124,58,237,0.7); }
.btn-hero-ghost {
    display: flex; align-items: center; gap: 0.6rem;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.15);
    color: var(--white); padding: 0.85rem 1.75rem; border-radius: var(--r-lg);
    font-size: 1rem; font-weight: 600; cursor: pointer; font-family: inherit; transition: all 0.25s;
}
.btn-hero-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); }
.hero-footnote { font-size: 0.8rem; color: var(--dark-5); margin-bottom: 2.5rem; }

.hero-stats { display: flex; align-items: center; gap: 2rem; }
.stat-item { text-align: left; }
.stat-number { font-family: 'Outfit', sans-serif; font-size: 2rem; font-weight: 900; background: var(--grad-pg); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-number span { font-size: 1.4rem; }
.stat-label { font-size: 0.78rem; color: var(--gray-400); font-weight: 500; margin-top: 0.1rem; }
.stat-divider { width: 1px; height: 40px; background: var(--dark-5); }
.hero-scroll-hint { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); color: var(--dark-5); animation: bounce 2s ease-in-out infinite; }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ===== HERO VISUAL / MOCKUP ===== */
.hero-visual { position: relative; height: 520px; }
.mockup-window {
    background: var(--dark-3); border: 1px solid var(--dark-5);
    border-radius: var(--r-xl); overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,0.6), var(--shadow-purple);
    position: absolute; width: 100%; top: 0;
}
.mockup-bar { display: flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1rem; background: var(--dark-4); border-bottom: 1px solid var(--dark-5); }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #FF5F57; } .dot.yellow { background: #FEBC2E; } .dot.green { background: #28C840; }
.mockup-title { font-size: 0.72rem; color: var(--gray-400); margin-left: 0.5rem; }
.mockup-body { padding: 1.25rem; display: flex; flex-direction: column; gap: 1rem; }
.mockup-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.mockup-metric { display: flex; align-items: center; gap: 0.75rem; background: var(--dark-4); border-radius: var(--r-md); padding: 0.75rem; border: 1px solid var(--dark-5); }
.metric-icon { width: 36px; height: 36px; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.metric-icon.purple { background: rgba(124,58,237,0.2); }
.metric-icon.gold { background: rgba(245,158,11,0.2); }
.metric-val { font-size: 1.1rem; font-weight: 700; color: var(--white); }
.metric-lbl { font-size: 0.68rem; color: var(--gray-400); }
.mockup-calendar { background: var(--dark-4); border-radius: var(--r-md); padding: 0.75rem; border: 1px solid var(--dark-5); }
.cal-header { display: flex; justify-content: space-between; font-size: 0.78rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--white); }
.cal-nav { color: var(--gray-400); letter-spacing: 0.25em; cursor: pointer; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; text-align: center; }
.cal-day { font-size: 0.6rem; color: var(--gray-400); font-weight: 600; padding: 0.2rem 0; }
.cal-cell { font-size: 0.65rem; padding: 0.25rem; border-radius: 4px; color: var(--gray-400); }
.cal-today { background: var(--grad-p); color: var(--white); border-radius: 4px; font-weight: 700; }
.cal-post { background: rgba(124,58,237,0.25); color: var(--purple-300); border-radius: 4px; }
.mockup-ai-bar { display: flex; align-items: center; gap: 0.75rem; background: rgba(124,58,237,0.1); border: 1px solid rgba(167,139,250,0.2); border-radius: var(--r-md); padding: 0.6rem 0.9rem; }
.ai-icon { color: var(--purple-400); font-size: 0.9rem; }
.ai-text { font-size: 0.72rem; color: var(--purple-300); }
.float-chip {
    position: absolute; background: var(--dark-3); border: 1px solid var(--dark-5);
    border-radius: var(--r-full); padding: 0.4rem 0.9rem; font-size: 0.78rem;
    font-weight: 600; color: var(--white); display: flex; align-items: center; gap: 0.4rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4); animation: float 5s ease-in-out infinite;
}
.chip-icon { font-size: 0.9rem; }
.chip-1 { bottom: -20px; left: -30px; animation-delay: 0s; }
.chip-2 { bottom: 80px; right: -40px; animation-delay: 1.5s; }
.chip-3 { top: -15px; right: 20px; animation-delay: 3s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ===== SECTIONS SHARED ===== */
section { padding: 6rem 2rem; }
.section-container { max-width: 1280px; margin: 0 auto; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.section-badge {
    display: inline-block; background: rgba(124,58,237,0.15);
    border: 1px solid rgba(167,139,250,0.3); padding: 0.35rem 1rem;
    border-radius: var(--r-full); font-size: 0.78rem; font-weight: 600;
    color: var(--purple-400); margin-bottom: 1rem; letter-spacing: 0.05em; text-transform: uppercase;
}
.section-title { font-family: 'Outfit', sans-serif; font-size: 2.75rem; font-weight: 900; line-height: 1.2; margin-bottom: 1rem; color: var(--white); }
.section-description { font-size: 1.05rem; color: var(--gray-400); line-height: 1.7; }

/* ===== FEATURES ===== */
.features { background: var(--dark-2); }
.features-showcase { display: flex; flex-direction: column; gap: 6rem; }

.feature-block {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.feature-block-right .feature-visual { order: 2; }
.feature-block-right .feature-content { order: 1; }

.feature-num { font-family: 'Outfit', sans-serif; font-size: 4rem; font-weight: 900; color: var(--dark-4); line-height: 1; margin-bottom: 0.5rem; }
.feature-label-badge {
    display: inline-block; padding: 0.3rem 0.85rem; border-radius: var(--r-full);
    font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem;
}
.feature-label-badge.purple { background: rgba(124,58,237,0.2); color: var(--purple-400); border: 1px solid rgba(167,139,250,0.3); }
.feature-label-badge.gold { background: rgba(245,158,11,0.15); color: var(--gold-400); border: 1px solid rgba(251,191,36,0.3); }
.feature-heading { font-family: 'Outfit', sans-serif; font-size: 2.2rem; font-weight: 800; line-height: 1.2; margin-bottom: 1rem; color: var(--white); }
.feature-text { font-size: 1rem; color: var(--gray-400); line-height: 1.75; margin-bottom: 1.5rem; }
.feature-bullets { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.feature-bullets li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; color: var(--gray-300); font-weight: 500; }
.feature-bullets li svg { color: var(--purple-400); flex-shrink: 0; }

/* Feature UI Cards */
.feature-card-ui {
    background: var(--dark-3); border: 1px solid var(--dark-5);
    border-radius: var(--r-xl); padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.fui-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; font-size: 0.85rem; font-weight: 600; color: var(--white); }
.fui-icon-wrap { width: 36px; height: 36px; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; }
.fui-icon-wrap.purple { background: rgba(124,58,237,0.25); color: var(--purple-400); }
.fui-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.tag { padding: 0.25rem 0.65rem; border-radius: var(--r-full); font-size: 0.72rem; font-weight: 600; }
.tag.purple { background: rgba(124,58,237,0.2); color: var(--purple-300); }
.tag.blue { background: rgba(59,130,246,0.2); color: #93C5FD; }
.tag.pink { background: rgba(236,72,153,0.2); color: #F9A8D4; }
.tag.orange { background: rgba(245,158,11,0.2); color: var(--gold-300); }
.fui-schedule { display: flex; flex-direction: column; gap: 0.6rem; }
.sched-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.6rem 0.75rem; background: var(--dark-4); border-radius: var(--r-md); border: 1px solid var(--dark-5); }
.sched-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.sched-dot.active { background: #22C55E; box-shadow: 0 0 6px #22C55E; }
.sched-dot.draft { background: var(--gold-400); }
.sched-dot.pending { background: var(--purple-400); }
.sched-info { flex: 1; }
.sched-title { font-size: 0.78rem; font-weight: 600; color: var(--white); }
.sched-time { font-size: 0.68rem; color: var(--gray-400); }
.sched-badge { padding: 0.15rem 0.5rem; border-radius: var(--r-full); font-size: 0.65rem; font-weight: 700; }
.sched-badge.ready { background: rgba(34,197,94,0.15); color: #4ADE80; }
.sched-badge.draft { background: rgba(245,158,11,0.15); color: var(--gold-300); }
.sched-badge.pending { background: rgba(124,58,237,0.2); color: var(--purple-300); }

/* Design UI */
.design-canvas { background: var(--dark-4); border-radius: var(--r-lg); overflow: hidden; margin-bottom: 1rem; }
.design-canvas-bg { aspect-ratio: 16/9; position: relative; background: linear-gradient(135deg, rgba(124,58,237,0.3), rgba(245,158,11,0.2)); display: flex; align-items: center; justify-content: center; padding: 1.5rem; }
.canvas-gradient-block { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(124,58,237,0.4) 0%, rgba(245,158,11,0.3) 100%); }
.canvas-text-lines { position: relative; z-index: 1; width: 60%; display: flex; flex-direction: column; gap: 0.5rem; }
.canvas-line { height: 8px; border-radius: 4px; background: rgba(255,255,255,0.5); }
.canvas-line.thick { width: 100%; } .canvas-line.medium { width: 75%; } .canvas-line.short { width: 50%; }
.design-tools { display: flex; gap: 0.5rem; padding: 0.75rem; background: var(--dark-3); }
.tool-btn { background: transparent; border: 1px solid var(--dark-5); color: var(--gray-400); padding: 0.35rem 0.75rem; border-radius: var(--r-sm); font-size: 0.72rem; cursor: pointer; font-family: inherit; transition: all 0.2s; }
.tool-btn.active { background: rgba(124,58,237,0.2); border-color: var(--purple-500); color: var(--purple-300); }
.design-prompt-bar { display: flex; align-items: center; gap: 0.75rem; background: var(--dark-4); border: 1px solid var(--dark-5); border-radius: var(--r-lg); padding: 0.65rem 0.9rem; }
.prompt-icon { color: var(--purple-400); font-size: 0.9rem; }
.prompt-text { flex: 1; font-size: 0.75rem; color: var(--gray-400); }
.prompt-go { background: var(--grad-p); color: var(--white); border: none; padding: 0.3rem 0.75rem; border-radius: var(--r-sm); font-size: 0.72rem; font-weight: 700; cursor: pointer; font-family: inherit; }

/* Calendar UI */
.full-cal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.full-cal-month { font-weight: 700; font-size: 0.85rem; color: var(--white); }
.cal-legend { display: flex; gap: 0.75rem; font-size: 0.68rem; color: var(--gray-400); align-items: center; }
.dot-legend { display: inline-block; width: 7px; height: 7px; border-radius: 50%; margin-right: 3px; }
.dot-legend.purple { background: var(--purple-500); } .dot-legend.blue { background: #3B82F6; } .dot-legend.pink { background: #EC4899; }
.full-cal-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px; }
.fcal-day-header { font-size: 0.65rem; color: var(--gray-400); font-weight: 600; text-align: center; padding: 0.25rem 0; }
.fcal-cell { background: var(--dark-4); border-radius: var(--r-sm); padding: 0.35rem 0.4rem; min-height: 52px; border: 1px solid var(--dark-5); }
.fcal-today { border-color: var(--purple-600); background: rgba(124,58,237,0.1); }
.fcal-date { font-size: 0.65rem; font-weight: 600; color: var(--gray-400); margin-bottom: 0.25rem; }
.fcal-post { font-size: 0.6rem; font-weight: 600; padding: 0.15rem 0.3rem; border-radius: 3px; }
.fcal-post.purple-post { background: rgba(124,58,237,0.35); color: var(--purple-300); }
.fcal-post.blue-post { background: rgba(59,130,246,0.25); color: #93C5FD; }
.fcal-post.pink-post { background: rgba(236,72,153,0.25); color: #F9A8D4; }

/* Research UI */
.research-query { display: flex; gap: 0.75rem; align-items: flex-start; background: rgba(124,58,237,0.1); border: 1px solid rgba(167,139,250,0.2); border-radius: var(--r-lg); padding: 0.85rem; margin-bottom: 1rem; }
.rq-icon { color: var(--purple-400); font-size: 1rem; flex-shrink: 0; margin-top: 0.1rem; }
.rq-text { font-size: 0.8rem; color: var(--gray-300); line-height: 1.5; }
.research-results { background: var(--dark-4); border-radius: var(--r-lg); padding: 1rem; border: 1px solid var(--dark-5); }
.research-tag-row { display: flex; gap: 0.5rem; margin-bottom: 1rem; flex-wrap: wrap; }
.rtag { padding: 0.25rem 0.65rem; border-radius: var(--r-full); font-size: 0.7rem; font-weight: 600; background: var(--dark-5); color: var(--gray-400); cursor: pointer; transition: all 0.2s; }
.rtag.active { background: rgba(245,158,11,0.2); color: var(--gold-300); border: 1px solid rgba(251,191,36,0.3); }
.research-insight { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1rem; }
.insight-bar { display: flex; align-items: center; gap: 0.5rem; }
.insight-label { font-size: 0.7rem; color: var(--gray-400); width: 120px; flex-shrink: 0; }
.insight-progress { flex: 1; height: 5px; background: var(--dark-5); border-radius: var(--r-full); overflow: hidden; }
.insight-fill { height: 100%; border-radius: var(--r-full); background: var(--grad-p); transition: width 1s ease; }
.insight-fill.gold-fill { background: var(--grad-g); }
.insight-pct { font-size: 0.68rem; color: var(--white); font-weight: 600; width: 28px; text-align: right; }
.research-cta-bar { display: flex; align-items: center; justify-content: space-between; padding: 0.6rem 0.75rem; background: rgba(124,58,237,0.15); border-radius: var(--r-md); border: 1px solid rgba(167,139,250,0.2); font-size: 0.75rem; color: var(--purple-300); font-weight: 600; cursor: pointer; transition: all 0.2s; }
.research-cta-bar:hover { background: rgba(124,58,237,0.25); }

/* ===== HOW IT WORKS ===== */
.how-it-works { background: var(--dark); }
.steps-row { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 1.5rem; align-items: center; }
.step-card {
    background: var(--dark-3); border: 1px solid var(--dark-5); border-radius: var(--r-xl);
    padding: 2.5rem 2rem; text-align: center; position: relative; transition: all 0.3s ease;
}
.step-card:hover { border-color: var(--purple-600); box-shadow: var(--shadow-purple); transform: translateY(-4px); }
.step-num {
    position: absolute; top: -1.2rem; left: 50%; transform: translateX(-50%);
    background: var(--grad-pg); color: var(--white); width: 2.4rem; height: 2.4rem;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 0.85rem; box-shadow: 0 0 20px rgba(124,58,237,0.4);
}
.step-icon { width: 64px; height: 64px; border-radius: var(--r-xl); display: flex; align-items: center; justify-content: center; margin: 1.25rem auto 1.25rem; }
.step-icon.purple { background: rgba(124,58,237,0.2); color: var(--purple-400); }
.step-icon.gold { background: rgba(245,158,11,0.15); color: var(--gold-400); }
.step-title { font-family: 'Outfit', sans-serif; font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--white); }
.step-desc { font-size: 0.9rem; color: var(--gray-400); line-height: 1.65; }
.step-arrow { color: var(--dark-5); opacity: 0.6; }

/* ===== PRICING ===== */
.pricing { background: var(--dark-2); }

.trial-banner {
    display: flex; align-items: center; gap: 1.5rem;
    background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(245,158,11,0.1));
    border: 1px solid rgba(167,139,250,0.25); border-radius: var(--r-xl);
    padding: 1.5rem 2rem; margin-bottom: 3rem; flex-wrap: wrap;
}
.trial-icon { font-size: 2rem; flex-shrink: 0; }
.trial-content { flex: 1; }
.trial-title { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 0.25rem; }
.trial-subtitle { font-size: 0.88rem; color: var(--gray-400); }
.btn-trial {
    background: var(--grad-pg); color: var(--white); border: none;
    padding: 0.75rem 1.5rem; border-radius: var(--r-lg); font-size: 0.9rem;
    font-weight: 700; cursor: pointer; font-family: inherit; white-space: nowrap;
    box-shadow: 0 0 30px rgba(124,58,237,0.5); transition: all 0.2s;
}
.btn-trial:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(124,58,237,0.7); }

.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-bottom: 2rem; max-width: 860px; margin-left: auto; margin-right: auto; }

.pricing-card {
    background: var(--dark-3); border: 1px solid var(--dark-5); border-radius: var(--r-xl);
    padding: 2rem; position: relative; transition: all 0.3s ease;
}
.pricing-card:hover { border-color: var(--dark-4); transform: translateY(-4px); }
.pricing-card-popular {
    border-color: var(--gold-500); box-shadow: 0 0 40px rgba(245,158,11,0.2);
    background: linear-gradient(160deg, rgba(245,158,11,0.07) 0%, var(--dark-3) 60%);
}
.pricing-card-pro {
    border-color: var(--purple-600); box-shadow: 0 0 30px rgba(124,58,237,0.15);
}
.popular-badge {
    position: absolute; top: -0.8rem; left: 50%; transform: translateX(-50%);
    background: var(--grad-g); color: var(--dark); padding: 0.25rem 1rem;
    border-radius: var(--r-full); font-size: 0.72rem; font-weight: 800;
    white-space: nowrap; letter-spacing: 0.05em;
}
.plan-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.plan-icon-wrap { width: 40px; height: 40px; border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.plan-icon-wrap.purple-soft { background: rgba(124,58,237,0.2); color: var(--purple-400); }
.plan-icon-wrap.gold-soft { background: rgba(245,158,11,0.2); color: var(--gold-400); }
.plan-icon-wrap.grad-soft { background: var(--grad-pg); color: var(--white); }
.plan-name { font-family: 'Outfit', sans-serif; font-size: 1.2rem; font-weight: 800; color: var(--white); }
.plan-tagline { font-size: 0.75rem; color: var(--gray-400); }
.plan-price { display: flex; align-items: baseline; gap: 0.2rem; margin-bottom: 0.25rem; }
.price-currency { font-size: 1.2rem; font-weight: 700; color: var(--white); }
.price-amount { font-family: 'Outfit', sans-serif; font-size: 2.8rem; font-weight: 900; color: var(--white); line-height: 1; }
.price-period { font-size: 0.85rem; color: var(--gray-400); }
.plan-trial-note { font-size: 0.72rem; color: var(--gray-400); margin-bottom: 1.5rem; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.75rem; }
.feat-yes { display: flex; align-items: center; gap: 0.6rem; font-size: 0.85rem; color: var(--gray-300); }
.feat-yes svg { color: var(--purple-400); flex-shrink: 0; }
.feat-no { display: flex; align-items: center; gap: 0.6rem; font-size: 0.85rem; color: var(--dark-5); }
.feat-no svg { color: var(--dark-5); flex-shrink: 0; }
.btn-plan { width: 100%; padding: 0.8rem; border-radius: var(--r-lg); font-size: 0.9rem; font-weight: 700; cursor: pointer; font-family: inherit; border: none; transition: all 0.25s; }
.btn-plan-outline { background: transparent; border: 1px solid var(--dark-5); color: var(--gray-300); }
.btn-plan-outline:hover { border-color: var(--purple-500); color: var(--white); }
.btn-plan-primary { background: var(--grad-g); color: var(--dark); box-shadow: var(--shadow-gold); }
.btn-plan-primary:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(245,158,11,0.5); }
.btn-plan-pro { background: var(--grad-pg); color: var(--white); box-shadow: var(--shadow-purple); }
.btn-plan-pro:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(124,58,237,0.6); }
.pricing-note { text-align: center; font-size: 0.82rem; color: var(--gray-400); }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--dark); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card { background: var(--dark-3); border: 1px solid var(--dark-5); border-radius: var(--r-xl); padding: 2rem; transition: all 0.3s; }
.testimonial-card:hover { border-color: var(--purple-700); transform: translateY(-3px); }
.stars { color: var(--gold-400); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
.testimonial-text { font-size: 0.9rem; color: var(--gray-300); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; color: var(--white); flex-shrink: 0; }
.author-name { font-size: 0.88rem; font-weight: 700; color: var(--white); }
.author-title { font-size: 0.75rem; color: var(--gray-400); }

/* ===== CTA ===== */
.cta-section {
    padding: 7rem 2rem; text-align: center; position: relative; overflow: hidden;
    background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(109,40,217,0.3) 0%, transparent 70%), var(--dark-2);
}
.cta-orb { position: absolute; border-radius: 50%; filter: blur(80px); }
.cta-orb-1 { width: 500px; height: 500px; top: -150px; left: -100px; background: rgba(124,58,237,0.15); }
.cta-orb-2 { width: 400px; height: 400px; bottom: -100px; right: -50px; background: rgba(245,158,11,0.1); }
.cta-container { max-width: 720px; margin: 0 auto; position: relative; z-index: 1; }
.cta-badge { display: inline-block; background: rgba(245,158,11,0.15); border: 1px solid rgba(251,191,36,0.3); padding: 0.35rem 1rem; border-radius: var(--r-full); font-size: 0.78rem; font-weight: 600; color: var(--gold-300); margin-bottom: 1.5rem; letter-spacing: 0.05em; }
.cta-title { font-family: 'Outfit', sans-serif; font-size: 3rem; font-weight: 900; line-height: 1.15; margin-bottom: 1.25rem; color: var(--white); }
.cta-gradient-text { background: var(--grad-pg); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cta-desc { font-size: 1.05rem; color: var(--gray-400); margin-bottom: 2.5rem; line-height: 1.7; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; margin-bottom: 1.5rem; flex-wrap: wrap; }
.btn-cta-primary { background: var(--grad-pg); color: var(--white); border: none; padding: 0.9rem 2rem; border-radius: var(--r-lg); font-size: 1rem; font-weight: 700; cursor: pointer; font-family: inherit; box-shadow: 0 0 40px rgba(124,58,237,0.5); transition: all 0.25s; }
.btn-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 0 60px rgba(124,58,237,0.7); }
.btn-cta-ghost { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); color: var(--white); padding: 0.9rem 2rem; border-radius: var(--r-lg); font-size: 1rem; font-weight: 600; cursor: pointer; font-family: inherit; transition: all 0.25s; }
.btn-cta-ghost:hover { background: rgba(255,255,255,0.1); }
.cta-trust { display: flex; justify-content: center; gap: 2rem; font-size: 0.82rem; color: var(--gray-400); flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer { background: var(--dark-3); border-top: 1px solid var(--dark-5); padding: 4rem 2rem 2rem; }
.footer-container { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 2fr; gap: 4rem; padding-bottom: 3rem; border-bottom: 1px solid var(--dark-5); margin-bottom: 2rem; }
.footer-logo { font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 800; background: var(--grad-pg); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.4rem; }
.footer-brand p { font-size: 0.88rem; color: var(--gray-400); line-height: 1.6; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a { width: 36px; height: 36px; border-radius: var(--r-md); background: var(--dark-4); border: 1px solid var(--dark-5); color: var(--gray-400); display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 0.85rem; font-weight: 600; transition: all 0.2s; }
.footer-social a:hover { border-color: var(--purple-600); color: var(--white); }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; letter-spacing: 0.05em; text-transform: uppercase; }
.footer-col a { display: block; color: var(--gray-400); text-decoration: none; font-size: 0.85rem; margin-bottom: 0.6rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--purple-400); }
.footer-bottom { max-width: 1280px; margin: 0 auto; text-align: center; font-size: 0.8rem; color: var(--dark-5); }

/* ===== AUTH MODAL ===== */
.auth-modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.8); z-index: 2000; align-items: center; justify-content: center; backdrop-filter: blur(8px); }
.auth-modal.active { display: flex; }
.auth-modal-content { background: var(--dark-3); border: 1px solid var(--dark-5); border-radius: var(--r-xl); width: 90%; max-width: 440px; padding: 2.5rem; position: relative; box-shadow: 0 30px 80px rgba(0,0,0,0.7); animation: modalIn 0.3s ease; }
@keyframes modalIn { from { opacity: 0; transform: scale(0.95) translateY(-10px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.modal-close { position: absolute; top: 1.25rem; right: 1.25rem; width: 2rem; height: 2rem; border-radius: 50%; background: var(--dark-5); color: var(--gray-400); border: none; font-size: 1.25rem; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s; }
.modal-close:hover { background: var(--dark-4); color: var(--white); }
.auth-logo { font-family: 'Outfit', sans-serif; font-size: 1.25rem; font-weight: 800; background: var(--grad-pg); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 1.25rem; }
.auth-title { font-family: 'Outfit', sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--white); margin-bottom: 0.3rem; }
.auth-subtitle { font-size: 0.88rem; color: var(--gray-400); margin-bottom: 1.5rem; }
.auth-form.hidden { display: none; }
.btn-google { width: 100%; display: flex; align-items: center; justify-content: center; gap: 0.75rem; background: var(--dark-4); border: 1px solid var(--dark-5); color: var(--white); padding: 0.75rem; border-radius: var(--r-lg); font-size: 0.9rem; font-weight: 600; cursor: pointer; font-family: inherit; transition: all 0.2s; }
.btn-google:hover { background: var(--dark-5); border-color: var(--gray-400); }
.auth-divider { display: flex; align-items: center; gap: 1rem; margin: 1.25rem 0; color: var(--dark-5); font-size: 0.8rem; }
.auth-divider::before,.auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--dark-5); }
.auth-input { width: 100%; background: var(--dark-4); border: 1px solid var(--dark-5); color: var(--white); padding: 0.7rem 0.9rem; border-radius: var(--r-lg); font-size: 0.9rem; font-family: inherit; margin-bottom: 0.75rem; transition: border-color 0.2s; outline: none; }
.auth-input:focus { border-color: var(--purple-500); }
.auth-input::placeholder { color: var(--dark-5); }
.forgot-password { display: block; color: var(--purple-400); font-size: 0.8rem; text-decoration: none; text-align: right; margin-bottom: 1rem; }
.btn-auth { width: 100%; padding: 0.8rem; border: none; border-radius: var(--r-lg); font-size: 0.95rem; font-weight: 700; cursor: pointer; font-family: inherit; background: var(--grad-pg); color: var(--white); box-shadow: 0 0 30px rgba(124,58,237,0.4); transition: all 0.25s; }
.btn-auth:hover { transform: translateY(-1px); box-shadow: 0 0 50px rgba(124,58,237,0.6); }
.auth-switch { margin-top: 1.25rem; font-size: 0.85rem; color: var(--gray-400); text-align: center; }
.auth-switch a { color: var(--purple-400); text-decoration: none; font-weight: 600; }
.auth-switch a:hover { color: var(--purple-300); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; gap: 3rem; }
    .hero-visual { height: 400px; }
    .hero-title { font-size: 2.8rem; }
    .feature-block { grid-template-columns: 1fr; gap: 2rem; }
    .feature-block-right .feature-visual { order: 1; }
    .feature-block-right .feature-content { order: 2; }
    .steps-row { grid-template-columns: 1fr; }
    .step-arrow { display: none; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; margin-bottom: 2rem; }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .footer-container { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .hero-title { font-size: 2.2rem; }
    .section-title { font-size: 2rem; }
    .cta-title { font-size: 2rem; }
    .hero-stats { gap: 1.25rem; }
    .stat-number { font-size: 1.5rem; }
    .hero { padding: 6rem 1.5rem 4rem; }
    section { padding: 4rem 1.5rem; }
    .trial-banner { flex-direction: column; text-align: center; gap: 1rem; }
}