/* ══════════════════════════════════════════════
   iAboutik — Landing Page
   Style: Light / BYS-inspired / Rubik + Nunito Sans
   ══════════════════════════════════════════════ */

:root {
  --primary: #7C3AED;
  --primary-dark: #5B21B6;
  --primary-light: #A78BFA;
  --cta: #E91E8C;
  --cta-dark: #C2185B;
  --green: #22C55E;
  --green-dark: #16A34A;
  --bg: #FFFFFF;
  --bg-light: #F9FAFB;
  --text: #111827;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  --border: #E5E7EB;
  --success: #22C55E;
  --danger: #EF4444;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --gradient-hero: linear-gradient(135deg, #F3E8FF 0%, #EDE9FE 30%, #CFFAFE 70%, #D1FAE5 100%);
  --gradient-cta: linear-gradient(135deg, #F3E8FF 0%, #EDE9FE 30%, #CFFAFE 70%, #D1FAE5 100%);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 { font-family: 'Rubik', sans-serif; }

a { text-decoration: none; color: inherit; transition: color 0.2s; }

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

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-cta {
  background: var(--cta);
  color: #fff;
  box-shadow: 0 4px 20px rgba(233,30,140,0.3);
}
.btn-cta:hover {
  background: var(--cta-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(233,30,140,0.4);
  color: #fff;
}

.btn-connexion {
  background: var(--primary);
  color: #fff !important;
  pointer-events: auto;
}

.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}
.btn-outline-dark:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; }

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Rubik', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
}
.logo strong { color: var(--primary); }
.logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--primary), #A855F7);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Rubik', sans-serif;
  font-weight: 900; font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}
.logo-icon.sm { width: 30px; height: 30px; font-size: 11px; border-radius: 8px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a { color: var(--text-muted); font-weight: 600; font-size: 0.95rem; }
.nav-links a:hover { color: var(--text); }
.nav-login { color: var(--text) !important; }
.nav-btn { padding: 10px 22px !important; font-size: 0.9rem !important; }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; border-radius: 2px; transition: 0.3s; }

/* ── Hero ── */
.hero {
  background: var(--gradient-hero);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.25);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.25); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0.1); }
}

.hero-text h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.highlight {
  background: linear-gradient(135deg, var(--primary), #A855F7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text > p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-cta { margin-bottom: 40px; }

.cta-sub {
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.stat { text-align: center; }
.stat-number {
  font-family: 'Rubik', sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 600; margin-top: 4px; }
.stat-sep { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

/* ── Hero Visual (Mockup) ── */
.hero-visual { position: relative; }

.mockup-browser {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.mockup-bar {
  background: #F3F4F6;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}
.mockup-dots { display: flex; gap: 6px; }
.mockup-dots span {
  width: 10px; height: 10px; border-radius: 50%;
}
.mockup-dots span:nth-child(1) { background: #FC6058; }
.mockup-dots span:nth-child(2) { background: #FEC02F; }
.mockup-dots span:nth-child(3) { background: #2ACA3E; }
.mockup-url {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 3px 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  flex: 1;
  text-align: center;
}

.mockup-screen { padding: 0; }

.mockup-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid #F3E8FF;
}
.m-logo-box {
  width: 24px; height: 24px;
  background: linear-gradient(135deg, #7C3AED, #A855F7);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 900; color: #fff;
  font-family: 'Rubik', sans-serif;
  flex-shrink: 0;
}
.m-logo-text { font-size: 0.75rem; font-weight: 800; color: #7C3AED; flex: 1; }
.m-search {
  width: 100px; height: 18px;
  background: #F3F4F6;
  border-radius: 50px;
  border: 1px solid #E5E7EB;
}

.mockup-hero-strip {
  background: linear-gradient(135deg, #7C3AED 0%, #A855F7 50%, #EC4899 100%);
  padding: 16px 12px;
  text-align: center;
}
.m-tag {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: #fff;
  border-radius: 50px;
  padding: 2px 10px;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.m-title {
  font-family: 'Rubik', sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 3px;
}
.m-sub { font-size: 0.6rem; color: rgba(255,255,255,0.8); }

.mockup-chips {
  display: flex;
  gap: 5px;
  padding: 8px 10px;
  background: #fff;
  border-bottom: 1px solid #F3F4F6;
}
.m-chip {
  padding: 2px 8px;
  border-radius: 50px;
  font-size: 0.6rem;
  font-weight: 700;
  border: 1px solid #E5E7EB;
  color: var(--text-muted);
}
.m-chip.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.mockup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px 10px 10px;
  background: #FAF5FF;
}
.m-card {
  background: #fff;
  border-radius: 8px;
  padding: 8px;
  border: 1px solid #E9D5FF;
  position: relative;
}
.m-img {
  width: 100%;
  height: 50px;
  background: linear-gradient(135deg, #EDE9FE, #FCE7F3);
  border-radius: 6px;
  margin-bottom: 6px;
}
.m-img.pink { background: linear-gradient(135deg, #FCE7F3, #FEF3C7); }
.m-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: #FEF3C7;
  color: #92400E;
  font-size: 0.5rem;
  font-weight: 800;
  padding: 1px 5px;
  border-radius: 3px;
}
.m-comm {
  background: #22C55E;
  color: #fff;
  font-size: 0.5rem;
  font-weight: 800;
  padding: 2px 5px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 4px;
}
.m-name { font-size: 0.6rem; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.m-price { font-size: 0.7rem; font-weight: 900; font-family: 'Rubik', sans-serif; color: var(--text); margin-bottom: 4px; }
.m-btn {
  background: #22C55E;
  color: #fff;
  font-size: 0.55rem;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: 5px;
  text-align: center;
}

/* Floating badges */
.float-badge {
  position: absolute;
  background: #fff;
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--border);
  white-space: nowrap;
}
.float-1 { top: -16px; right: -16px; color: var(--green-dark); }
.float-2 { bottom: -16px; left: -16px; color: var(--text); }
.float-2 strong { color: var(--primary); }

/* ── Platforms Bar ── */
.platforms-bar {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  text-align: center;
}
.platforms-label {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.platforms-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.platform-logo {
  font-family: 'Rubik', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 6px 18px;
  border-radius: 50px;
  border: 2px solid var(--border);
  color: var(--text-muted);
}
.platform-logo.clickbank { border-color: #FCD34D; color: #B45309; background: #FFFBEB; }
.platform-logo.tpe { border-color: #93C5FD; color: #1D4ED8; background: #EFF6FF; }
.platform-logo.ebay { border-color: #FCA5A5; color: #B91C1C; background: #FEF2F2; }
.platform-logo.more { color: var(--text-light); border-style: dashed; }
.platform-sep { color: var(--border); font-size: 1.2rem; }

/* ── Shared Section Styles ── */
.section-white { background: #fff; }
.bg-light { background: var(--bg-light); }

section { padding: 96px 0; }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  background: #EDE9FE;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title-lg {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 56px;
  text-align: center;
  line-height: 1.7;
}

.text-purple { color: var(--primary); }

/* ── How it works ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.step-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.step-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-icon-box {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--primary), #A855F7);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: #fff;
}

.step-num {
  font-family: 'Rubik', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary-light);
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.step-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.steps-cta { text-align: center; }

/* ── Feature Split ── */
.feature-split { overflow: hidden; }

.split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-inner.reverse { direction: rtl; }
.split-inner.reverse > * { direction: ltr; }

.split-text .section-label { margin-bottom: 12px; }

.split-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.split-text > p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

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

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text);
}

.feat-check {
  width: 22px; height: 22px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Split visuals */
.split-visual {
  border-radius: 24px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.bg-purple-soft { background: linear-gradient(135deg, #EDE9FE 0%, #F3E8FF 100%); }
.bg-green-soft { background: linear-gradient(135deg, #D1FAE5 0%, #ECFDF5 100%); }
.bg-yellow-soft { background: linear-gradient(135deg, #FEF3C7 0%, #FFFBEB 100%); }

/* Feature mockup (boutique preview) */
.feat-mockup {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  width: 100%;
  border: 1px solid var(--border);
}

.fm-header {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  border-bottom: 1px solid #F3E8FF;
  background: rgba(255,255,255,0.9);
}
.fm-logo-sq {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, #7C3AED, #A855F7);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 900; color: #fff;
  font-family: 'Rubik', sans-serif;
}
.fm-name { font-size: 0.85rem; font-weight: 800; color: var(--primary); }

.fm-hero-strip {
  background: linear-gradient(135deg, #7C3AED, #A855F7, #EC4899);
  padding: 14px;
  text-align: center;
}
.fm-hero-title { font-family: 'Rubik', sans-serif; font-size: 0.85rem; font-weight: 900; color: #fff; }
.fm-hero-sub { font-size: 0.65rem; color: rgba(255,255,255,0.8); margin-top: 3px; }

.fm-chips-row { display: flex; gap: 6px; padding: 8px 12px; background: #fff; border-bottom: 1px solid #F3F4F6; }
.fm-chip { padding: 3px 10px; border-radius: 50px; font-size: 0.65rem; font-weight: 700; border: 1px solid var(--border); color: var(--text-muted); }
.fm-chip.on { background: var(--primary); border-color: var(--primary); color: #fff; }

.fm-cards-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 10px 12px; background: #FAF5FF; }
.fm-card { background: #fff; border-radius: 8px; padding: 8px; border: 1px solid #E9D5FF; }
.fm-img { width: 100%; height: 40px; border-radius: 5px; background: linear-gradient(135deg, #EDE9FE, #FCE7F3); margin-bottom: 5px; }
.fm-img.teal { background: linear-gradient(135deg, #CFFAFE, #A7F3D0); }
.fm-img.rose { background: linear-gradient(135deg, #FCE7F3, #FEF3C7); }
.fm-card-name { font-size: 0.55rem; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.fm-card-price { font-size: 0.65rem; font-weight: 900; font-family: 'Rubik', sans-serif; color: var(--text); }

/* Analytics mockup */
.feat-analytics {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: 20px;
  width: 100%;
  border: 1px solid var(--border);
}
.ana-title { font-size: 0.85rem; font-weight: 800; color: var(--text); margin-bottom: 16px; }
.ana-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 20px; }
.ana-stat { background: var(--bg-light); border-radius: 10px; padding: 10px; text-align: center; border: 1px solid var(--border); }
.ana-stat.green { background: #ECFDF5; border-color: #A7F3D0; }
.ana-val { font-family: 'Rubik', sans-serif; font-size: 1.1rem; font-weight: 900; color: var(--text); }
.ana-stat.green .ana-val { color: var(--green-dark); }
.ana-lab { font-size: 0.65rem; color: var(--text-muted); font-weight: 700; margin-top: 2px; }
.ana-chart { display: flex; align-items: flex-end; gap: 6px; height: 60px; padding: 0 4px; }
.ana-bar { flex: 1; background: linear-gradient(to top, #7C3AED, #A78BFA); border-radius: 4px 4px 0 0; min-height: 8px; }

/* Platforms visual */
.platforms-visual { display: flex; flex-direction: column; gap: 12px; width: 100%; }
.pv-card {
  background: #fff;
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.clickbank-card { border-color: #FCD34D; }
.tpe-card { border-color: #93C5FD; }
.ebay-card { border-color: #FCA5A5; }
.pv-logo { font-family: 'Rubik', sans-serif; font-weight: 900; font-size: 0.95rem; color: var(--text); }
.pv-comm { font-size: 0.85rem; color: var(--text-muted); }
.pv-comm strong { color: var(--green-dark); font-size: 1.1rem; }
.pv-products { font-size: 0.75rem; color: var(--text-light); font-weight: 600; }

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.testi-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow-md); }
.testi-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(124,58,237,0.08);
}

.testi-stars { color: #F59E0B; font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 14px; }

.testi-card > p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

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

.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E0E7FF, #C7D2FE);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.9rem;
  color: #3730A3;
  flex-shrink: 0;
}
.testi-avatar.purple { background: linear-gradient(135deg, #EDE9FE, #DDD6FE); color: var(--primary-dark); }
.testi-avatar.green { background: linear-gradient(135deg, #D1FAE5, #A7F3D0); color: var(--green-dark); }

.testi-author strong { font-size: 0.95rem; display: block; color: var(--text); }
.testi-role { font-size: 0.8rem; color: var(--text-muted); }

/* ── Pricing ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
  align-items: start;
}

.pricing-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pricing-card.popular {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(124,58,237,0.08);
}

.popular-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), #A855F7);
  color: #fff;
  padding: 4px 20px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.plan-name {
  font-family: 'Rubik', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}

.plan-price {
  font-family: 'Rubik', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  margin: 12px 0 4px;
}
.plan-price span { font-size: 1rem; font-weight: 500; color: var(--text-muted); }

.plan-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 24px; }

.plan-features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.check {
  color: var(--green);
  font-weight: 900;
  font-size: 0.8rem;
}

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

/* ── Register ── */
.register-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.register-left h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  line-height: 1.15;
}

.register-left > p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.register-perks { display: flex; flex-direction: column; gap: 12px; }
.perk {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}
.perk-icon { font-size: 1.2rem; }

.register-box {
  background: var(--bg-light);
  border: 2px solid var(--border);
  border-radius: 24px;
  padding: 40px;
}

.register-box h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 24px;
}

.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group input {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border);
  background: #fff;
  color: var(--text);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.1);
}
.slug-preview {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 700;
  margin-top: 5px;
}
.form-error {
  color: var(--danger);
  font-size: 0.82rem;
  margin-top: 4px;
  display: none;
}
.form-message {
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  font-weight: 600;
  display: none;
}
.form-message.success { display: block; background: #D1FAE5; color: var(--green-dark); border: 1px solid #A7F3D0; }
.form-message.error { display: block; background: #FEE2E2; color: #B91C1C; border: 1px solid #FECACA; }

.form-legal {
  text-align: center;
  margin-top: 12px;
  color: var(--text-light);
  font-size: 0.8rem;
}
.form-legal a { color: var(--primary); font-weight: 700; }

/* ── Pre-footer CTA ── */
.prefooter-cta {
  background: var(--gradient-cta);
  padding: 80px 0;
  text-align: center;
}
.prefooter-cta h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.5px;
  margin-bottom: 28px;
  line-height: 1.25;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.highlight-yellow {
  background: #FEF08A;
  padding: 0 8px;
  border-radius: 4px;
  color: #854D0E;
}
.prefooter-cta p {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ── Footer ── */
.footer {
  background: var(--gradient-cta);
  border-top: 1px solid rgba(124,58,237,0.1);
  padding: 60px 0 0;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Rubik', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.footer-logo strong { color: var(--primary); }

.footer-brand > p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
  max-width: 260px;
}
.footer-email {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-block;
}
.footer-email:hover { color: var(--primary-dark); }

.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: var(--text-muted); font-weight: 600; }
.footer-bottom-links a:hover { color: var(--primary); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-text h1 { font-size: 2.8rem; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .float-1, .float-2 { display: none; }
}

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

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 24px;
    gap: 8px;
    box-shadow: var(--shadow-md);
  }

  section { padding: 64px 0; }

  .steps-grid { grid-template-columns: 1fr; }
  .split-inner, .split-inner.reverse { grid-template-columns: 1fr; direction: ltr; }
  .split-visual { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .register-wrap { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats { gap: 16px; }
  .stat-number { font-size: 1.4rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { flex-direction: column; gap: 8px; }
}

@media (max-width: 480px) {
  .hero { padding: 110px 0 60px; }
  .hero-text h1 { font-size: 2.1rem; }
  .platforms-logos { gap: 8px; }
  .platform-logo { font-size: 0.8rem; padding: 4px 12px; }
  .footer-grid { grid-template-columns: 1fr; }
}
