/* ==============================================
   Qwikr THEME — Unified stylesheet
   ============================================== */

/* 1. RESET & VARIABLES */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
    --purple: #635bff; --purple-dark: #4f46e5; --blue: #0073e6; --teal: #0891b2; --green: #059669;
    --text: #0a2540; --text-secondary: #425466; --muted: #697386;
    --border: #e3e8ef; --bg: #f6f9fc; --white: #ffffff;
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; color: var(--text); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }

/* 2. NAVIGATION */
nav { display: flex; align-items: center; justify-content: space-between; padding: 0 2.5rem; height: 64px; background: rgba(255,255,255,0.92); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(0,0,0,0.06); }
nav.fixed-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; }
nav.sticky-nav { position: sticky; top: 0; z-index: 50; }
.nav-brand { font-size: 1.25rem; font-weight: 800; letter-spacing: -0.03em; background: linear-gradient(135deg, var(--purple), var(--blue)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav-links { display: flex; gap: 0.375rem; align-items: center; }
.nav-links a { color: var(--text-secondary); font-size: 0.875rem; font-weight: 500; padding: 0.5rem 0.875rem; border-radius: 6px; transition: all 0.15s; }
.nav-links a:hover { color: var(--text); background: rgba(0,0,0,0.04); }

/* 3. BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.7rem 1.5rem; border-radius: 8px; font-weight: 600; font-size: 0.925rem; cursor: pointer; transition: all 0.15s; border: none; white-space: nowrap; }
.btn-primary { background: var(--purple); color: white; box-shadow: 0 1px 3px rgba(99,91,255,0.4), 0 4px 12px rgba(99,91,255,0.2); }
.btn-primary:hover { background: #5750e8; box-shadow: 0 2px 8px rgba(99,91,255,0.5), 0 8px 20px rgba(99,91,255,0.3); transform: translateY(-1px); }
.btn-lg { padding: 0.875rem 2rem; font-size: 1rem; border-radius: 10px; }
.btn-xl { padding: 1rem 2.25rem; font-size: 1.05rem; border-radius: 10px; }
.btn-white { background: white; color: var(--purple); font-weight: 700; box-shadow: 0 2px 8px rgba(0,0,0,0.12); }
.btn-white:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.18); transform: translateY(-1px); }
.btn-ghost-white { background: rgba(255,255,255,0.09); color: white; border: 1px solid rgba(255,255,255,0.22); backdrop-filter: blur(8px); }
.btn-ghost-white:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.38); transform: translateY(-1px); }
.btn-nav-primary { background: var(--purple) !important; color: white !important; box-shadow: 0 1px 3px rgba(99,91,255,0.4); }
.btn-nav-primary:hover { background: #5750e8 !important; transform: translateY(-1px); }

/* 4. HERO */
.hero { padding: 148px 2rem 120px; text-align: center; background: linear-gradient(160deg, #060f1e 0%, #0e0730 40%, #090924 100%); position: relative; overflow: hidden; }
.hero.compact { padding: 6rem 2rem 5rem; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 100% 70% at 50% -5%, rgba(99,91,255,0.55) 0%, transparent 62%), radial-gradient(ellipse 50% 50% at 88% 55%, rgba(0,115,230,0.28) 0%, transparent 60%), radial-gradient(ellipse 40% 50% at 12% 70%, rgba(124,114,255,0.2) 0%, transparent 60%); pointer-events: none; }
.hero.compact::before { background: radial-gradient(ellipse 80% 70% at 50% -10%, rgba(99,91,255,0.5) 0%, transparent 65%); }
.hero-grid { position: absolute; inset: 0; opacity: 0.03; background-image: linear-gradient(rgba(255,255,255,1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,1) 1px, transparent 1px); background-size: 48px 48px; }
.hero-content { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.65rem; background: rgba(99,91,255,0.18); border: 1px solid rgba(99,91,255,0.38); color: #c7d2fe; padding: 0.4rem 1.15rem; border-radius: 99px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; margin-bottom: 2.5rem; backdrop-filter: blur(8px); }
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: #818cf8; animation: pulse 2.2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.45; transform: scale(0.75); } }
.hero h1 { font-size: clamp(2.9rem, 7vw, 5.5rem); font-weight: 900; line-height: 1.04; letter-spacing: -0.048em; color: white; margin: 0 auto 1.6rem; }
.hero.compact h1 { font-size: clamp(2.2rem, 5vw, 3.75rem); line-height: 1.08; margin-bottom: 1.1rem; }
.hero h1 .grad { background: linear-gradient(135deg, #a5b4fc 0%, #818cf8 40%, #60a5fa 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: 1.2rem; color: rgba(255,255,255,0.58); max-width: 600px; margin: 0 auto 1.5rem; font-weight: 400; line-height: 1.8; }
.hero p { font-size: 1.1rem; color: rgba(255,255,255,0.52); max-width: 480px; margin: 0 auto; line-height: 1.78; }
.hero-outcomes { display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-outcome { font-size: 0.8rem; color: rgba(255,255,255,0.38); display: flex; align-items: center; gap: 0.45rem; font-weight: 500; }
.hero-outcome::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: #818cf8; flex-shrink: 0; }
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-note { font-size: 0.775rem; color: rgba(255,255,255,0.22); letter-spacing: 0.03em; }
.hero-proof { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-top: 3.5rem; flex-wrap: wrap; }
.hero-proof-avatars { display: flex; }
.hero-proof-avatars span { width: 32px; height: 32px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.2); background: linear-gradient(135deg, #635bff, #0073e6); display: flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 700; color: white; margin-left: -8px; }
.hero-proof-avatars span:first-child { margin-left: 0; }
.hero-proof-text { font-size: 0.78rem; color: rgba(255,255,255,0.38); }
.hero-proof-text strong { color: rgba(255,255,255,0.6); }

/* 5. STATS STRIP */
.stats-strip { background: linear-gradient(90deg, #0a1628, #0f0a2e 50%, #0a1628); border-top: 1px solid rgba(99,91,255,0.2); border-bottom: 1px solid rgba(99,91,255,0.2); padding: 1.5rem 2rem; }
.stats-inner { max-width: 1000px; margin: 0 auto; display: flex; justify-content: center; flex-wrap: wrap; }
.stat-item { text-align: center; padding: 0.75rem 2.75rem; border-right: 1px solid rgba(255,255,255,0.07); }
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 1.65rem; font-weight: 900; letter-spacing: -0.04em; line-height: 1; margin-bottom: 0.3rem; background: linear-gradient(135deg, #a5b4fc, #60a5fa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.35); }
.stat-sublabel { font-size: 0.65rem; color: rgba(165,180,252,0.45); margin-top: 0.15rem; }

/* 6. LOGOS */
.logos { padding: 2.75rem 2rem; background: var(--bg); border-bottom: 1px solid var(--border); }
.logos-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.logos p { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 1.5rem; }
.logos-row { display: flex; gap: 3rem; justify-content: center; align-items: center; flex-wrap: wrap; }
.logos-row span { font-size: 0.975rem; font-weight: 700; color: #b0bac8; letter-spacing: -0.02em; }

/* 7. PAIN SECTION */
.pain { padding: 7rem 2rem; background: white; }
.pain-inner { max-width: 1100px; margin: 0 auto; }
.pain-header { text-align: center; margin-bottom: 4rem; }
.pain-title { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 800; letter-spacing: -0.038em; line-height: 1.18; color: var(--text); margin-bottom: 1rem; }
.pain-sub { font-size: 1.05rem; color: var(--text-secondary); max-width: 540px; margin: 0 auto; line-height: 1.75; }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.pain-item { background: white; padding: 2rem 1.75rem; }
.pain-icon { font-size: 1.5rem; margin-bottom: 0.875rem; }
.pain-item h3 { font-size: 0.925rem; font-weight: 700; letter-spacing: -0.02em; color: var(--text); margin-bottom: 0.4rem; }
.pain-item p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.65; }
.pain-pivot { text-align: center; margin-top: 3.5rem; }
.pain-pivot p { font-size: 1.15rem; font-weight: 700; color: var(--text); letter-spacing: -0.025em; margin-bottom: 0.5rem; }
.pain-pivot span { font-size: 0.9rem; color: var(--text-secondary); }

/* 8. SECTION SHARED */
section { padding: 7rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--purple); margin-bottom: 0.875rem; }
.section-title { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 800; letter-spacing: -0.038em; line-height: 1.18; margin-bottom: 1rem; color: var(--text); }
.section-sub { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.75; }
.section-header { text-align: center; margin-bottom: 4.5rem; }
.section-header .section-sub { max-width: 560px; margin: 0 auto; }

/* 9. FEATURES */
.features { background: var(--bg); }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.feature-card { background: white; padding: 2rem 1.75rem; transition: background 0.2s; }
.feature-card:hover { background: #fafaff; }
.feature-icon { width: 40px; height: 40px; border-radius: 10px; background: linear-gradient(135deg, #ede9fe, #dbeafe); display: flex; align-items: center; justify-content: center; font-size: 1.15rem; margin-bottom: 1rem; }
.feature-card h3 { font-size: 0.95rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.4rem; }
.feature-card p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.65; }
.feature-card .f-time { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.68rem; font-weight: 700; color: #059669; background: #dcfce7; padding: 0.2rem 0.6rem; border-radius: 99px; margin-top: 0.75rem; }

/* 10. TIME SAVINGS */
.time-savings { padding: 7rem 2rem; background: linear-gradient(160deg, #060f1e 0%, #0e0730 50%, #090924 100%); position: relative; overflow: hidden; }
.time-savings::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 90% 60% at 50% 100%, rgba(99,91,255,0.35), transparent 65%); pointer-events: none; }
.ts-inner { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; }
.ts-header { text-align: center; margin-bottom: 4rem; }
.ts-header .section-label { color: #a5b4fc; }
.ts-header .section-title { color: white; }
.ts-header .section-sub { color: rgba(255,255,255,0.5); max-width: 480px; margin: 0 auto; }
.ts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.ts-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); border-radius: 16px; padding: 2rem 1.5rem; text-align: center; }
.ts-before { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.3); margin-bottom: 0.75rem; }
.ts-task { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.55; margin-bottom: 1.25rem; min-height: 2.5rem; }
.ts-arrow { font-size: 1.5rem; color: rgba(255,255,255,0.15); margin-bottom: 1.25rem; }
.ts-after { font-size: 1.6rem; font-weight: 900; letter-spacing: -0.04em; background: linear-gradient(135deg, #a5b4fc, #34d399); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1.1; margin-bottom: 0.4rem; }
.ts-after-label { font-size: 0.78rem; color: rgba(255,255,255,0.38); font-weight: 500; }

/* 11. AI SECTION */
.ai-section { background: white; }
.ai-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.ai-card { background: var(--bg); border: 1px solid var(--border); border-radius: 16px; padding: 2.5rem; transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s; }
.ai-card:hover { box-shadow: 0 16px 52px rgba(99,91,255,0.1); transform: translateY(-3px); border-color: rgba(99,91,255,0.3); }
.ai-card-icon { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, var(--purple), var(--blue)); display: flex; align-items: center; justify-content: center; font-size: 1.35rem; margin-bottom: 1.25rem; box-shadow: 0 4px 16px rgba(99,91,255,0.35); }
.ai-card h3 { font-size: 1.1rem; font-weight: 800; letter-spacing: -0.03em; color: var(--text); margin-bottom: 0.6rem; }
.ai-card .ai-save { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.72rem; font-weight: 700; color: #059669; background: #dcfce7; border: 1px solid #bbf7d0; padding: 0.25rem 0.75rem; border-radius: 99px; margin-bottom: 0.875rem; }
.ai-card p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.78; margin-bottom: 1rem; }
.ai-card-example { background: white; border: 1px solid var(--border); border-radius: 10px; padding: 1rem 1.25rem; font-size: 0.8rem; color: var(--muted); line-height: 1.6; font-style: italic; position: relative; }
.ai-card-example::before { content: '"'; font-size: 2rem; color: var(--purple); opacity: 0.3; position: absolute; top: -0.5rem; left: 0.75rem; font-family: Georgia, serif; }
.ai-tag { display: inline-flex; align-items: center; gap: 0.4rem; background: rgba(99,91,255,0.08); border: 1px solid rgba(99,91,255,0.2); color: var(--purple); font-size: 0.72rem; font-weight: 600; padding: 0.25rem 0.75rem; border-radius: 99px; margin-top: 1.25rem; }

/* 12. COMPARISON (STACK VS Qwikr) */
.comparison { padding: 7rem 2rem; background: var(--bg); }
.comparison-inner { max-width: 1000px; margin: 0 auto; }
.compare-header { text-align: center; margin-bottom: 4rem; }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.compare-col { border-radius: 16px; overflow: hidden; }
.compare-col-head { padding: 1.5rem 2rem; font-weight: 800; font-size: 1rem; letter-spacing: -0.02em; }
.compare-col.old .compare-col-head { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; border-bottom: none; border-radius: 16px 16px 0 0; }
.compare-col.new .compare-col-head { background: linear-gradient(135deg, var(--purple), var(--blue)); color: white; border-radius: 16px 16px 0 0; }
.compare-col.new .compare-col-head span { font-size: 0.72rem; font-weight: 600; opacity: 0.8; display: block; margin-top: 0.15rem; }
.compare-items { border: 1px solid var(--border); border-top: none; border-radius: 0 0 16px 16px; overflow: hidden; }
.compare-col.old .compare-items { border-color: #fecaca; }
.compare-col.new .compare-items { border-color: rgba(99,91,255,0.3); }
.compare-item { padding: 0.95rem 2rem; font-size: 0.875rem; display: flex; align-items: center; gap: 0.75rem; border-bottom: 1px solid var(--border); }
.compare-col.old .compare-item { border-bottom-color: #fecaca; color: var(--text-secondary); background: white; }
.compare-col.new .compare-item { border-bottom-color: rgba(99,91,255,0.12); background: #fafaff; color: var(--text); font-weight: 500; }
.compare-item:last-child { border-bottom: none; }
.compare-item .ci-icon { font-size: 0.875rem; flex-shrink: 0; }
.compare-price-row { padding: 1.5rem 2rem; display: flex; align-items: baseline; gap: 0.5rem; }
.compare-col.old .compare-price-row { background: #fff5f5; }
.compare-col.new .compare-price-row { background: #f5f4ff; }
.compare-price { font-size: 2.25rem; font-weight: 900; letter-spacing: -0.05em; }
.compare-col.old .compare-price { color: #dc2626; }
.compare-col.new .compare-price { color: var(--purple); }
.compare-price-sub { font-size: 0.8rem; color: var(--muted); font-weight: 500; }

/* 13. CHANNELS */
.channels { background: white; }
.channel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.5rem; }
.channel-card { border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem; display: flex; align-items: center; gap: 1rem; transition: all 0.18s; }
.channel-card:hover { border-color: var(--purple); box-shadow: 0 4px 20px rgba(99,91,255,0.12); transform: translateY(-2px); }
.channel-icon { width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; }
.channel-card h4 { font-size: 0.925rem; font-weight: 700; margin-bottom: 0.2rem; }
.channel-card p { font-size: 0.8rem; color: var(--muted); line-height: 1.45; }

/* 14. DROPSHIP */
.dropship { background: var(--bg); }
.dropship-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.dropship-card { background: white; border: 1px solid var(--border); border-radius: 14px; padding: 2rem; transition: box-shadow 0.2s, transform 0.2s; }
.dropship-card:hover { box-shadow: 0 12px 36px rgba(0,0,0,0.09); transform: translateY(-2px); }
.dropship-num { font-size: 2rem; font-weight: 900; background: linear-gradient(135deg, var(--purple), var(--blue)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; letter-spacing: -0.04em; margin-bottom: 0.75rem; }
.dropship-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.dropship-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.65; }
.dropship-card .ds-save { font-size: 0.75rem; font-weight: 600; color: var(--purple); margin-top: 0.75rem; }

/* 15. SPLIT LAYOUTS */
.split-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; max-width: 1100px; margin: 0 auto; }
.split-inner.reverse { direction: rtl; }
.split-inner.reverse > * { direction: ltr; }
.split-visual { background: linear-gradient(145deg, #0a2540 0%, #1a1044 100%); border-radius: 18px; padding: 2.5rem; box-shadow: 0 32px 64px rgba(10,37,64,0.3), 0 0 0 1px rgba(255,255,255,0.05); position: relative; overflow: hidden; }
.split-visual::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(99,91,255,0.28), transparent 70%); }
.split-visual-inner { position: relative; z-index: 1; }
.mock-bar { display: flex; gap: 0.4rem; margin-bottom: 1.5rem; }
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-dot:nth-child(1) { background: #ff5f57; } .mock-dot:nth-child(2) { background: #febc2e; } .mock-dot:nth-child(3) { background: #28c840; }
.mock-line { height: 8px; border-radius: 4px; background: rgba(255,255,255,0.09); margin-bottom: 0.55rem; }
.mock-line.accent { background: rgba(99,91,255,0.5); } .mock-line.accent2 { background: rgba(96,165,250,0.4); }
.mock-line.w-3 { width: 30%; } .mock-line.w-5 { width: 50%; } .mock-line.w-7 { width: 70%; } .mock-line.w-9 { width: 90%; }
.mock-row { display: flex; gap: 0.75rem; margin-bottom: 0.75rem; align-items: center; }
.mock-thumb { width: 36px; height: 36px; border-radius: 6px; background: rgba(165,180,252,0.15); flex-shrink: 0; }
.mock-text { flex: 1; }
.split-list { list-style: none; margin-top: 1.75rem; display: flex; flex-direction: column; gap: 0.85rem; }
.split-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.925rem; color: var(--text-secondary); line-height: 1.5; }
.check-icon { width: 18px; height: 18px; border-radius: 50%; background: linear-gradient(135deg, var(--purple), var(--blue)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.split-list li strong { color: var(--text); }

/* 16. HOW IT WORKS */
.how { background: var(--bg); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; margin-top: 1.5rem; }
.steps::before { content: ''; position: absolute; top: 27px; left: 15%; right: 15%; height: 1px; background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent); }
.step { text-align: center; padding: 0 1.25rem; }
.step-num { width: 54px; height: 54px; border-radius: 50%; margin: 0 auto 1.5rem; background: linear-gradient(135deg, var(--purple), var(--blue)); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.1rem; color: white; box-shadow: 0 4px 20px rgba(99,91,255,0.38); position: relative; z-index: 1; }
.step h3 { font-size: 0.975rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.5rem; }
.step p { font-size: 0.84rem; color: var(--text-secondary); line-height: 1.65; }
.step .step-time { font-size: 0.72rem; font-weight: 700; color: var(--purple); margin-top: 0.5rem; }

/* 17. TESTIMONIALS */
.testimonials { background: white; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card { background: var(--bg); border: 1px solid var(--border); border-radius: 16px; padding: 2rem; transition: box-shadow 0.2s, transform 0.2s; }
.testimonial-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.09); transform: translateY(-3px); }
.testimonial-stars { color: #f59e0b; font-size: 0.85rem; letter-spacing: 0.05em; margin-bottom: 1rem; }
.testimonial-result { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #059669; background: #dcfce7; border: 1px solid #bbf7d0; padding: 0.25rem 0.75rem; border-radius: 99px; display: inline-block; margin-bottom: 1rem; }
.testimonial-quote { font-size: 0.925rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.875rem; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--purple), var(--blue)); display: flex; align-items: center; justify-content: center; font-size: 0.875rem; font-weight: 700; color: white; flex-shrink: 0; }
.testimonial-name { font-size: 0.875rem; font-weight: 700; }
.testimonial-role { font-size: 0.78rem; color: var(--muted); }

/* 18. PRICING CARDS */
.pricing { background: var(--bg); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pricing-inner { max-width: 1100px; margin: 0 auto; }
.plan-card { background: white; border: 1px solid var(--border); border-radius: 16px; padding: 2.5rem 2rem; position: relative; transition: box-shadow 0.2s, transform 0.2s; }
.plan-card:hover { box-shadow: 0 16px 52px rgba(0,0,0,0.1); transform: translateY(-3px); }
.plan-card.popular { border-color: var(--purple); box-shadow: 0 0 0 1px var(--purple), 0 20px 56px rgba(99,91,255,0.15); background: linear-gradient(180deg, #faf9ff 0%, white 100%); }
.popular-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--purple), var(--blue)); color: white; font-size: 0.68rem; font-weight: 700; padding: 0.3rem 1.1rem; border-radius: 99px; text-transform: uppercase; letter-spacing: 0.1em; white-space: nowrap; }
.plan-name { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 0.75rem; }
.plan-price { font-size: 3.25rem; font-weight: 900; letter-spacing: -0.05em; line-height: 1; color: var(--text); margin-bottom: 0.25rem; }
.plan-price sup { font-size: 1.1rem; font-weight: 700; vertical-align: top; margin-top: 0.6rem; display: inline-block; }
.plan-price sub { font-size: 0.875rem; font-weight: 500; color: var(--muted); }
.plan-desc { font-size: 0.85rem; color: var(--text-secondary); margin: 0.75rem 0 1.75rem; padding-bottom: 1.75rem; border-bottom: 1px solid var(--border); line-height: 1.6; }
.plan-tagline { font-size: 0.85rem; color: var(--text-secondary); margin: 0.8rem 0 1.75rem; padding-bottom: 1.75rem; border-bottom: 1px solid var(--border); line-height: 1.6; }
.plan-section-label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 0.7rem; margin-top: 1.25rem; }
.plan-features { list-style: none; margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.7rem; }
.plan-features li { font-size: 0.875rem; color: var(--text-secondary); display: flex; align-items: flex-start; gap: 0.65rem; line-height: 1.5; }
.plan-features li.highlight { color: var(--text); font-weight: 500; }
.tick { width: 16px; height: 16px; border-radius: 50%; background: linear-gradient(135deg, var(--purple), var(--blue)); flex-shrink: 0; margin-top: 2px; }
.tick-ai { width: 16px; height: 16px; border-radius: 50%; background: linear-gradient(135deg, #7c3aed, #0891b2); flex-shrink: 0; margin-top: 2px; }
.plan-cta { display: block; width: 100%; text-align: center; padding: 0.85rem; border-radius: 10px; font-weight: 600; font-size: 0.9rem; transition: all 0.15s; cursor: pointer; }
.plan-cta-primary { background: var(--purple); color: white; box-shadow: 0 2px 8px rgba(99,91,255,0.35); }
.plan-cta-primary:hover { background: #5750e8; transform: translateY(-1px); }
.plan-cta-outline { background: transparent; color: var(--purple); border: 1.5px solid #d1d5db; }
.plan-cta-outline:hover { border-color: var(--purple); background: rgba(99,91,255,0.04); }
.trial-note { text-align: center; margin-top: 2rem; font-size: 0.82rem; color: var(--muted); }

/* 19. GUARANTEE ROW */
.guarantee-row { display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap; margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid var(--border); }
.guarantee-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: var(--muted); font-weight: 500; }
.guarantee-item::before { content: '✓'; color: var(--purple); font-weight: 800; }

/* 20. PLANS PAGE: FULL COMPARE TABLE & FAQ */
.billing-toggle { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 3.5rem; font-size: 0.875rem; font-weight: 600; color: var(--text-secondary); }
.save-badge { background: linear-gradient(135deg, rgba(99,91,255,0.12), rgba(0,115,230,0.12)); border: 1px solid rgba(99,91,255,0.25); color: var(--purple); font-size: 0.72rem; font-weight: 700; padding: 0.2rem 0.65rem; border-radius: 99px; letter-spacing: 0.04em; }
.compare { padding: 6rem 2rem; background: white; }
.compare-inner { max-width: 1000px; margin: 0 auto; }
.compare h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; letter-spacing: -0.038em; text-align: center; margin-bottom: 0.6rem; }
.compare .sub { text-align: center; font-size: 1rem; color: var(--text-secondary); margin-bottom: 3rem; }
.compare-table { border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.compare-table table { width: 100%; border-collapse: collapse; }
.compare-table thead th { padding: 1.25rem 1.5rem; text-align: center; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); background: var(--bg); border-bottom: 1px solid var(--border); }
.compare-table thead th:first-child { text-align: left; }
.compare-table thead th.hl { color: var(--purple); background: #fafaff; }
.compare-table tbody tr:not(:last-child) td { border-bottom: 1px solid var(--border); }
.compare-table tbody td { padding: 1rem 1.5rem; font-size: 0.875rem; text-align: center; color: var(--text-secondary); }
.compare-table tbody td:first-child { text-align: left; color: var(--text); font-weight: 500; }
.compare-table tbody tr.group-header td { background: #f8f9fc; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); padding: 0.65rem 1.5rem; }
.compare-table tbody tr:hover td { background: #fafbff; }
.compare-table .hl-col { background: #fafaff; }
.yes { color: var(--purple); font-size: 1.1rem; font-weight: 700; }
.no { color: #d1d5db; font-size: 1.1rem; }
.ai-yes { font-size: 0.8rem; font-weight: 600; color: #7c3aed; }
.faq { padding: 6rem 2rem; background: var(--bg); }
.faq-inner { max-width: 720px; margin: 0 auto; }
.faq-inner h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; letter-spacing: -0.038em; margin-bottom: 0.75rem; }
.faq-inner .sub { font-size: 1rem; color: var(--text-secondary); margin-bottom: 3rem; }
.faq-item { border-bottom: 1px solid var(--border); padding: 1.6rem 0; }
.faq-item:first-of-type { border-top: 1px solid var(--border); }
.faq-item h3 { font-size: 1rem; font-weight: 700; letter-spacing: -0.022em; margin-bottom: 0.65rem; color: var(--text); }
.faq-item p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.75; }

/* 21. CTA BAND */
.cta-band { padding: 9rem 2rem; background: linear-gradient(150deg, #060f1e 0%, #0e0730 50%, #090924 100%); text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 75% 75% at 50% 115%, rgba(99,91,255,0.45), transparent 65%), radial-gradient(ellipse 45% 45% at 80% 12%, rgba(96,165,250,0.18), transparent 60%); }
.cta-inner { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(2rem, 4.5vw, 3.75rem); font-weight: 900; color: white; letter-spacing: -0.048em; line-height: 1.08; margin-bottom: 1.25rem; }
.cta-band p { font-size: 1.15rem; color: rgba(255,255,255,0.5); margin: 0 auto 2.5rem; max-width: 500px; line-height: 1.75; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-trust { margin-top: 1.75rem; font-size: 0.775rem; color: rgba(255,255,255,0.25); letter-spacing: 0.03em; }

/* 22. FOOTER */
footer { background: #060f1e; padding: 5rem 2rem 2.5rem; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 3rem; margin-bottom: 4rem; }
.footer-brand-col .brand { font-size: 1.3rem; font-weight: 800; letter-spacing: -0.03em; background: linear-gradient(135deg, #a5b4fc, #60a5fa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 0.65rem; }
.footer-brand-col p { font-size: 0.84rem; color: rgba(255,255,255,0.28); max-width: 230px; line-height: 1.7; }
.footer-links { display: flex; gap: 4.5rem; flex-wrap: wrap; }
.footer-col h4 { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.35); margin-bottom: 1.1rem; }
.footer-col a { display: block; font-size: 0.875rem; color: rgba(255,255,255,0.38); margin-bottom: 0.65rem; transition: color 0.15s; }
.footer-col a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.75rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.2); }

/* 23. RESPONSIVE */
@media (max-width: 1024px) {
    .feature-grid { grid-template-columns: repeat(3, 1fr); }
    .ts-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .ai-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
    .steps::before { display: none; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .split-inner { grid-template-columns: 1fr; gap: 3rem; }
    .split-inner.reverse { direction: ltr; }
    .channel-grid { grid-template-columns: repeat(2, 1fr); }
    .dropship-grid { grid-template-columns: 1fr; }
    .testimonial-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .stat-item { padding: 0.75rem 1.5rem; }
    .pain-grid { grid-template-columns: repeat(2, 1fr); }
    .compare-grid { grid-template-columns: 1fr; }
    .ts-grid { grid-template-columns: repeat(2, 1fr); }
    .compare-table { overflow-x: auto; }
}
@media (max-width: 640px) {
    .feature-grid { grid-template-columns: 1fr; }
    nav { padding: 0 1.25rem; }
    .nav-links a:not(.btn-nav-primary) { display: none; }
    .channel-grid { grid-template-columns: 1fr; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); padding: 1rem 2rem; }
    .stat-item:last-child { border-bottom: none; }
    .pain-grid { grid-template-columns: 1fr; }
    .ts-grid { grid-template-columns: 1fr; }
    .compare-grid { grid-template-columns: 1fr; }
}
