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

:root {
    --dark-bg: #0a0a1a;
    --dark-mid: #12122a;
    --dark-card: rgba(255, 255, 255, 0.05);
    --dark-card-border: rgba(255, 255, 255, 0.08);
    --blue: #3b82f6;
    --violet: #8b5cf6;
    --pink: #ec4899;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --gradient-accent: linear-gradient(135deg, var(--blue), var(--violet), var(--pink));
    --gradient-accent-h: linear-gradient(90deg, var(--blue), var(--violet), var(--pink));
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --shadow-glow: 0 0 40px rgba(59, 130, 246, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--gray-800);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--dark-bg);
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

@keyframes slide-right {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Animations only activate after JS adds .has-scroll-anim to body */
.has-scroll-anim .animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.has-scroll-anim .animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.has-scroll-anim .animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.has-scroll-anim .animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.has-scroll-anim .animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.has-scroll-anim .animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.has-scroll-anim .animate-on-scroll.delay-5 { transition-delay: 0.5s; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-accent);
    background-size: 200% 200%;
    color: white;
    animation: gradient-shift 4s ease infinite;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

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

.btn-outline {
    background: transparent;
    color: var(--blue);
    border: 2px solid var(--blue);
}

.btn-outline:hover {
    background: var(--blue);
    color: white;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 14px;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 18px;
}

/* ============================================
   SECTION UTILITIES
   ============================================ */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.section-badge-dark {
    background: rgba(59, 130, 246, 0.1);
    color: var(--blue);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.section-badge-light {
    background: rgba(59, 130, 246, 0.08);
    color: var(--violet);
    border: 1px solid rgba(139, 92, 246, 0.15);
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    line-height: 1.7;
    max-width: 640px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

.gradient-text {
    background: var(--gradient-accent-h);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease infinite;
}

/* ============================================
   1. NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    color: white;
}

.nav-logo-icon {
    width: 36px;
    height: 36px;
    background: var(--gradient-accent);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo-icon svg {
    width: 20px;
    height: 20px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    font-weight: 500;
    transition: color var(--transition);
}

.nav-links a:hover {
    color: white;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-cta .btn-primary {
    padding: 10px 24px;
    font-size: 14px;
}

.nav-login {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 15px;
    font-weight: 500;
    transition: color var(--transition) !important;
}

.nav-login:hover {
    color: white !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
}

/* ============================================
   2. HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #0d0d2b 50%, #1a1a3e 100%);
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: rgba(59, 130, 246, 0.15);
    top: -200px;
    right: -200px;
    animation: pulse-glow 6s ease-in-out infinite;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(139, 92, 246, 0.12);
    bottom: -100px;
    left: -150px;
    animation: pulse-glow 8s ease-in-out infinite 2s;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: rgba(236, 72, 153, 0.1);
    top: 40%;
    left: 50%;
    animation: pulse-glow 7s ease-in-out infinite 1s;
}

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

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 24px;
    color: var(--blue);
    font-size: 14px;
    font-weight: 600;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-glow 2s ease-in-out infinite;
}

.hero-title {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 900;
    line-height: 1.1;
    color: white;
    margin-bottom: 24px;
}

.hero-title .highlight {
    display: block;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 520px;
}

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

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-avatars {
    display: flex;
}

.hero-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--dark-bg);
    margin-left: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: white;
}

.hero-avatar:first-child { margin-left: 0; background: linear-gradient(135deg, #3b82f6, #2563eb); }
.hero-avatar:nth-child(2) { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.hero-avatar:nth-child(3) { background: linear-gradient(135deg, #ec4899, #db2777); }
.hero-avatar:nth-child(4) { background: linear-gradient(135deg, #10b981, #059669); }

.hero-social-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.hero-social-text strong {
    color: white;
}

.hero-visual {
    position: relative;
    animation: fadeIn 1.2s ease-out 0.3s both;
}

.hero-mockup {
    position: relative;
    background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(139,92,246,0.1));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 24px;
    backdrop-filter: blur(10px);
    animation: float-slow 6s ease-in-out infinite;
}

.hero-mockup-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hero-mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.hero-mockup-dot:nth-child(1) { background: #ef4444; }
.hero-mockup-dot:nth-child(2) { background: #eab308; }
.hero-mockup-dot:nth-child(3) { background: #22c55e; }

.hero-mockup-title {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    margin-left: 8px;
}

.hero-mockup-canvas {
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius-sm);
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.mockup-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.mockup-item {
    position: absolute;
    border-radius: var(--radius-sm);
    border: 2px dashed rgba(59,130,246,0.4);
}

.mockup-item-1 {
    width: 35%;
    height: 45%;
    top: 10%;
    left: 5%;
    background: linear-gradient(135deg, rgba(59,130,246,0.15), rgba(139,92,246,0.15));
}

.mockup-item-2 {
    width: 25%;
    height: 35%;
    top: 15%;
    right: 10%;
    background: linear-gradient(135deg, rgba(236,72,153,0.15), rgba(239,68,68,0.15));
}

.mockup-item-3 {
    width: 30%;
    height: 30%;
    bottom: 12%;
    left: 30%;
    background: linear-gradient(135deg, rgba(16,185,129,0.15), rgba(59,130,246,0.15));
}

.mockup-item-4 {
    width: 20%;
    height: 25%;
    bottom: 10%;
    left: 8%;
    background: linear-gradient(135deg, rgba(234,179,8,0.15), rgba(249,115,22,0.15));
}

.mockup-sidebar {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 15%;
    background: rgba(255,255,255,0.03);
    border-left: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px 6px;
    align-items: center;
}

.mockup-sidebar-btn {
    width: 70%;
    aspect-ratio: 1;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
}

.hero-float-card {
    position: absolute;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 13px;
    font-weight: 500;
    animation: float 4s ease-in-out infinite;
}

.hero-float-card-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-float-card-1 {
    top: -10px;
    right: -20px;
    animation-delay: 0s;
}

.hero-float-card-1 .hero-float-card-icon {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.hero-float-card-2 {
    bottom: 30px;
    left: -30px;
    animation-delay: 2s;
}

.hero-float-card-2 .hero-float-card-icon {
    background: linear-gradient(135deg, var(--blue), var(--violet));
}

/* ============================================
   3. TRUST BAR
   ============================================ */
.trust-bar {
    background: linear-gradient(180deg, #1a1a3e 0%, #0f0f28 100%);
    padding: 64px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.trust-label {
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

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

.trust-stat-value {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 900;
    background: var(--gradient-accent-h);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 8px;
}

.trust-stat-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
    font-weight: 500;
}

/* ============================================
   4. FEATURES
   ============================================ */
.features {
    background: var(--light-bg);
    padding: 120px 0;
}

.features .section-title {
    color: var(--gray-900);
}

.features .section-subtitle {
    color: var(--gray-500);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent-h);
    opacity: 0;
    transition: opacity var(--transition);
}

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

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

.feature-icon-1 { background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(59,130,246,0.05)); color: var(--blue); }
.feature-icon-2 { background: linear-gradient(135deg, rgba(139,92,246,0.1), rgba(139,92,246,0.05)); color: var(--violet); }
.feature-icon-3 { background: linear-gradient(135deg, rgba(236,72,153,0.1), rgba(236,72,153,0.05)); color: var(--pink); }
.feature-icon-4 { background: linear-gradient(135deg, rgba(16,185,129,0.1), rgba(16,185,129,0.05)); color: #10b981; }
.feature-icon-5 { background: linear-gradient(135deg, rgba(245,158,11,0.1), rgba(245,158,11,0.05)); color: #f59e0b; }
.feature-icon-6 { background: linear-gradient(135deg, rgba(6,182,212,0.1), rgba(6,182,212,0.05)); color: #06b6d4; }
.feature-icon-7 { background: linear-gradient(135deg, rgba(168,85,247,0.1), rgba(168,85,247,0.05)); color: #a855f7; }
.feature-icon-8 { background: linear-gradient(135deg, rgba(34,197,94,0.1), rgba(34,197,94,0.05)); color: #22c55e; }
.feature-icon-9 { background: linear-gradient(135deg, rgba(244,63,94,0.1), rgba(244,63,94,0.05)); color: #f43f5e; }
.feature-icon-10 { background: linear-gradient(135deg, rgba(14,165,233,0.1), rgba(14,165,233,0.05)); color: #0ea5e9; }
.feature-icon-11 { background: linear-gradient(135deg, rgba(249,115,22,0.1), rgba(249,115,22,0.05)); color: #f97316; }
.feature-icon-12 { background: linear-gradient(135deg, rgba(34,197,94,0.1), rgba(34,197,94,0.05)); color: #22c55e; }

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.feature-desc {
    color: var(--gray-500);
    font-size: 15px;
    line-height: 1.7;
}

/* ============================================
   5. HOW IT WORKS
   ============================================ */
.how-it-works {
    background: white;
    padding: 120px 0;
}

.how-it-works .section-title {
    color: var(--gray-900);
}

.how-it-works .section-subtitle {
    color: var(--gray-500);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 48px;
    left: calc(16.67% + 24px);
    right: calc(16.67% + 24px);
    height: 2px;
    background: var(--gradient-accent-h);
    opacity: 0.3;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 900;
    margin: 0 auto 28px;
    position: relative;
    z-index: 2;
}

.step:nth-child(1) .step-number {
    background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(59,130,246,0.05));
    color: var(--blue);
    border: 2px solid rgba(59,130,246,0.2);
}

.step:nth-child(2) .step-number {
    background: linear-gradient(135deg, rgba(139,92,246,0.1), rgba(139,92,246,0.05));
    color: var(--violet);
    border: 2px solid rgba(139,92,246,0.2);
}

.step:nth-child(3) .step-number {
    background: linear-gradient(135deg, rgba(236,72,153,0.1), rgba(236,72,153,0.05));
    color: var(--pink);
    border: 2px solid rgba(236,72,153,0.2);
}

.step-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.step-desc {
    color: var(--gray-500);
    font-size: 15px;
    line-height: 1.7;
    max-width: 300px;
    margin: 0 auto;
}

/* ============================================
   5b. EXTRA TOOLS
   ============================================ */
.extra-tools {
    background: var(--light-bg);
    padding: 100px 0;
}

.extra-tools .section-title { color: var(--gray-900); }
.extra-tools .section-subtitle { color: var(--gray-500); }

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

.tool-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

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

.tool-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tool-card-icon svg { width: 28px; height: 28px; }

.tci-1 { background: linear-gradient(135deg, rgba(139,92,246,0.15), rgba(139,92,246,0.05)); color: var(--violet); }
.tci-2 { background: linear-gradient(135deg, rgba(236,72,153,0.15), rgba(236,72,153,0.05)); color: var(--pink); }
.tci-3 { background: linear-gradient(135deg, rgba(59,130,246,0.15), rgba(59,130,246,0.05)); color: var(--blue); }
.tci-4 { background: linear-gradient(135deg, rgba(245,158,11,0.15), rgba(245,158,11,0.05)); color: #f59e0b; }
.tci-5 { background: linear-gradient(135deg, rgba(16,185,129,0.15), rgba(16,185,129,0.05)); color: #10b981; }
.tci-6 { background: linear-gradient(135deg, rgba(99,102,241,0.15), rgba(99,102,241,0.05)); color: #6366f1; }

.tool-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.tool-card-desc {
    color: var(--gray-500);
    font-size: 14px;
    line-height: 1.6;
}

/* ============================================
   5c. EXTRA OPTIONS
   ============================================ */
.extra-options {
    background: linear-gradient(180deg, #0d0d2b 0%, #131335 100%);
    padding: 100px 0;
    color: white;
}

.extra-options .section-title { color: white; }
.extra-options .section-subtitle { color: rgba(255,255,255,0.5); }

.options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.option-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all var(--transition);
}

.option-card:hover {
    border-color: rgba(59,130,246,0.3);
    background: rgba(255,255,255,0.06);
    transform: translateY(-3px);
}

.option-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.option-card-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.option-card-icon svg { width: 20px; height: 20px; }

.oci-1 { background: rgba(59,130,246,0.15); color: var(--blue); }
.oci-2 { background: rgba(139,92,246,0.15); color: var(--violet); }
.oci-3 { background: rgba(16,185,129,0.15); color: #10b981; }
.oci-4 { background: rgba(236,72,153,0.15); color: var(--pink); }
.oci-5 { background: rgba(245,158,11,0.15); color: #f59e0b; }
.oci-6 { background: rgba(6,182,212,0.15); color: #06b6d4; }

.option-card-title {
    font-size: 17px;
    font-weight: 700;
}

.option-card-desc {
    color: rgba(255,255,255,0.45);
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .tools-grid { grid-template-columns: repeat(2, 1fr); }
    .options-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .tools-grid { grid-template-columns: 1fr; }
    .options-grid { grid-template-columns: 1fr; }
}

/* ============================================
   6. PRODUCT TYPES
   ============================================ */
.product-types {
    background: linear-gradient(180deg, var(--dark-bg) 0%, #0d0d2b 100%);
    padding: 120px 0;
    color: white;
}

.product-types .section-title {
    color: white;
}

.product-types .section-subtitle {
    color: rgba(255, 255, 255, 0.5);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-grid .product-card:nth-child(4),
.product-grid .product-card:nth-child(5) {
    /* Center last two cards */
}

.product-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.product-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59,130,246,0.05), rgba(139,92,246,0.05));
    opacity: 0;
    transition: opacity var(--transition);
}

.product-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.06);
}

.product-card:hover::after {
    opacity: 1;
}

.product-card > * {
    position: relative;
    z-index: 2;
}

.product-card-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
}

.product-card-icon svg {
    width: 32px;
    height: 32px;
}

.pc-icon-1 { background: linear-gradient(135deg, rgba(59,130,246,0.2), rgba(59,130,246,0.1)); color: var(--blue); }
.pc-icon-2 { background: linear-gradient(135deg, rgba(236,72,153,0.2), rgba(236,72,153,0.1)); color: var(--pink); }
.pc-icon-3 { background: linear-gradient(135deg, rgba(16,185,129,0.2), rgba(16,185,129,0.1)); color: #10b981; }
.pc-icon-4 { background: linear-gradient(135deg, rgba(245,158,11,0.2), rgba(245,158,11,0.1)); color: #f59e0b; }
.pc-icon-5 { background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(139,92,246,0.1)); color: var(--violet); }

.product-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.product-card-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.product-card-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    background: rgba(59, 130, 246, 0.1);
    color: var(--blue);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.product-grid-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 24px;
    max-width: 808px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   7. PRICING
   ============================================ */
.pricing {
    background: var(--light-bg);
    padding: 120px 0;
}

.pricing .section-title {
    color: var(--gray-900);
}

.pricing .section-subtitle {
    color: var(--gray-500);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 56px;
}

.pricing-toggle-label {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-500);
    transition: color var(--transition);
}

.pricing-toggle-label.active {
    color: var(--gray-900);
}

.pricing-toggle-switch {
    width: 52px;
    height: 28px;
    background: var(--gray-300);
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    transition: background var(--transition);
    -webkit-user-select: none;
    user-select: none;
}

.pricing-toggle-switch.active {
    background: var(--gradient-accent);
}

.pricing-toggle-switch::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 50%;
    top: 3px;
    left: 3px;
    transition: transform var(--transition);
    box-shadow: var(--shadow-sm);
}

.pricing-toggle-switch.active::after {
    transform: translateX(24px);
}

.pricing-save {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    align-items: stretch;
}

.pricing-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

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

.pricing-card.popular {
    border-color: var(--blue);
    box-shadow: var(--shadow-glow);
    transform: scale(1.02);
}

.pricing-card.popular:hover {
    transform: scale(1.02) translateY(-4px);
}

.pricing-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: white;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 50px;
    white-space: nowrap;
}

.pricing-plan {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.pricing-plan-desc {
    color: var(--gray-500);
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 6px;
}

.pricing-currency {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-400);
}

.pricing-value {
    font-size: 56px;
    font-weight: 900;
    color: var(--gray-900);
    line-height: 1;
}

.pricing-period {
    font-size: 16px;
    color: var(--gray-400);
    font-weight: 500;
}

.pricing-note {
    font-size: 13px;
    color: var(--gray-400);
    margin-bottom: 28px;
}

.pricing-divider {
    border: none;
    border-top: 1px solid var(--gray-200);
    margin: 0 0 28px;
}

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

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--gray-600);
}

.pricing-features li svg {
    width: 20px;
    height: 20px;
    color: #10b981;
    flex-shrink: 0;
    margin-top: 1px;
}

.pricing-card .btn {
    width: 100%;
}

/* ============================================
   8. TESTIMONIALS
   ============================================ */
.testimonials {
    background: white;
    padding: 120px 0;
}

.testimonials .section-title {
    color: var(--gray-900);
}

.testimonials .section-subtitle {
    color: var(--gray-500);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--gray-100);
    transition: all var(--transition);
}

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

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    color: #f59e0b;
    fill: #f59e0b;
}

.testimonial-text {
    color: var(--gray-700);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: white;
}

.testimonial-card:nth-child(1) .testimonial-avatar { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.testimonial-card:nth-child(2) .testimonial-avatar { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.testimonial-card:nth-child(3) .testimonial-avatar { background: linear-gradient(135deg, #ec4899, #db2777); }

.testimonial-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-900);
}

.testimonial-role {
    font-size: 13px;
    color: var(--gray-400);
}

/* ============================================
   9. FINAL CTA
   ============================================ */
.final-cta {
    background: linear-gradient(180deg, #0d0d2b 0%, var(--dark-bg) 100%);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.final-cta-orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(59, 130, 246, 0.12);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
}

.final-cta-orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(139, 92, 246, 0.08);
    bottom: -100px;
    right: 10%;
}

.final-cta .container {
    position: relative;
    z-index: 2;
}

.final-cta-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
}

.final-cta-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 44px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.final-cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.final-cta-note {
    color: rgba(255, 255, 255, 0.35);
    font-size: 14px;
}

/* ============================================
   10. FOOTER
   ============================================ */
.footer {
    background: var(--dark-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 64px 0 32px;
    color: rgba(255, 255, 255, 0.5);
}

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

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.footer-logo-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-accent);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-icon svg {
    width: 18px;
    height: 18px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-col-title {
    font-size: 14px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    transition: color var(--transition);
}

.footer-bottom-links a:hover {
    color: white;
}

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

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-social-proof {
        justify-content: center;
    }

    .hero-visual {
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-float-card-1 { right: 0; top: -5px; }
    .hero-float-card-2 { left: 0; bottom: 20px; }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps::before {
        display: none;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-grid-bottom {
        max-width: 100%;
    }

    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

    .nav-cta .nav-login {
        display: none;
    }

    .hero {
        padding: 100px 0 60px;
    }

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

    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .features-grid,
    .steps,
    .pricing-cards,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

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

    .product-grid-bottom {
        grid-template-columns: 1fr;
    }

    .pricing-card.popular {
        transform: none;
    }

    .pricing-card.popular:hover {
        transform: translateY(-4px);
    }

    .pricing-card:last-child,
    .testimonial-card:last-child {
        grid-column: auto;
        max-width: 100%;
    }

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

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

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .section-title {
        font-size: 28px;
    }

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

    .final-cta-actions .btn {
        width: 100%;
        max-width: 320px;
    }
}

/* Mobile menu overlay */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 26, 0.98);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

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

.mobile-menu a {
    color: white;
    font-size: 24px;
    font-weight: 600;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-close svg {
    width: 28px;
    height: 28px;
}
