/* ================================================================
   Creative Loop — Marketing Site CSS (Orange Theme)
   ================================================================ */

/* ── Reset & Tokens ───────────────────────────────────────────── */
:root {
  --bg: #ffffff;
  --bg-alt: #f8f9fb;
  --bg-dark: #0f172a;
  --card: #ffffff;
  --elevated: #f1f3f9;
  --border: #e5e7eb;
  --border-light: #f3f4f6;

  --accent: #7c3aed;
  --accent2: #6366f1;
  --accent-light: #ede9fe;
  --accent-hover: #6d28d9;
  --accent-glow: rgba(124,58,237,0.15);
  --accent-gradient: linear-gradient(135deg, #7c3aed, #6366f1);

  --text: #1a1a2e;
  --text2: #6b7280;
  --text3: #9ca3af;
  --text-white: #ffffff;

  --success: #10b981;
  --warn: #f59e0b;
  --err: #ef4444;

  --r: 10px;
  --r-lg: 14px;
  --r-xl: 20px;

  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--text);
}
a { color: var(--accent); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; display: block; }

/* ── Utility ──────────────────────────────────────────────────── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-gradient {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Animations ───────────────────────────────────────────────── */
.anim { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.anim.visible { opacity: 1; transform: translateY(0); }
.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.2s; }
.anim-delay-3 { transition-delay: 0.3s; }
.anim-delay-4 { transition-delay: 0.4s; }

/* ── Top Nav ──────────────────────────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 14px 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: padding 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.site-nav.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border-light);
}
.site-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1140px; margin: 0 auto; padding: 0 24px;
}
.site-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.site-logo img { width: 34px; height: 34px; object-fit: contain; }
.site-logo-text { font-size: 18px; font-weight: 700; color: var(--text); letter-spacing: -0.02em; }
.site-nav-links { display: flex; align-items: center; gap: 6px; }
.site-nav-link {
  color: var(--text2);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.15s;
  text-decoration: none;
}
.site-nav-link:hover { color: var(--text); background: var(--bg-alt); }

/* ── Mega Menu ────────────────────────────────────────────────── */
.mega-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.mega-trigger svg.chevron {
  width: 14px; height: 14px;
  transition: transform 0.2s;
}
.mega-trigger:hover svg.chevron { transform: rotate(180deg); }

.mega-panel {
  display: none;
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
  min-width: 540px;
  box-shadow: var(--shadow-lg);
  z-index: 200;
}
.mega-panel::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0; right: 0;
  height: 16px;
}
.mega-trigger:hover .mega-panel { display: block; }
.mega-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.mega-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  border-radius: var(--r);
  text-decoration: none;
  transition: background 0.15s;
}
.mega-item:hover { background: var(--bg-alt); }
.mega-item-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mega-item-icon svg { width: 20px; height: 20px; stroke-width: 2; fill: none; }
.mega-item-text strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  display: block;
  margin-bottom: 2px;
}
.mega-item-text span {
  font-size: 12.5px;
  color: var(--text2);
  line-height: 1.4;
}

/* ── Nav CTA Button ───────────────────────────────────────────── */
.site-nav-cta {
  padding: 9px 22px;
  background: var(--accent);
  color: var(--text-white) !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.15s;
  text-decoration: none;
  margin-left: 8px;
}
.site-nav-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px var(--accent-glow);
  color: var(--text-white) !important;
}
.site-nav-login {
  color: var(--text2) !important;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  text-decoration: none;
  transition: color 0.15s;
}
.site-nav-login:hover { color: var(--text) !important; }

/* ── Mobile Menu ──────────────────────────────────────────────── */
.site-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.15s;
}
.site-mobile-toggle:hover { background: var(--bg-alt); }
.site-mobile-menu {
  display: none;
  position: fixed;
  top: 60px; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(16px);
  z-index: 99;
  padding: 32px 24px;
  overflow-y: auto;
}
.site-mobile-menu.open { display: block; }
.site-mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 17px;
  color: var(--text);
  border-bottom: 1px solid var(--border-light);
  text-decoration: none;
  font-weight: 500;
}
.site-mobile-section {
  padding: 10px 0;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text3);
}

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: var(--text-white);
  box-shadow: 0 2px 8px var(--accent-glow);
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--accent-glow);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
}
.btn-white {
  background: var(--text-white);
  color: var(--text);
}
.btn-white:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,255,255,0.2);
}
.btn-lg { padding: 16px 36px; font-size: 16px; border-radius: 12px; }
.btn svg { width: 18px; height: 18px; }

/* ── Badge ────────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.badge-orange, .badge-purple {
  background: var(--accent-light);
  color: var(--accent);
}

/* ── Hero ─────────────────────────────────────────────────────── */
.site-hero {
  padding: 140px 0 80px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  position: relative;
  overflow: hidden;
}
.site-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(124,58,237,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.site-hero-inner {
  position: relative;
  z-index: 1;
}
.site-hero-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.site-hero-logo {
  height: 48px;
  width: auto;
  margin: 0 auto 8px;
}
.site-hero h1 {
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 700;
  margin: 20px 0 18px;
}
.site-hero p {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--text2);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.site-hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero with image variant */
.site-hero--with-image { padding: 140px 0 60px; }
.site-hero--with-image .site-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.site-hero--with-image .site-hero-content {
  text-align: left;
  margin: 0;
}
.site-hero--with-image .site-hero-content .site-hero-logo { margin: 0 0 8px; }
.site-hero--with-image .site-hero-btns { justify-content: flex-start; }
.site-hero--with-image .site-hero p {
  margin-left: 0;
  margin-right: 0;
}
.site-hero-visual {
  position: relative;
}
.site-hero-img {
  width: 100%;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

/* ── Section ──────────────────────────────────────────────────── */
.section { padding: 100px 0; }
.section-alt { background: var(--bg-alt); }
.section-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  margin-bottom: 14px;
}
.section-desc {
  font-size: 17px;
  color: var(--text2);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* ── Feature Grid ─────────────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.feature-card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature-card-icon svg {
  width: 24px; height: 24px;
  stroke-width: 2;
  fill: none;
}
.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 14.5px;
  color: var(--text2);
  line-height: 1.65;
}

/* ── Feature Row (alternating) ────────────────────────────────── */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0;
}
.feature-row + .feature-row { border-top: 1px solid var(--border-light); }
.feature-row.reverse .feature-row-text { order: 2; }
.feature-row.reverse .feature-row-visual { order: 1; }
.feature-row-text h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 14px;
}
.feature-row-text p {
  font-size: 16px;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 20px;
}
.feature-row-visual {
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-alt);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
.feature-row-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-row-visual .visual-with-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  width: 100%;
  height: 100%;
  position: relative;
}
.feature-row-visual .visual-with-logo img.feature-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}
.feature-row-visual .visual-with-logo img.feature-logo {
  position: relative;
  z-index: 1;
  height: 64px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
}
.check-list {
  list-style: none;
}
.check-list li {
  padding: 6px 0;
  font-size: 15px;
  color: var(--text2);
  display: flex;
  align-items: center;
  gap: 10px;
}
.check-list svg {
  width: 18px; height: 18px;
  stroke: var(--success);
  fill: none;
  flex-shrink: 0;
}

/* ── Stats Bar ────────────────────────────────────────────────── */
.stats-bar {
  padding: 56px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border-light);
}
.stats-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-item .stat-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.stat-item .stat-label {
  font-size: 13px;
  color: var(--text3);
  margin-top: 4px;
}

/* ── Testimonial ──────────────────────────────────────────────── */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
}
.testimonial-card p {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: var(--accent);
}
.testimonial-author strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  display: block;
}
.testimonial-author span {
  font-size: 12.5px;
  color: var(--text3);
}

/* ── CTA Section ──────────────────────────────────────────────── */
.site-cta {
  padding: 100px 0;
  background: var(--bg-alt);
}
.site-cta-box {
  background: linear-gradient(135deg, #0f172a, #1e1b4b);
  border-radius: var(--r-xl);
  padding: 72px 48px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.site-cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(124,58,237,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.site-cta-box h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-white);
  position: relative;
}
.site-cta-box p {
  color: #94a3b8;
  margin-bottom: 36px;
  font-size: 17px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 36px;
  position: relative;
}

/* ── Footer ───────────────────────────────────────────────────── */
.site-footer {
  padding: 56px 0 40px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.site-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.site-footer-brand { max-width: 260px; }
.site-footer-brand .site-logo { margin-bottom: 14px; }
.site-footer-brand p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.6;
}
.site-footer-col h4 {
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 16px;
}
.site-footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text2);
  padding: 5px 0;
  transition: color 0.15s;
  text-decoration: none;
}
.site-footer-col a:hover { color: var(--accent); }
.site-footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text3);
}
.site-footer-bottom a { color: var(--text3); text-decoration: none; }
.site-footer-bottom a:hover { color: var(--accent); }

/* ── Channel Icons ────────────────────────────────────────────── */
.channel-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.channel-icon svg { width: 28px; height: 28px; fill: currentColor; }
.channel-icon-sm { width: 40px; height: 40px; border-radius: 10px; }
.channel-icon-sm svg { width: 20px; height: 20px; }

/* ── Channel-specific colors ──────────────────────────────────── */
.bg-facebook { background: #e8f0fe; color: #1877F2; }
.bg-instagram { background: #fde8f0; color: #E4405F; }
.bg-linkedin { background: #e0f0ff; color: #0A66C2; }
.bg-pinterest { background: #fde8e8; color: #BD081C; }
.bg-tiktok { background: #f0f0f0; color: #000000; }
.bg-youtube { background: #fee8e8; color: #FF0000; }
.bg-x { background: #f0f0f0; color: #000000; }

/* ── Mockup Visuals ───────────────────────────────────────────── */
.visual-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
}
.visual-placeholder svg {
  width: 56px; height: 56px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  opacity: 0.6;
}
.visual-placeholder span {
  font-size: 14px;
  color: var(--text3);
  font-weight: 500;
}

/* ── Use Cases / Audience cards ───────────────────────────────── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.audience-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.audience-card-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.audience-card-icon svg {
  width: 32px; height: 32px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
}
.audience-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.audience-card p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.6;
}

/* ── Pricing (quick reference on marketing pages) ─────────────── */
.pricing-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
}
.pricing-mini-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.2s;
}
.pricing-mini-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-md);
}
.pricing-mini-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.pricing-mini-card h3 { font-size: 18px; margin-bottom: 4px; }
.pricing-mini-card .price { font-size: 40px; font-weight: 800; margin: 12px 0 4px; color: var(--text); }
.pricing-mini-card .price span { font-size: 15px; font-weight: 400; color: var(--text2); }
.pricing-mini-card .period { font-size: 13px; color: var(--text3); margin-bottom: 20px; }

/* ── FAQ ──────────────────────────────────────────────────────── */
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border-light);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font);
}
.faq-question svg {
  width: 20px; height: 20px;
  stroke: var(--text3);
  fill: none;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer-inner {
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--text2);
  line-height: 1.7;
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .mega-panel { min-width: 420px; }
  .site-footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .site-footer-brand { grid-column: 1 / -1; max-width: 100%; }
}

@media (max-width: 768px) {
  .site-nav-links .site-nav-link,
  .site-nav-links .mega-trigger,
  .site-nav-links .site-nav-login { display: none; }
  .site-mobile-toggle { display: block; }
  .site-hero { padding: 110px 0 60px; }
  .site-hero--with-image .site-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .site-hero--with-image .site-hero-content { text-align: center; }
  .site-hero--with-image .site-hero-btns { justify-content: center; }
  .site-hero--with-image .site-hero p { margin-left: auto; margin-right: auto; }
  .site-hero--with-image .site-hero-content .site-hero-logo { margin: 0 auto 8px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; gap: 32px; }
  .feature-row.reverse .feature-row-text { order: 1; }
  .feature-row.reverse .feature-row-visual { order: 2; }
  .testimonials { grid-template-columns: 1fr; }
  .stats-bar-inner { gap: 32px; }
  .pricing-mini { grid-template-columns: 1fr; max-width: 360px; }
  .audience-grid { grid-template-columns: 1fr; }
  .site-footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .site-footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .site-hero-btns { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .site-footer-grid { grid-template-columns: 1fr; }
}

/* ── Legal Pages ───────────────────────────────────────────── */
.legal-content { line-height: 1.8; }
.legal-content h2 { font-size: 1.25rem; font-weight: 700; margin: 36px 0 12px; color: var(--text); }
.legal-content h3 { font-size: 1.05rem; font-weight: 600; margin: 24px 0 8px; color: var(--text); }
.legal-content p { margin-bottom: 12px; color: var(--text2); }
.legal-content ul { margin: 0 0 16px 20px; color: var(--text2); }
.legal-content li { margin-bottom: 6px; }
.legal-content a { color: var(--accent); text-decoration: none; }
.legal-content a:hover { text-decoration: underline; }
