/* ═══════════════════════════════════════════
   Listen — Marketing Site Styles
   Brand: #EA5A2F (orange), #6366F1 (indigo),
          #10B981 (green), #FEFBF6 (warm bg)
   ═══════════════════════════════════════════ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:       #EA5A2F;
  --orange-light: #FF8A65;
  --orange-dark:  #D84315;
  --indigo:       #6366F1;
  --indigo-light: #818CF8;
  --indigo-dark:  #4F46E5;
  --green:        #10B981;
  --green-light:  #34D399;
  --gold:         #F59E0B;
  --red:          #EF4444;
  --bg:           #FEFBF6;
  --bg-dark:      #111827;
  --surface:      #FFFFFF;
  --grey-50:      #F9FAFB;
  --grey-100:     #F3F4F6;
  --grey-200:     #E5E7EB;
  --grey-300:     #D1D5DB;
  --grey-400:     #9CA3AF;
  --grey-500:     #6B7280;
  --grey-600:     #4B5563;
  --grey-700:     #374151;
  --grey-800:     #1F2937;
  --grey-900:     #111827;
  --font:         'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius:       14px;
  --radius-sm:    10px;
  --radius-lg:    20px;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:    0 4px 14px rgba(0,0,0,.08);
  --shadow-lg:    0 10px 40px rgba(0,0,0,.1);
  --shadow-xl:    0 20px 60px rgba(0,0,0,.12);
  --transition:   .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--grey-900);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── TYPOGRAPHY ── */
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 900; line-height: 1.1; letter-spacing: -.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; line-height: 1.15; letter-spacing: -.015em; }
h3 { font-size: 1.25rem; font-weight: 700; line-height: 1.3; }

.gradient-text {
  background: linear-gradient(135deg, var(--orange) 0%, var(--indigo) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  min-height: 2.3em;
  vertical-align: top;
}

/* ── BADGE ── */
.badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  background: linear-gradient(135deg, rgba(234,90,47,.12), rgba(99,102,241,.12));
  color: var(--orange);
}
.badge--dark {
  background: var(--grey-800);
  color: #fff;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--sm { padding: 8px 20px; font-size: .875rem; }
.btn--lg { padding: 14px 32px; font-size: 1rem; }
.btn--full { width: 100%; }
.btn--primary {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.btn--primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(234,90,47,.3);
}
.btn--outline {
  background: transparent;
  border-color: var(--grey-300);
  color: var(--grey-800);
}
.btn--outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}
.nav--scrolled {
  background: rgba(254,251,246,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo-img { height: 48px; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-size: .9rem;
  font-weight: 600;
  color: var(--grey-700);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--orange); }
.nav__links .btn--primary { color: #fff; }
.nav__links .btn--primary:hover { color: #fff; }
.nav__toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--grey-800); border-radius: 2px; transition: var(--transition); }

/* ── HERO ── */
.hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
}
.hero__bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape { position: absolute; border-radius: 50%; }
.shape--1 {
  width: 600px; height: 600px;
  top: -200px; right: -200px;
  background: radial-gradient(circle, rgba(234,90,47,.08), transparent 70%);
}
.shape--2 {
  width: 500px; height: 500px;
  bottom: -150px; left: -150px;
  background: radial-gradient(circle, rgba(99,102,241,.06), transparent 70%);
}
.shape--3 {
  width: 300px; height: 300px;
  top: 30%; left: 40%;
  background: radial-gradient(circle, rgba(16,185,129,.05), transparent 70%);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.hero__text { position: relative; z-index: 1; }
.hero__title { margin: 20px 0 24px; }
.hero__sub { font-size: 1.15rem; color: var(--grey-600); max-width: 500px; margin-bottom: 36px; line-height: 1.7; }
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* Laptop mockup */
.laptop-mockup {
  max-width: 448px;
  margin: 0 auto;
  animation: float 6s ease-in-out infinite;
}
.laptop-mockup__screen {
  background: #2d2d3f;
  border-radius: 12px 12px 0 0;
  padding: 8px 8px 0;
  border: 3px solid #555;
  border-bottom: none;
  box-shadow: var(--shadow-xl);
}
.laptop-mockup__img {
  width: 100%;
  display: block;
  border-radius: 6px 6px 0 0;
}
.laptop-mockup__base {
  height: 18px;
  background: linear-gradient(to bottom, #666, #444);
  border-radius: 0 0 6px 6px;
  position: relative;
  margin: 0 -12px;
  border: 3px solid #555;
  border-top: 1px solid #888;
}
.laptop-mockup__notch {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 5px;
  background: var(--grey-500);
  border-radius: 0 0 4px 4px;
}

/* Phone mockup */
.phone-mockup {
  position: relative;
  width: 280px;
  margin: 0 auto;
  background: #2d2d3f;
  border-radius: 40px;
  padding: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,.3), 0 0 0 3px #555;
}
.phone-mockup--feature { background: #2d2d3f; }
.phone-mockup__notch {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 24px;
  background: inherit;
  border-radius: 0 0 16px 16px;
  z-index: 2;
}
.phone-mockup__screen {
  width: 100%;
  border-radius: 28px;
  display: block;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.mockup__bar {
  padding: 12px 16px;
  display: flex;
  gap: 8px;
  background: var(--grey-100);
  border-bottom: 1px solid var(--grey-200);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot--red { background: #EF4444; }
.dot--yellow { background: #F59E0B; }
.dot--green { background: #10B981; }
.mockup__body { display: flex; min-height: 280px; }
.mockup__sidebar {
  width: 50px;
  background: var(--grey-800);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mockup__nav-item {
  width: 26px; height: 26px;
  border-radius: 8px;
  background: var(--grey-600);
  opacity: .4;
}
.mockup__nav-item.active { background: var(--orange); opacity: 1; }
.mockup__content { flex: 1; padding: 20px; }
.mockup__header-bar {
  height: 14px; width: 40%;
  background: var(--grey-200);
  border-radius: 4px;
  margin-bottom: 16px;
}
.mockup__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.mockup__card {
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  padding: 14px;
}
.mockup__card-header {
  font-size: .65rem;
  font-weight: 700;
  color: var(--grey-500);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 10px;
}
.gauge-svg { width: 90px; display: block; margin: 0 auto; }
.gauge-fill { animation: gauge-draw 2s ease-out forwards; stroke-dasharray: 160; stroke-dashoffset: 160; }
@keyframes gauge-draw { to { stroke-dashoffset: 0; } }
.gauge-label {
  display: block;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--green);
  margin-top: -8px;
}
.mockup__bars { display: flex; flex-direction: column; gap: 8px; }
.bar-row { display: flex; align-items: center; gap: 8px; }
.bar-label { font-size: .6rem; font-weight: 600; color: var(--grey-500); width: 48px; text-align: right; }
.bar { flex: 1; height: 8px; background: var(--grey-200); border-radius: 4px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 4px; animation: bar-grow 1.5s ease-out forwards; transform-origin: left; }
@keyframes bar-grow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.mockup__timeline { height: 10px; background: var(--grey-100); border-radius: 5px; overflow: hidden; }
.mockup__timeline-bar {
  height: 100%;
  width: 65%;
  background: linear-gradient(90deg, var(--green), var(--indigo));
  border-radius: 5px;
}

/* ── LOGOS STRIP ── */
.logos-strip {
  padding: 40px 0;
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
}
.logos-strip__label {
  text-align: center;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--grey-400);
  margin-bottom: 20px;
}
.logos-strip__items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.logo-pill {
  padding: 10px 20px;
  background: var(--surface);
  border: 1px solid var(--grey-200);
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--grey-700);
}

/* ── SECTIONS ── */
.section { padding: 100px 0; }
.section__header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section__header .badge { margin-bottom: 16px; }
.section__title { margin-bottom: 16px; }
.section__sub { font-size: 1.1rem; color: var(--grey-500); line-height: 1.7; }

/* ── PROBLEM ── */
.section--problem { background: var(--grey-900); color: #fff; }
.section--problem .section__sub { color: var(--grey-400); }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.problem-card {
  background: var(--grey-800);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
}
.problem-card:hover { transform: translateY(-6px); border-color: var(--orange); }
.problem-card__icon { font-size: 2rem; margin-bottom: 16px; }
.problem-card h3 { margin-bottom: 12px; color: #fff; }
.problem-card p { color: var(--grey-400); font-size: .95rem; line-height: 1.65; }

/* ── SOLUTION ── */
.solution-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.pillar {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
}
.pillar:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--orange); }
.pillar__number {
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: .8rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.pillar__icon-wrap {
  width: 56px; height: 56px;
  margin: 12px auto 20px;
  background: linear-gradient(135deg, rgba(234,90,47,.1), rgba(99,102,241,.1));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
}
.pillar__icon { width: 28px; height: 28px; color: var(--orange); }
.pillar h3 { margin-bottom: 12px; }
.pillar p { color: var(--grey-500); font-size: .95rem; }

/* ── HOW IT WORKS ── */
.section--how { background: var(--grey-50); }
.steps { max-width: 700px; margin: 0 auto; position: relative; }
.steps::before {
  content: '';
  position: absolute;
  left: 28px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange), var(--indigo), var(--green), var(--gold));
}
.step {
  display: flex;
  gap: 32px;
  padding: 32px 0;
  position: relative;
}
.step__icon-circle {
  width: 56px; height: 56px;
  min-width: 56px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--grey-50);
}
.step__icon-circle svg { width: 24px; height: 24px; }
.step__icon-circle--indigo { background: var(--indigo); }
.step__icon-circle--green { background: var(--green); }
.step__icon-circle--gold { background: var(--gold); }
.step__text h3 { margin-bottom: 8px; }
.step__text p { color: var(--grey-500); font-size: .95rem; line-height: 1.65; }

/* ── VALUE ── */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  background: var(--surface);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--indigo); }
.value-card__icon { font-size: 2rem; margin-bottom: 14px; }
.value-card h3 { margin-bottom: 10px; }
.value-card p { color: var(--grey-500); font-size: .9rem; line-height: 1.65; }

/* ── CUSTOMERS ── */
.section--customers { background: var(--grey-50); }
.customers-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 48px;
}
.customer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 40px;
  background: var(--surface);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  transition: var(--transition);
}
.customer-logo:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.customer-logo img { height: 72px; object-fit: contain; }

/* ── FEATURES ── */
.section--features { background: var(--grey-900); color: #fff; }
.section--features .section__sub { color: var(--grey-400); }
.features-list { display: flex; flex-direction: column; gap: 80px; }
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.feature-row--reverse { direction: rtl; }
.feature-row--reverse > * { direction: ltr; }
.feature-row__text h3 { font-size: 1.4rem; margin-bottom: 14px; }
.feature-row__text p { color: var(--grey-400); font-size: 1rem; line-height: 1.7; }

/* Feature previews */
.feature-preview {
  background: var(--grey-800);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  min-height: 220px;
}
.feature-preview--page { display: flex; flex-direction: column; gap: 14px; }
.fp-header { height: 18px; width: 60%; background: var(--grey-600); border-radius: 4px; }
.fp-map {
  height: 80px;
  background: linear-gradient(135deg, rgba(99,102,241,.15), rgba(16,185,129,.15));
  border-radius: var(--radius-sm);
  border: 1px solid rgba(99,102,241,.2);
}
.fp-timeline { display: flex; gap: 8px; }
.fp-phase { flex: 1; height: 10px; border-radius: 5px; }
.fp-phase--done { background: var(--green); }
.fp-phase--active { background: var(--orange); animation: pulse-phase 2s ease-in-out infinite; }
.fp-phase--next { background: var(--grey-600); }
@keyframes pulse-phase { 0%,100% { opacity: 1; } 50% { opacity: .5; } }

.feature-preview--ai { display: flex; flex-direction: column; gap: 20px; justify-content: center; }
.ai-wave svg { width: 100%; height: 60px; }
.wave-line { animation: wave-move 4s ease-in-out infinite; }
.wave-line--1 { animation-delay: 0s; }
.wave-line--2 { animation-delay: .5s; }
.wave-line--3 { animation-delay: 1s; }
@keyframes wave-move {
  0%, 100% { stroke-dashoffset: 0; }
  50% { stroke-dashoffset: 20; }
}
.ai-labels { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.ai-tag { padding: 6px 14px; border-radius: 100px; font-size: .75rem; font-weight: 700; }
.ai-tag--pos { background: rgba(16,185,129,.15); color: var(--green-light); }
.ai-tag--neu { background: rgba(99,102,241,.15); color: var(--indigo-light); }
.ai-tag--neg { background: rgba(239,68,68,.15); color: #FCA5A5; }

.feature-preview--channels { display: flex; gap: 12px; }
.channel-card {
  flex: 1;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 28px 16px;
  text-align: center;
  font-weight: 700;
  font-size: .85rem;
  display: flex; flex-direction: column; gap: 10px; align-items: center;
  transition: var(--transition);
}
.channel-card span { font-size: 1.8rem; }
.channel-card:hover { background: rgba(234,90,47,.1); border-color: var(--orange); }

/* ── PRICING ── */
.section--pricing { background: var(--grey-50); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1000px; margin: 0 auto; }
.pricing-card {
  position: relative;
  background: var(--surface);
  border: 2px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pricing-card--featured {
  border-color: var(--orange);
  box-shadow: var(--shadow-lg);
  transform: scale(1.04);
}
.pricing-card--featured:hover { transform: scale(1.04) translateY(-6px); }
.pricing-card__badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  padding: 6px 20px;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  white-space: nowrap;
}
.pricing-card__header { margin-bottom: 24px; }
.pricing-card__header h3 { font-size: 1.3rem; margin-bottom: 4px; }
.pricing-card__desc { color: var(--grey-500); font-size: .9rem; }
.pricing-card__price { margin-bottom: 28px; display: flex; align-items: baseline; gap: 2px; }
.price-currency { font-size: 1.4rem; font-weight: 700; color: var(--grey-500); }
.price-value { font-size: 3rem; font-weight: 900; letter-spacing: -.02em; }
.price-period { font-size: .9rem; color: var(--grey-500); font-weight: 500; }
.pricing-card__features {
  flex: 1;
  margin-bottom: 28px;
}
.pricing-card__features li {
  padding: 8px 0;
  font-size: .9rem;
  color: var(--grey-600);
  border-bottom: 1px solid var(--grey-100);
  position: relative;
  padding-left: 24px;
}
.pricing-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
}

/* ── CTA / CONTACT ── */
.section--cta { padding: 80px 0 100px; }
.cta-card {
  background: linear-gradient(135deg, var(--grey-900), #1a1f36);
  border-radius: var(--radius-lg);
  padding: 60px;
  color: #fff;
}
.cta-card__text { text-align: center; margin-bottom: 40px; }
.cta-card__text h2 { margin-bottom: 12px; }
.cta-card__text p { color: var(--grey-400); font-size: 1.1rem; }
.cta-form { max-width: 600px; margin: 0 auto; }
.cta-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.cta-input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: var(--font);
  font-size: .9rem;
  transition: var(--transition);
}
.cta-input::placeholder { color: var(--grey-500); }
.cta-input:focus { outline: none; border-color: var(--orange); background: rgba(255,255,255,.12); }
.cta-input--full { margin-bottom: 16px; }
select.cta-input { appearance: none; cursor: pointer; }
select.cta-input option { background: var(--grey-800); color: #fff; }
textarea.cta-input { resize: vertical; min-height: 80px; }

/* ── FOOTER ── */
.footer {
  background: var(--grey-900);
  color: var(--grey-400);
  padding: 60px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__logo { height: 32px; margin-bottom: 12px; filter: brightness(0) invert(1); }
.footer__brand p { font-size: .9rem; line-height: 1.6; }
.footer__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer__col h4 { color: #fff; font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.footer__col a { display: block; font-size: .9rem; margin-bottom: 10px; transition: color var(--transition); }
.footer__col a:hover { color: var(--orange); }
.footer__bottom {
  padding: 24px 0;
  text-align: center;
  font-size: .8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
/* ── MADE WITH LOVE STRIP ── */
.made-with-strip {
  padding: 32px 0;
  background: var(--bg);
  border-top: 1px solid var(--grey-200);
}
.made-with-strip__text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--grey-600);
}
.made-with-strip__text a { display: inline-flex; align-items: center; transition: opacity var(--transition); }
.made-with-strip__text a:hover { opacity: .7; }
.made-with-strip__logo { height: 60px; }

/* ── ANIMATIONS / INTERSECTION ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { max-width: 600px; margin: 0 auto; }
  .problem-grid,
  .solution-pillars,
  .value-grid,
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-row,
  .feature-row--reverse { grid-template-columns: 1fr; gap: 32px; direction: ltr; }
}

@media (max-width: 768px) {
  .nav__links { 
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(254,251,246,.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
  }
  .nav__links.open { display: flex; }
  .nav__links a { font-size: 1.2rem; }
  .nav__toggle { display: flex; z-index: 1001; }
  .hero { padding: 120px 0 60px; }
  .section { padding: 60px 0; }
  .problem-grid,
  .solution-pillars,
  .value-grid,
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-6px); }
  .cta-form__row { grid-template-columns: 1fr; }
  .cta-card { padding: 40px 24px; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__links { grid-template-columns: repeat(3, 1fr); }
  .feature-preview--channels { flex-direction: column; }
  .steps::before { left: 28px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .footer__links { grid-template-columns: 1fr 1fr; }
  .logos-strip__items { gap: 8px; }
  .logo-pill { font-size: .75rem; padding: 8px 14px; }
}
