/* MyShopy Landing Page */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --purple: #7c3aed;
    --purple-light: #a78bfa;
    --purple-dark: #5b21b6;
    --purple-soft: #f5f3ff;
    --cyan: #06b6d4;
    --pink: #ec4899;
    --ink: #0f172a;
    --ink-soft: #475569;
    --muted: #64748b;
    --line: #e2e8f0;
    --surface: #ffffff;
    --surface-alt: #f8fafc;
    --surface-alt-2: #f1f5f9;
    --shadow-sm: 0 2px 8px rgba(15,23,42,0.04);
    --shadow-md: 0 8px 24px rgba(15,23,42,0.08);
    --shadow-lg: 0 20px 48px rgba(15,23,42,0.10);
    --shadow-purple: 0 20px 48px rgba(124,58,237,0.18);
    --font-display: 'Playfair Display', Georgia, serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 80px; }
body { font-family: 'Inter', -apple-system, sans-serif; color: var(--ink); background: var(--surface); overflow-x: hidden; }
a { color: inherit; text-decoration: none; }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 20px 0; transition: all 0.3s; }
.nav.scrolled { background: rgba(255,255,255,0.9); backdrop-filter: blur(20px); border-bottom: 1px solid var(--line); padding: 12px 0; }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: inline-flex; align-items: center; gap: 10px; }
.nav-brand img { flex-shrink: 0; display: block; }
.nav-brand .brand-text { height: 26px; width: auto; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--muted); transition: color 0.2s; }
.nav-links a:hover { color: var(--ink); }
.nav-links a.btn-nav { padding: 10px 24px; background: var(--purple); color: white; border-radius: 8px; font-weight: 600; font-size: 14px; transition: all 0.2s; }
.nav-links a.btn-nav:hover { background: var(--purple-dark); color: white; transform: translateY(-1px); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; transition: 0.3s; }
.nav-close { display: none; }

/* HERO */
.hero { min-height: 100vh; min-height: 100dvh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 120px 24px 80px; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg::before { content: ''; position: absolute; top: -30%; left: -20%; width: 140%; height: 160%; background: radial-gradient(ellipse at 20% 30%, rgba(124,58,237,0.18) 0%, transparent 45%), radial-gradient(ellipse at 80% 20%, rgba(236,72,153,0.10) 0%, transparent 40%), radial-gradient(ellipse at 70% 70%, rgba(6,182,212,0.14) 0%, transparent 45%), radial-gradient(ellipse at 30% 80%, rgba(168,85,247,0.10) 0%, transparent 45%); animation: heroBg 18s ease-in-out infinite alternate; will-change: transform, filter; filter: blur(30px); }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230f172a' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
@keyframes heroBg { 0% { transform: rotate(0deg) scale(1); } 50% { transform: rotate(2deg) scale(1.05); } 100% { transform: rotate(-1deg) scale(1.08); } }
.hero-content { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; border-radius: 50px; background: rgba(124,58,237,0.1); border: 1px solid rgba(124,58,237,0.25); font-size: 13px; font-weight: 500; color: var(--purple-dark); margin-bottom: 24px; }
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: #10b981; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 { font-size: clamp(40px, 5.6vw, 72px); font-weight: 900; line-height: 1.02; letter-spacing: -2.5px; margin-bottom: 24px; color: var(--ink); }
.hero h1 .gradient { background: linear-gradient(135deg, var(--purple), var(--cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero .subtitle { font-size: 18px; color: var(--muted); line-height: 1.7; margin-bottom: 40px; max-width: 500px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary { display: inline-block; padding: 16px 36px; background: linear-gradient(135deg, var(--purple), var(--purple-dark)); color: white; border-radius: 12px; font-weight: 700; font-size: 16px; border: none; cursor: pointer; transition: all 0.3s; box-shadow: 0 8px 32px rgba(124,58,237,0.3); text-align: center; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(124,58,237,0.5); }
.btn-secondary { display: inline-block; padding: 16px 36px; background: var(--surface); color: var(--ink); border-radius: 12px; font-weight: 600; font-size: 16px; border: 1px solid var(--line); cursor: pointer; transition: all 0.3s; text-align: center; }
.btn-secondary:hover { background: var(--surface-alt); border-color: #cbd5e1; }

/* Hero visual — mockup stays dark as a product preview surface */
.hero-visual { position: relative; }
.hero-visual::before { content: ''; position: absolute; inset: -20% -10% -10% -10%; background: radial-gradient(ellipse at 50% 50%, rgba(124,58,237,0.28) 0%, rgba(6,182,212,0.14) 40%, transparent 70%); filter: blur(40px); z-index: 0; pointer-events: none; animation: halo 8s ease-in-out infinite alternate; }
@keyframes halo { 0% { transform: scale(0.95) translate(-5px, 0); opacity: 0.8; } 100% { transform: scale(1.05) translate(5px, -5px); opacity: 1; } }
.hero-mockup { position: relative; z-index: 1; width: 100%; border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 40px 80px -20px rgba(15,23,42,0.35), 0 12px 32px rgba(124,58,237,0.18), inset 0 1px 0 rgba(255,255,255,0.06); background: #1a1a2e; transform: perspective(1200px) rotateY(-6deg) rotateX(3deg); transition: transform 0.6s var(--ease); }
.hero-mockup:hover { transform: perspective(1200px) rotateY(-2deg) rotateX(1deg); }
.hero-mockup-bar { height: 34px; background: #111827; display: flex; align-items: center; padding: 0 12px; gap: 6px; position: relative; }
.hero-mockup-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.hero-mockup-dot--red { background: #ef4444; }
.hero-mockup-dot--yellow { background: #f59e0b; }
.hero-mockup-dot--green { background: #10b981; }
.hero-mockup-url { margin-left: 10px; flex: 1; padding: 4px 12px; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.55); border-radius: 6px; font-size: 11px; font-family: 'SF Mono', Menlo, monospace; letter-spacing: 0.2px; text-align: center; max-width: 260px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hero-mockup-body { position: relative; padding: 24px; min-height: 280px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; overflow: hidden; }
.hero-mockup-body--image { padding: 0; min-height: 320px; background: #0f172a; }
.hero-mockup-body--image img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; object-position: top center; display: block; }
.hero-mockup-body--image .hero-mockup-fallback { position: absolute; inset: 0; display: none; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 24px; }
.hero-mockup-body--fallback .hero-mockup-fallback { display: flex; }
.hero-mockup-body--fallback img { display: none !important; }
.hero-mockup-title { font-size: 22px; font-weight: 700; color: white; margin-bottom: 8px; font-family: 'Playfair Display', serif; }
.hero-mockup-sub { font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.hero-mockup-btn { padding: 8px 20px; background: white; color: #1e1b4b; border-radius: 6px; font-size: 11px; font-weight: 600; display: inline-block; }
.hero-float { position: absolute; background: rgba(255,255,255,0.9); backdrop-filter: blur(20px); border: 1px solid var(--line); border-radius: 12px; padding: 12px 16px; font-size: 12px; font-weight: 500; color: var(--ink); box-shadow: 0 8px 24px rgba(15,23,42,0.08); animation: float 6s ease-in-out infinite; }
.hero-float-1 { top: 20px; right: -30px; animation-delay: 0s; }
.hero-float-2 { bottom: 40px; left: -20px; animation-delay: 2s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* SECTION COMMONS */
.section { padding: 120px 24px; position: relative; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px 6px 12px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--purple-dark); background: rgba(124,58,237,0.08); border: 1px solid rgba(124,58,237,0.18); border-radius: 999px; margin-bottom: 20px; }
.section-label::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--purple); box-shadow: 0 0 0 3px rgba(124,58,237,0.18); animation: pulse 2s infinite; flex-shrink: 0; }
.section-title { font-size: clamp(28px, 4vw, 48px); font-weight: 800; letter-spacing: -1px; line-height: 1.1; margin-bottom: 20px; color: var(--ink); }
.section-subtitle { font-size: 18px; color: var(--muted); line-height: 1.7; max-width: 600px; }
.section-centered { text-align: center; }
.section-centered .section-title,
.section-centered .section-subtitle { margin-left: auto; margin-right: auto; }

/* STATS BAR */
.stats-bar { display: flex; justify-content: center; gap: 48px; padding: 60px 24px; flex-wrap: wrap; }
.stat { text-align: center; min-width: 120px; }
.stat-number { font-size: 48px; font-weight: 900; letter-spacing: -2px; background: linear-gradient(135deg, var(--purple), var(--cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 14px; color: var(--muted); margin-top: 4px; }

/* STEPS */
.steps { background: linear-gradient(180deg, var(--surface) 0%, var(--surface-alt) 100%); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 64px; }
.step-card { background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 40px 32px; text-align: center; transition: all 0.3s; position: relative; overflow: hidden; box-shadow: 0 4px 16px rgba(15,23,42,0.04); }
.step-card:hover { border-color: rgba(124,58,237,0.4); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(124,58,237,0.12); }
.step-card::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 60%; height: 1px; background: linear-gradient(90deg, transparent, var(--purple), transparent); opacity: 0; transition: opacity 0.3s; }
.step-card:hover::before { opacity: 1; }
.step-number { width: 56px; height: 56px; border-radius: 16px; background: linear-gradient(135deg, var(--purple), var(--purple-dark)); display: flex; align-items: center; justify-content: center; color: white; font-size: 24px; font-weight: 800; margin: 0 auto 24px; }
.step-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--ink); }
.step-card p { font-size: 15px; color: var(--muted); line-height: 1.7; }

/* FEATURES */
.features { background: var(--surface-alt); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px; }
.feature-card { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 32px; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s; box-shadow: var(--shadow-sm); overflow: hidden; }
.feature-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--purple), transparent); opacity: 0; transition: opacity 0.3s; }
.feature-card:hover { border-color: rgba(124,58,237,0.3); box-shadow: 0 12px 32px rgba(124,58,237,0.10); transform: translateY(-4px); }
.feature-card:hover::after { opacity: 1; }
.feature-card--featured { grid-column: span 2; background: linear-gradient(135deg, var(--ink) 0%, #1e1b4b 100%); border-color: transparent; color: white; }
.feature-card--featured::before { content: ''; position: absolute; top: -50%; right: -20%; width: 60%; height: 200%; background: radial-gradient(circle, rgba(124,58,237,0.3) 0%, transparent 50%); pointer-events: none; z-index: 0; }
.feature-card--featured > * { position: relative; z-index: 1; }
.feature-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: transform 0.3s var(--ease); }
.feature-card:hover .feature-icon { transform: scale(1.08) rotate(-3deg); }
.feature-icon--purple { background: linear-gradient(135deg, rgba(124,58,237,0.18), rgba(124,58,237,0.08)); }
.feature-icon--cyan { background: linear-gradient(135deg, rgba(6,182,212,0.18), rgba(6,182,212,0.08)); }
.feature-icon--green { background: linear-gradient(135deg, rgba(16,185,129,0.18), rgba(16,185,129,0.08)); }
.feature-icon--yellow { background: linear-gradient(135deg, rgba(245,158,11,0.18), rgba(245,158,11,0.08)); }
.feature-icon--pink { background: linear-gradient(135deg, rgba(236,72,153,0.18), rgba(236,72,153,0.08)); }
.feature-icon--red { background: linear-gradient(135deg, rgba(239,68,68,0.18), rgba(239,68,68,0.08)); }
.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--ink); }
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }
/* Featured overrides (after defaults for proper cascade) */
.feature-card--featured h3 { color: #ffffff; }
.feature-card--featured p { color: rgba(255,255,255,0.85); }
.feature-card--featured .feature-icon { background: linear-gradient(135deg, rgba(124,58,237,0.5), rgba(6,182,212,0.3)); }

/* SHOWCASE — dark cards as site previews */
.showcase { background: linear-gradient(180deg, var(--surface-alt) 0%, var(--surface) 100%); }
.showcase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px; }
.showcase-card { border-radius: 16px; overflow: hidden; border: 1px solid var(--line); transition: all 0.4s; background: #111; display: block; box-shadow: 0 8px 24px rgba(15,23,42,0.08); }
.showcase-card:hover { transform: translateY(-8px); border-color: rgba(124,58,237,0.3); box-shadow: 0 20px 60px rgba(124,58,237,0.2); }
.showcase-preview { height: 200px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 24px; }
.showcase-preview h3 { font-size: 20px; font-weight: 700; color: white; margin-bottom: 6px; }
.showcase-preview p { font-size: 12px; color: rgba(255,255,255,0.6); }
.showcase-info { padding: 16px 20px; background: var(--surface); border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
.showcase-info h4 { font-size: 14px; font-weight: 600; color: var(--ink); }
.showcase-info span { font-size: 12px; color: var(--muted); }
.showcase-link { font-size: 12px; color: var(--purple); font-weight: 600; }

/* PRICING */
.pricing { background: var(--surface); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px; max-width: 900px; margin-left: auto; margin-right: auto; }
.price-card { background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 36px 28px; text-align: center; transition: all 0.3s; box-shadow: 0 4px 16px rgba(15,23,42,0.04); }
.price-card--popular { background: linear-gradient(180deg, rgba(124,58,237,0.04), var(--surface)); border-color: var(--purple); box-shadow: 0 12px 40px rgba(124,58,237,0.15); position: relative; }
.price-card--popular::before { content: 'Populaire'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); padding: 4px 16px; background: var(--purple); color: white; border-radius: 50px; font-size: 11px; font-weight: 700; }
.price-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(15,23,42,0.08); }
.price-card h3 { font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.price-amount { font-size: 48px; font-weight: 900; color: var(--ink); letter-spacing: -2px; margin: 16px 0; }
.price-amount small { font-size: 16px; font-weight: 400; color: var(--muted); }
.price-features { list-style: none; margin: 24px 0; text-align: left; }
.price-features li { font-size: 14px; color: var(--ink-soft); padding: 8px 0; display: flex; align-items: center; gap: 10px; }
.price-features li::before { content: '\2713'; color: var(--purple); font-weight: 700; }
.price-btn { display: block; width: 100%; padding: 14px; border-radius: 10px; font-size: 14px; font-weight: 700; border: none; cursor: pointer; transition: all 0.2s; text-align: center; }
.price-btn--primary { background: var(--purple); color: white; }
.price-btn--primary:hover { background: var(--purple-dark); }
.price-btn--outline { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.price-btn--outline:hover { background: var(--surface-alt); border-color: #cbd5e1; }

/* FAQ */
.faq { background: var(--surface-alt); }
.faq-groups { max-width: 720px; margin: 56px auto 0; display: flex; flex-direction: column; gap: 32px; }
.faq-group { text-align: left; }
.faq-group-label { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px 6px 12px; background: rgba(124,58,237,0.08); border: 1px solid rgba(124,58,237,0.18); border-radius: 999px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: var(--purple-dark); margin-bottom: 14px; }
.faq-group-label::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--purple); flex-shrink: 0; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; transition: border-color 0.3s, box-shadow 0.3s; }
.faq-item:hover { border-color: rgba(124,58,237,0.25); box-shadow: var(--shadow-sm); }
.faq-item[data-open="true"] { border-color: rgba(124,58,237,0.3); box-shadow: 0 8px 24px rgba(124,58,237,0.08); }
.faq-question { width: 100%; text-align: left; background: none; border: none; color: var(--ink); font-size: 15px; font-weight: 600; padding: 18px 22px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: inherit; gap: 16px; transition: color 0.2s; }
.faq-question:hover { color: var(--purple-dark); }
.faq-question .icon { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; border-radius: 50%; background: var(--surface-alt-2); color: var(--purple); font-size: 16px; font-weight: 700; transition: transform 0.35s var(--ease), background 0.3s; flex-shrink: 0; }
.faq-item[data-open="true"] .faq-question .icon { background: var(--purple); color: #fff; transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-answer p { font-size: 14.5px; color: var(--muted); line-height: 1.7; padding: 0 22px 20px; margin: 0; }

/* CTA — stays purple for brand impact */
.cta-section { background: linear-gradient(135deg, var(--purple-dark) 0%, #1e1b4b 50%, #0f172a 100%); padding: 110px 24px; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 30%, rgba(124,58,237,0.4) 0%, transparent 55%), radial-gradient(circle at 70% 70%, rgba(6,182,212,0.25) 0%, transparent 55%); animation: ctaGlow 10s ease-in-out infinite alternate; }
.cta-section::after { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='200' height='200' viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.4 0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23noise)' opacity='0.5'/%3E%3C/svg%3E"); opacity: 0.06; mix-blend-mode: overlay; pointer-events: none; }
@keyframes ctaGlow { 0% { transform: scale(1) translate(0, 0); } 100% { transform: scale(1.1) translate(-30px, 20px); } }
.cta-section h2 { font-size: clamp(32px, 5vw, 56px); font-weight: 900; letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 16px; position: relative; z-index: 1; color: white; }
.cta-section p { font-size: 18px; color: rgba(255,255,255,0.78); margin-bottom: 40px; position: relative; z-index: 1; }
.cta-section .btn-primary { background: white; color: var(--purple-dark); box-shadow: 0 8px 32px rgba(255,255,255,0.18); }
.cta-section .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(255,255,255,0.3); background: white; color: var(--purple-dark); }

/* FOOTER */
.footer { background: var(--surface); border-top: 1px solid var(--line); padding: 48px 24px 24px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; padding-bottom: 24px; }
.footer-brand { display: inline-flex; align-items: center; gap: 8px; }
.footer-brand img { flex-shrink: 0; display: block; }
.footer-brand .brand-text { height: 21px; width: auto; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--ink); }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; color: #94a3b8; }
.footer-legal { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-legal a { font-size: 12px; color: #94a3b8; transition: color 0.2s; }
.footer-legal a:hover { color: var(--muted); }

/* HERO REASSURE BULLETS — pills style */
.hero-reassure { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; padding: 0; }
.hero-reassure li { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; color: var(--ink); font-weight: 600; padding: 7px 14px 7px 10px; background: rgba(255,255,255,0.7); backdrop-filter: blur(8px); border: 1px solid var(--line); border-radius: 999px; box-shadow: 0 1px 2px rgba(15,23,42,0.04); transition: all 0.2s; }
.hero-reassure li:hover { border-color: rgba(16,185,129,0.3); background: rgba(255,255,255,0.95); }
.hero-reassure .check { display: inline-flex; align-items: center; justify-content: center; width: 16px; height: 16px; border-radius: 50%; background: #10b981; color: #fff; font-weight: 900; font-size: 10px; line-height: 1; }

/* PROBLEM */
.problem { background: var(--surface); }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.pain-card { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 32px 28px; text-align: left; box-shadow: var(--shadow-sm); transition: all 0.3s var(--ease); position: relative; overflow: hidden; }
.pain-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #ef4444, #f59e0b); opacity: 0; transition: opacity 0.3s; }
.pain-card:hover { border-color: rgba(239,68,68,0.3); box-shadow: 0 12px 32px rgba(239,68,68,0.10); transform: translateY(-3px); }
.pain-card:hover::before { opacity: 1; }
.pain-big { display: block; font-size: clamp(42px, 5.2vw, 56px); font-weight: 900; line-height: 1; letter-spacing: -2px; background: linear-gradient(135deg, #ef4444 0%, #dc2626 60%, #7f1d1d 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 16px; }
.pain-big-sub { font-size: 20px; font-weight: 700; letter-spacing: -0.5px; margin-left: 2px; -webkit-text-fill-color: #ef4444; color: #ef4444; background: none; opacity: 0.75; }
.pain-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--ink); }
.pain-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.problem-pivot { margin-top: 56px; font-size: clamp(20px, 2.5vw, 26px); font-weight: 700; color: var(--ink); background: linear-gradient(135deg, var(--purple), var(--cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1.3; }

/* SOLUTION — DARK theme for contrast break */
.solution { background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #1a1a2e 100%); color: white; position: relative; overflow: hidden; }
.solution::before { content: ''; position: absolute; top: -20%; right: -10%; width: 60%; height: 140%; background: radial-gradient(ellipse at center, rgba(124,58,237,0.25) 0%, transparent 60%); pointer-events: none; }
.solution::after { content: ''; position: absolute; bottom: -20%; left: -10%; width: 50%; height: 120%; background: radial-gradient(ellipse at center, rgba(6,182,212,0.15) 0%, transparent 60%); pointer-events: none; }
.solution .section-inner { position: relative; z-index: 1; }
.solution .section-label { background: rgba(124,58,237,0.2); border-color: rgba(124,58,237,0.35); color: #c4b5fd; }
.solution .section-title { color: white; }
.solution .section-subtitle { color: rgba(255,255,255,0.72); }
.solution-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.solution-bullets { display: flex; flex-direction: column; gap: 16px; }
.sb-item { display: flex; align-items: flex-start; gap: 16px; padding: 20px 22px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; backdrop-filter: blur(8px); transition: all 0.3s var(--ease); }
.sb-item:hover { border-color: rgba(124,58,237,0.5); transform: translateY(-2px); background: rgba(255,255,255,0.06); box-shadow: 0 12px 32px rgba(124,58,237,0.18); }
.sb-icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.sb-icon--cyan { background: linear-gradient(135deg, rgba(6,182,212,0.35), rgba(6,182,212,0.15)); color: #67e8f9; }
.sb-icon--purple { background: linear-gradient(135deg, rgba(124,58,237,0.4), rgba(124,58,237,0.15)); color: #c4b5fd; }
.sb-icon--green { background: linear-gradient(135deg, rgba(16,185,129,0.35), rgba(16,185,129,0.15)); color: #6ee7b7; }
.sb-item strong { display: block; font-size: 16px; font-weight: 700; color: white; margin-bottom: 3px; }
.sb-item span { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.5; }
.solution .btn-primary { background: white; color: var(--purple-dark); box-shadow: 0 8px 32px rgba(255,255,255,0.12); }
.solution .btn-primary:hover { transform: translateY(-2px); background: white; color: var(--purple-dark); box-shadow: 0 14px 40px rgba(255,255,255,0.22); }

/* COMPARISON */
.comparison { background: var(--surface); }
.compare-wrap { position: relative; max-width: 900px; margin: 80px auto 0; padding-top: 14px; }
.compare-table { width: 100%; max-width: 100%; margin: 0; background: var(--surface); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); border-collapse: separate; border-spacing: 0; }
.compare-table thead tr { background: var(--surface-alt); }
.compare-table th, .compare-table td { padding: 18px 24px; text-align: center; vertical-align: middle; border-bottom: 1px solid var(--line); }
.compare-table tbody tr { transition: background 0.2s; }
.compare-table tbody tr:nth-child(even) { background: rgba(248,250,252,0.5); }
.compare-table tbody tr:hover { background: rgba(124,58,237,0.03); }
.compare-table tbody tr:last-child th, .compare-table tbody tr:last-child td { border-bottom: none; }
.compare-th-empty { border-bottom: 1px solid var(--line); }
.compare-col { font-size: 16px; font-weight: 700; color: var(--ink); padding: 24px; }
.compare-col span { display: inline-block; margin-top: 6px; }
.compare-col img { display: block; margin: 0 auto; }
.compare-agency-icon { font-size: 28px; line-height: 1; display: block; }
.compare-col--us { background: linear-gradient(180deg, rgba(124,58,237,0.12), rgba(124,58,237,0.04)); color: var(--purple-dark); position: relative; }
.compare-col--us::after { content: ''; position: absolute; bottom: 0; left: 20%; right: 20%; height: 2px; background: linear-gradient(90deg, var(--purple), var(--cyan)); border-radius: 2px; }
.compare-winner-badge { position: absolute; top: 0; left: 52%; transform: translateX(-50%); z-index: 2; padding: 5px 16px; background: linear-gradient(135deg, var(--purple), var(--cyan)); color: #fff; font-size: 10px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; border-radius: 999px; box-shadow: 0 6px 16px rgba(124,58,237,0.35); white-space: nowrap; }
.compare-winner-badge::before { content: '\2728'; margin-right: 4px; }
@media (max-width: 768px) { .compare-winner-badge { left: 54%; font-size: 9px; padding: 4px 12px; } }
.compare-label { font-size: 14px; font-weight: 600; color: var(--ink-soft); text-align: left; width: 36%; }
.compare-val { font-size: 14px; line-height: 1.4; width: 32%; }
.compare-val strong { font-weight: 700; font-size: 15px; }
.compare-val-row { display: inline-flex; align-items: center; gap: 8px; }
.compare-icon { flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; border-radius: 50%; font-size: 11px; font-weight: 900; }
.compare-icon--win { background: #10b981; color: #fff; }
.compare-icon--lose { background: rgba(239,68,68,0.12); color: #ef4444; }
.compare-val--win { color: #0f172a; background: rgba(16,185,129,0.04); }
.compare-val--win strong { color: #059669; }
.compare-val--lose { color: var(--muted); }

/* STICKY CTA MOBILE */
.sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; padding: 12px 16px; background: rgba(255,255,255,0.96); backdrop-filter: blur(20px); border-top: 1px solid var(--line); box-shadow: 0 -8px 24px rgba(15,23,42,0.08); align-items: center; justify-content: space-between; gap: 12px; transform: translateY(100%); transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-price { display: flex; flex-direction: column; line-height: 1.2; }
.sticky-cta-price strong { font-size: 20px; font-weight: 900; color: var(--ink); letter-spacing: -0.5px; }
.sticky-cta-price span { font-size: 11px; color: var(--muted); }
.sticky-cta-btn { padding: 12px 20px; background: linear-gradient(135deg, var(--purple), var(--purple-dark)); color: white; border-radius: 10px; font-weight: 700; font-size: 14px; box-shadow: 0 4px 16px rgba(124,58,237,0.3); white-space: nowrap; }

/* OFFER */
.offer { background: linear-gradient(180deg, var(--surface) 0%, var(--surface-alt) 100%); position: relative; overflow: hidden; }
.offer::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 30%, rgba(124,58,237,0.08) 0%, transparent 50%); pointer-events: none; }
.offer-card { max-width: 560px; margin: 64px auto 0; background: var(--surface); border: 1px solid var(--line); border-radius: 24px; overflow: hidden; box-shadow: 0 30px 80px rgba(124,58,237,0.18), 0 8px 24px rgba(15,23,42,0.05); position: relative; }
.offer-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--purple), var(--cyan)); }
.offer-card-top { padding: 40px 40px 36px; text-align: center; }
.offer-anchor { display: flex; flex-direction: column; align-items: center; gap: 4px; margin-bottom: 24px; padding: 12px 20px; background: rgba(239,68,68,0.04); border: 1px dashed rgba(239,68,68,0.2); border-radius: 10px; }
.offer-anchor-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); }
.offer-anchor-price { font-size: 15px; font-weight: 600; color: #94a3b8; }
.offer-anchor-price s { color: #64748b; opacity: 0.85; }
.offer-price-tag { display: inline-block; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: var(--purple); margin-bottom: 4px; }
.offer-price { margin-bottom: 24px; position: relative; display: inline-block; }
.offer-price::after { content: ''; position: absolute; inset: -20px -40px; background: radial-gradient(ellipse at center, rgba(124,58,237,0.2) 0%, transparent 60%); filter: blur(20px); z-index: 0; pointer-events: none; }
.offer-price-amount { position: relative; z-index: 1; font-size: 88px; font-weight: 900; letter-spacing: -4px; line-height: 1; background: linear-gradient(135deg, var(--purple) 0%, var(--cyan) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: inline-block; }
.offer-price-amount small { font-size: 36px; vertical-align: top; margin-left: 4px; }
.offer-price-period { display: block; font-size: 14px; color: var(--muted); margin-top: 8px; font-weight: 500; position: relative; z-index: 1; }
/* Features grouped by category */
.offer-groups { margin: 8px 0 28px; display: flex; flex-direction: column; gap: 14px; text-align: left; }
.offer-group { padding: 16px 18px; background: var(--surface-alt); border: 1px solid var(--line); border-radius: 12px; }
.offer-group-title { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: var(--purple-dark); margin-bottom: 12px; }
.offer-group-title svg { width: 14px; height: 14px; flex-shrink: 0; }
.offer-features { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; column-gap: 16px; row-gap: 8px; }
.offer-features--single { grid-template-columns: 1fr; }
.offer-features li { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; color: var(--ink-soft); line-height: 1.5; }
.offer-features li .check { flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; border-radius: 50%; background: #10b981; color: #fff; font-weight: 800; font-size: 10px; margin-top: 2px; }
.offer-cta-wrap { padding: 20px; background: linear-gradient(135deg, rgba(124,58,237,0.05), rgba(6,182,212,0.03)); border: 1px solid rgba(124,58,237,0.12); border-radius: 14px; }
.offer-cta { width: 100%; }
.offer-fineprint { margin-top: 14px; font-size: 12px; color: var(--muted); margin-bottom: 0; }
@media (max-width: 640px) { .offer-features { grid-template-columns: 1fr; } .offer-price-amount { font-size: 72px; } }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* STORY SECTION — 2 cols with stat card */
.story-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 80px; align-items: center; }
.story-text { max-width: 560px; }
.story-visual { position: relative; }
.story-card { position: relative; background: #ffffff; border: 1px solid #e2e8f0; border-radius: 24px; padding: 40px 36px 32px; box-shadow: 0 20px 60px rgba(15,23,42,0.08); overflow: hidden; }
.story-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg,#0055a4 0%,#0055a4 33.33%,#ffffff 33.33%,#ffffff 66.66%,#ef4135 66.66%,#ef4135 100%); }
.story-card::after { content: ''; position: absolute; top: -40%; right: -30%; width: 70%; height: 140%; background: radial-gradient(ellipse at center, rgba(124,58,237,0.08) 0%, transparent 60%); pointer-events: none; }
.story-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 20px; margin-bottom: 28px; position: relative; z-index: 1; }
.story-stat { text-align: left; }
.story-stat-num { font-size: clamp(32px, 3.6vw, 44px); font-weight: 900; letter-spacing: -1.5px; line-height: 1; background: linear-gradient(135deg, var(--purple) 0%, var(--cyan) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 6px; }
.story-stat-label { font-size: 13px; font-weight: 600; color: var(--muted); letter-spacing: 0.2px; }
.story-card-footer { display: flex; align-items: center; gap: 10px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--purple-dark); font-size: 13px; font-weight: 600; position: relative; z-index: 1; }
.story-card-footer svg { flex-shrink: 0; color: var(--purple); }
@media (max-width: 1024px) { .story-grid { grid-template-columns: 1fr; gap: 48px; text-align: center; } .story-text { max-width: 720px; margin: 0 auto; } }
@media (max-width: 640px) { .story-stats { grid-template-columns: 1fr 1fr; gap: 20px 16px; } .story-card { padding: 32px 24px 24px; } }

/* SVG SEPARATORS between sections */
.sep { display: block; width: 100%; height: 80px; line-height: 0; position: relative; margin-top: -1px; margin-bottom: -1px; pointer-events: none; }
.sep svg { display: block; width: 100%; height: 100%; }
.sep--wave-down { background: transparent; }
.sep--wave-down svg path { fill: var(--surface); }
.sep--wave-up svg path { fill: var(--surface-alt); }
.sep--dark-to-light svg path { fill: var(--surface-alt); }
.sep--light-to-dark svg path { fill: #0f172a; }
@media (max-width: 768px) { .sep { height: 48px; } }

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 1024px) {
    .hero-content { gap: 48px; }
    .hero-float { display: none; }
    .steps-grid, .features-grid, .pain-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-card--featured { grid-column: span 2; }
    .showcase-grid { grid-template-columns: repeat(2, 1fr); }
    .solution-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Mobile */
@media (max-width: 768px) {
    .section { padding: 80px 20px; }
    .hero { padding: 100px 20px 60px; min-height: auto; }
    .hero-content { grid-template-columns: 1fr; gap: 32px; }
    .hero-visual { display: none; }
    .hero h1 { font-size: clamp(32px, 8vw, 42px); letter-spacing: -1px; }
    .hero .subtitle { font-size: 16px; margin-bottom: 32px; }
    .hero-ctas { flex-direction: column; }
    .hero-reassure { flex-direction: column; gap: 10px; margin-top: 20px; }
    .btn-primary, .btn-secondary { padding: 14px 28px; font-size: 15px; width: 100%; }
    .steps-grid, .features-grid, .showcase-grid, .pain-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 40px; }
    .feature-card--featured { grid-column: span 1; }
    .step-card, .pain-card { padding: 28px 24px; }
    .feature-card { padding: 24px; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 100%; gap: 16px; margin-top: 40px; }
    .price-amount { font-size: 40px; }
    .stats-bar { gap: 24px; padding: 40px 20px; }
    .stat-number { font-size: 36px; }
    .stat { min-width: 100px; }
    .cta-section { padding: 64px 20px; }
    .cta-section p { font-size: 16px; margin-bottom: 28px; }
    .faq-question { font-size: 15px; }
    .section-subtitle { font-size: 16px; }
    .problem-pivot { margin-top: 40px; }
    .compare-table { margin-top: 40px; }
    .compare-table th, .compare-table td { padding: 12px 10px; font-size: 12px; }
    .compare-col { font-size: 13px; padding: 14px 8px; }
    .compare-col img { width: 22px; height: 22px; }
    .compare-agency-icon { font-size: 20px; }
    .compare-val strong { font-size: 13px; }
    .compare-label { width: 36%; }

    /* Sticky CTA visible uniquement mobile */
    .sticky-cta { display: flex; padding-bottom: calc(12px + env(safe-area-inset-bottom)); }
    /* Add body padding to avoid last-section content hidden behind sticky bar */
    body { padding-bottom: 70px; }
    .footer { margin-bottom: -70px; padding-bottom: 90px; }
    .offer-card { margin-top: 40px; }
    .offer-card-top { padding: 36px 24px 28px; }
    .offer-price-amount { font-size: 56px; }
    .offer-price-amount small { font-size: 24px; }
    .offer-features li { font-size: 14px; }
    .sb-item { padding: 14px 16px; gap: 12px; }
    .sb-icon { width: 38px; height: 38px; font-size: 18px; }

    /* Mobile nav overlay */
    .nav-links {
        display: none;
        position: fixed; top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
        flex-direction: column; align-items: center; justify-content: center;
        gap: 28px; z-index: 99;
    }
    .nav-links.open { display: flex; }
    .nav-links a { font-size: 22px; font-weight: 600; color: var(--ink); }
    .nav-links .btn-nav { font-size: 18px; padding: 14px 40px; color: white; }
    .nav-toggle { display: block; z-index: 101; }
    .nav-close { display: block; position: absolute; top: 24px; right: 24px; background: none; border: none; color: var(--ink); font-size: 28px; cursor: pointer; z-index: 102; }

    /* Footer mobile */
    .footer-top { flex-direction: column; text-align: center; gap: 20px; }
    .footer-links { justify-content: center; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-legal { justify-content: center; }
}

/* Small mobile */
@media (max-width: 380px) {
    .hero h1 { font-size: 28px; }
    .hero-badge { font-size: 11px; padding: 4px 12px; }
    .stats-bar { gap: 16px; }
    .stat-number { font-size: 32px; }
    .stat-label { font-size: 12px; }
    .nav-inner { padding: 0 16px; }
    .section { padding: 60px 16px; }
    .price-card { padding: 28px 20px; }
    .compare-table th, .compare-table td { padding: 10px 6px; font-size: 11px; overflow-wrap: anywhere; word-break: break-word; }
    .compare-col { font-size: 12px; padding: 12px 6px; }
    .compare-col img { width: 20px; height: 20px; }
    .compare-val strong { font-size: 12px; }
    .compare-val-row { gap: 4px; }
    .compare-icon { width: 16px; height: 16px; font-size: 10px; }
    .compare-label { width: 32%; }
    .offer-card-top { padding: 32px 18px 24px; }
    .offer-group { padding: 12px 14px; }
    .offer-features li { font-size: 13px; }
}

/* ========== DEMO VIDEO SECTION ========== */
.demo-video-section {
    background: linear-gradient(180deg, #ffffff 0%, #fafaff 100%);
    position: relative;
    overflow: hidden;
}
.demo-video-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.demo-video-section .section-inner {
    position: relative;
    z-index: 1;
}
.demo-video-wrap {
    margin: 32px auto 0;
    max-width: 980px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 30px 80px -20px rgba(15, 23, 42, 0.25),
        0 12px 32px -8px rgba(124, 58, 237, 0.18);
    background: #0f172a;
    aspect-ratio: 16 / 9;
    position: relative;
}
.demo-video-player {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #0f172a;
}
@media (max-width: 768px) {
    .demo-video-wrap { margin-top: 24px; border-radius: 14px; }
}
