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

:root {
  --blue:        #042DC2;
  --blue-dark:   #031ea8;
  --blue-light:  #DEE5FF;
  --blue-mid:    #c7d2fe;
  --teal-light:  #ecfdf5;
  --teal:        #059669;

  --gray-50:  #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-700: #334155;
  --gray-900: #0f172a;

  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow:    0 4px 12px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.04);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);

  --font: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: 180ms ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-900);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

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

.hide-mobile { display: inline; }


/* ═══════════════════════════════════════
   BUTTONS
════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), box-shadow var(--transition),
              transform var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--blue);
  color: #fff;
}
.btn-primary:hover { background: var(--blue-dark); box-shadow: 0 4px 12px rgba(37,99,235,.35); }

.btn-outline {
  background: var(--blue-light);
  color: var(--blue);
  border: 1.5px solid var(--blue-light);
}
.btn-outline:hover { background: #c7d2fe; border-color: #c7d2fe; }

.btn-sm   { padding: 8px 16px; font-size: 13px; }
.btn-full  { width: 100%; }
.btn-pill  { border-radius: 999px; }

.btn-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  transition: color var(--transition);
}
.btn-text:hover { color: var(--blue); }

.link-arrow {
  font-size: 13px;
  font-weight: 500;
  color: var(--blue);
  transition: color var(--transition);
}
.link-arrow:hover { color: var(--blue-dark); }


/* ═══════════════════════════════════════
   NAV
════════════════════════════════════════ */
.nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
}

/* Push page content below the fixed nav */
body { padding-top: 60px; }

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 60px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.nav-logo svg { display: block; flex-shrink: 0; }

.logo-text {
  font-size: 17px;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -.3px;
}

.logo-badge {
  font-size: 10px;
  font-weight: 600;
  color: var(--blue);
  background: var(--blue-light);
  border: 1px solid var(--blue-mid);
  padding: 1px 6px;
  border-radius: 20px;
  letter-spacing: .3px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav-links li a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-500);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-links li a:hover,
.nav-links li a.active {
  color: var(--gray-900);
  background: var(--gray-100);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}


/* ═══════════════════════════════════════
   SECTION HEADER (reusable)
════════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  letter-spacing: -.5px;
  color: var(--gray-900);
  margin-bottom: 12px;
}
.section-header p {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.7;
}


/* ═══════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  padding: 64px 0 0;
  background: #fff;
  overflow: hidden;
}

/* Centred text block */
.hero-text {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--blue);
  background: var(--blue-light);
  border: 1px solid var(--blue-mid);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .6; transform: scale(.85); }
}

.hero-icon {
  margin-bottom: 20px;
}

.hero-line-1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.2;
  color: #0F0F0F;
  margin-bottom: 4px;
}
.hero-line-2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.2;
  color: #757575;
  margin-bottom: 18px;
}

.hero-sub {
  font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  color: #757575;
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-ctas .btn { padding: 12px 28px; font-size: 15px; }

/* Full-width video below text */
.hero-video-wrap {
  margin: 0 -24px;
}

.video-chrome {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  box-shadow: 0 -4px 40px rgba(0,0,0,.10), 0 0 0 1px var(--gray-200);
  background: #0b111f;
}

.mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: #151c2e;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mockup-dot {
  width: 11px; height: 11px; border-radius: 50%;
}
.mockup-dot.red    { background: #ff5f57; }
.mockup-dot.yellow { background: #ffbd2e; }
.mockup-dot.green  { background: #28c840; }
.mockup-url {
  margin-left: 8px;
  font-size: 11px;
  color: rgba(255,255,255,.35);
  font-family: monospace;
}

/* Responsive 16:9 iframe */
.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Supporting payments on — between buttons and video */
.hero-trusted {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.trusted-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.trusted-logos {
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-logo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 700;
  color: #0F0F0F;
}
.trust-sep { color: var(--gray-300); }


/* ═══════════════════════════════════════
   AUDIENCES
════════════════════════════════════════ */
.audiences {
  padding: 56px 0 72px;
}

/* ── Trusted by strip ── */
.trusted-by-strip {
  text-align: center;
  margin-bottom: 36px;
}
.trusted-by-label {
  font-size: 14px;
  font-weight: 500;
  color: #757575;
  margin-bottom: 16px;
  font-family: 'Geist', sans-serif;
}
.trusted-by-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.trusted-by-logos svg {
  display: block;
  height: 22px;
  width: auto;
}

/* ── Quote bubble ── */
.quote-bubble {
  background: #EDE5FF;
  border-radius: 18px;
  padding: 24px 36px;
  max-width: 420px;
  margin: 0 auto 52px;
  text-align: center;
  position: relative;
  transform: rotate(-4deg);
  cursor: default;
  transition: transform 320ms cubic-bezier(.34,1.56,.64,1),
              box-shadow 320ms ease,
              background 320ms ease;
  box-shadow: 2px 4px 16px rgba(136,85,255,.12);
}
.quote-bubble:hover {
  transform: rotate(0deg) scale(1.04);
  box-shadow: 4px 8px 28px rgba(136,85,255,.22);
  background: #e4d8ff;
}
.quote-bubble p {
  font-size: 18px;
  color: #8855FF;
  line-height: 1.55;
  font-family: 'Nanum Pen Script', cursive;
}

/* ── Cards grid ── */
.audiences-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.audience-card {
  background: #F7F7F7;
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.audience-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #DEE5FF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 20px;
  flex-shrink: 0;
}

.audience-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0F0F0F;
  font-family: 'Geist', sans-serif;
  margin-bottom: 10px;
  line-height: 1.3;
}
.audience-card p {
  font-size: 16px;
  color: #757575;
  font-family: 'Geist', sans-serif;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 28px;
}
.audience-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.audience-actions .btn {
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 10px;
}
.audience-video-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 18px;
  background: #fff;
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  font-family: 'Geist', sans-serif;
  transition: background var(--transition);
}
.audience-video-btn:hover { background: var(--gray-100); }


/* ═══════════════════════════════════════
   FEATURES
════════════════════════════════════════ */
.features {
  padding: 80px 0;
  background: var(--gray-50);
}

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

/* Wide cards span 2 cols */
.feature-card--wide { grid-column: span 2; }

/* On a 3-col grid: row 1 is [wide, wide becomes its own cell]
   We want: [schedule 2col] [streaming 2col] — that's 4 cols effectively.
   Let's use a 6-col subgrid approach instead */
.features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.feature-card--wide { grid-column: span 3; }
.feature-card:not(.feature-card--wide) { grid-column: span 2; }

.feature-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.feature-card--blue {
  background: var(--blue-light);
  border-color: var(--blue-mid);
}
.feature-card--teal {
  background: var(--teal-light);
  border-color: #a7f3d0;
}

.feature-card--wide {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.feature-text { flex: 1; min-width: 0; }

.feature-icon {
  width: 36px; height: 36px;
  background: rgba(37,99,235,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 12px;
  flex-shrink: 0;
}
.feature-card--teal .feature-icon {
  background: rgba(5,150,105,.1);
  color: var(--teal);
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.65;
}

/* Feature previews */
.feature-preview {
  flex-shrink: 0;
  width: 180px;
}

.preview-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: 8px;
  margin-bottom: 6px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(37,99,235,.08);
  font-size: 12px;
}
.preview-row.active {
  background: #fff;
  border-color: rgba(37,99,235,.2);
  box-shadow: 0 2px 6px rgba(37,99,235,.1);
}
.preview-label { font-weight: 600; color: var(--gray-800, #1e293b); }

.preview-tag {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 20px;
}
.preview-tag.green  { background: #dcfce7; color: #15803d; }
.preview-tag.blue   { background: var(--blue-mid); color: var(--blue); }
.preview-tag.gray   { background: var(--gray-100); color: var(--gray-500); }

.stream-preview {
  min-width: 160px;
}
.stream-amount {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}
.stream-amount span {
  font-size: 11px;
  font-weight: 400;
  color: var(--gray-400);
}
.stream-bar {
  height: 6px;
  background: #a7f3d0;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 6px;
}
.stream-fill {
  height: 100%;
  background: var(--teal);
  border-radius: 3px;
  animation: stream-grow 3s ease-in-out infinite;
}
@keyframes stream-grow {
  0%   { width: 10%; }
  60%  { width: 62%; }
  100% { width: 62%; }
}
.stream-labels {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--gray-400);
}


/* ═══════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════ */
.testimonials {
  padding: 80px 0;
  background: #fff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.testimonial-card {
  background: #F0F3FF;
  border: none;
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-card p {
  font-size: 15px;
  color: #757575;
  line-height: 1.7;
  font-family: 'Geist', sans-serif;
  margin: 0;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
  padding-top: 8px;
}
.author-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--blue);
  font-family: 'Geist', sans-serif;
}
.author-role {
  font-size: 14px;
  font-weight: 700;
  color: #0F0F0F;
  font-family: 'Geist', sans-serif;
}

/* Twitter / X embed wrapper */
.tweet-embed-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.tweet-embed-wrap .twitter-tweet {
  margin: 0 auto !important;
}


/* ═══════════════════════════════════════
   PRICING
════════════════════════════════════════ */
.pricing {
  padding: 80px 0;
  background: var(--gray-50);
}

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

.pricing-card {
  background: #fff;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.pricing-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.pricing-card--featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}

.pricing-fee {
  font-size: 36px;
  font-weight: 900;
  color: var(--gray-900);
  letter-spacing: -1px;
  line-height: 1;
}
.pricing-fee-label {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: 0;
}

.pricing-desc {
  font-size: 13px;
  color: var(--gray-500);
  margin-top: -8px;
}

.pricing-examples {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pricing-examples li {
  font-size: 13px;
  color: var(--gray-600, #475569);
  padding-left: 16px;
  position: relative;
}
.pricing-examples li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--blue);
  font-weight: 700;
}

.pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--gray-400);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}


/* ═══════════════════════════════════════
   FAQ
════════════════════════════════════════ */
.faq {
  padding: 80px 0;
  background: #fff;
}
.faq .section-header { margin-bottom: 36px; }

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  background: #F0F3FF;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open {
  border-color: transparent;
  background: #F0F3FF;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: transparent;
  text-align: left;
  transition: background var(--transition);
}
.faq-question:hover { background: rgba(0,0,0,.02); }

.faq-icon-wrap {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 400;
  color: var(--blue);
  line-height: 1;
}
.faq-minus { display: none; }
.faq-plus  { display: block; }
.faq-item.open .faq-minus { display: block; }
.faq-item.open .faq-plus  { display: none; }

.faq-question > span:last-child {
  font-size: 15px;
  font-weight: 600;
  color: #000000;
}
.faq-item.open .faq-question > span:last-child { color: var(--blue); }

.faq-answer {
  display: none;
  padding: 0 20px 20px 56px;
}
.faq-answer.open { display: block; }

.faq-answer p {
  font-size: 14px;
  color: #757575;
  line-height: 1.75;
}

.faq-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.faq-bullets li {
  font-size: 14px;
  color: #757575;
  line-height: 1.7;
  padding-left: 16px;
  position: relative;
}
.faq-bullets li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: #757575;
}


/* ═══════════════════════════════════════
   REFERRAL CTA
════════════════════════════════════════ */
.referral {
  padding: 80px 0;
  background: #fff;
}

.referral-inner {
  text-align: center;
}
.referral-inner h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: #0F0F0F;
  margin-bottom: 10px;
  letter-spacing: -.5px;
}
.referral-inner p {
  font-size: 16px;
  color: #757575;
  margin-bottom: 28px;
}

.referral-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 320px;
  margin: 0 auto;
}
.referral-form input[name="_honey"] {
  display: none;
}
.referral-form input {
  width: 100%;
  padding: 13px 16px;
  border: none;
  border-radius: var(--radius);
  font-size: 14px;
  font-family: var(--font);
  color: var(--gray-900);
  background: #F0F0F0;
  outline: none;
  transition: box-shadow var(--transition);
}
.referral-form input::placeholder { color: #9ca3af; }
.referral-form input:focus {
  box-shadow: 0 0 0 2px var(--blue);
}
.referral-form .btn {
  width: 100%;
  padding: 13px;
  font-size: 15px;
}
.referral-status {
  min-height: 18px;
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
}
.referral-status.success {
  color: #047857;
}
.referral-status.error {
  color: #b91c1c;
}


/* ═══════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer {
  background: #fff;
  border-top: 1px solid var(--gray-200);
  padding: 48px 0 40px;
  color: #757575;
}

.footer-inner {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}

.footer-brand { flex: 1; max-width: 220px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.footer-logo .logo-text {
  font-size: 16px;
  font-weight: 800;
  color: #0F0F0F;
}
.footer-logo .logo-badge {
  background: #fff;
  border: 1px solid var(--gray-300);
  color: var(--gray-500);
}
.footer-brand p {
  font-size: 13px;
  color: #9ca3af;
  line-height: 1.5;
}

.footer-cols {
  display: flex;
  gap: 56px;
  flex: 1;
  justify-content: flex-end;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  color: #0F0F0F;
  margin-bottom: 16px;
  text-transform: none;
  letter-spacing: 0;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 14px;
  color: #757575;
  transition: color var(--transition);
}
.footer-col a:hover { color: #0F0F0F; }

.footer-bottom { display: none; }

/* No extra space below footer */
body { margin: 0; }
html, body { overflow-x: hidden; }


/* ═══════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .feature-card--wide { grid-column: span 4; }
  .feature-card:not(.feature-card--wide) { grid-column: span 2; }
  .feature-card--wide { flex-direction: column; }
  .feature-preview { width: 100%; }
}

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

  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }

  .hero { padding: 48px 0 0; }
  .hero-text { margin-bottom: 28px; }

  .audiences-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .audience-divider { height: 1px; width: 100%; align-self: auto; }
  .audience-card { padding: 0; }

  .features-grid {
    grid-template-columns: 1fr;
  }
  .feature-card--wide,
  .feature-card:not(.feature-card--wide) { grid-column: span 1; }

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

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

  .footer-inner { flex-direction: column; gap: 36px; }
  .footer-cols { flex-wrap: wrap; gap: 28px; }
  .footer-brand { max-width: 100%; }

  .referral-form { flex-direction: column; }
  .referral-form .btn { width: 100%; }
}

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

  .hero { padding: 40px 0 0; }
  .hero-heading { letter-spacing: -1px; }
  .hero-video-wrap { margin: 0 -16px; }

  .section-header { margin-bottom: 32px; }
  .features, .testimonials, .pricing, .faq, .referral { padding: 56px 0; }
}
