/* ── Hero ── */
.hero {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  background: var(--warm);
  padding: clamp(48px, 7vw, 96px) 0 0;
  overflow: visible;
}
.hero-grid {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 32px;
  align-items: center;
}
.hero-content {
  padding-right: 16px;
  padding-bottom: clamp(48px, 6vw, 80px);
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }
.hero-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  outline: none;
}
.hero-illustration img {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  outline: none;
  border: none;
}

/* ── Partners ── */
.partners { padding: 32px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.partners-inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.partner-scroll-wrap { display: flex; align-items: center; gap: 0; flex: 1; }
.partner-scroll-inner { display: flex; align-items: center; gap: 40px; }
.partner-clone { display: none; }

/* ── Problem ── */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 56px;
}
.problem-col {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  padding: 40px;
}
.problem-col + .problem-col { border-left: none; border-radius: 0 var(--r-md) var(--r-md) 0; }
.problem-col:first-child { border-radius: var(--r-md) 0 0 var(--r-md); }
.problem-stat {
  display: inline-block;
  background: rgba(252, 202, 70, 0.12);
  border: 1px solid rgba(252,202,70,0.25);
  border-radius: 4px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 600;
  padding: 4px 12px;
  margin-bottom: 16px;
}
.problem-bridge {
  margin-top: 48px;
  padding: 32px 40px;
  background: rgba(254,127,45,0.1);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}

/* ── Benefits ── */
.benefits-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 40px;
  margin-top: 64px;
}
.benefit {
  display: flex;
  flex-direction: column;
}
.benefit-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
  font-size: 22px;
  line-height: 1;
}
.benefit-icon svg {
  width: 24px; height: 24px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.benefit h3 { font-size: clamp(16px,1.4vw,19px); font-weight:700; margin-bottom:10px; color:var(--dark); }
.benefit p  { font-size:14.5px; color:var(--muted); line-height:1.68; }

/* ── Screenshot Carousel ── */
.screenshot-carousel {
  position: relative;
  margin-top: 56px;
  margin-left: calc(-1 * var(--pad));
  margin-right: calc(-1 * var(--pad));
}
.carousel-fade {
  position: relative;
  overflow: hidden;
}
.carousel-fade::before,
.carousel-fade::after {
  display: none;
}
.carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 24px var(--pad);
  align-items: flex-end;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-item {
  scroll-snap-align: center;
  flex-shrink: 0;
}
.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1.5px solid var(--border);
  transition: all 0.18s;
  font-size: 18px;
  color: var(--dark);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}
.carousel-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
/* 66% of phone--lg (300px) */
.carousel-item .phone { width: 198px; }

/* ── How it works ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.steps-grid::after {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, var(--yellow) 0%, transparent 100%);
  z-index: 0;
}
.step {
  padding: 0 28px;
  position: relative;
  z-index: 1;
}
.step:first-child { padding-left: 0; }
.step-num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 16px;
}
.step-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.step-body { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── Testimonial ── */
.testimonial-quote {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: var(--sv) 0;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 96px;
  color: var(--yellow);
  line-height: 0.6;
  margin-bottom: 24px;
  display: block;
  opacity: 0.7;
}
.quote-text {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 38px);
  font-weight: 600;
  line-height: 1.45;
  color: var(--white);
  margin-bottom: 32px;
}
.quote-attr { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.quote-name { font-size: 15px; font-weight: 600; color: var(--white); }
.quote-role { font-size: 13px; color: rgba(255,255,255,0.5); }

/* ── Final CTA ── */
.final-cta { text-align: center; padding: var(--sv) 0; }
.final-cta .heading-1 { max-width: 640px; margin: 0 auto 16px; }
.final-cta .lead { max-width: 440px; margin: 0 auto 36px; }
.final-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.reassure { font-size: 13px; color: var(--muted); margin-top: 16px; }

/* ── Responsive ── */
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-illustration { margin: 0 auto; max-width: 360px; }
  .hero-content { padding-right: 0; padding-bottom: 0; }
  .hero-ctas { justify-content: center; }
  /* Partners: single row with scrolling ticker */
  .partners-inner { flex-wrap: nowrap; gap: 16px; }
  .partner-scroll-wrap { overflow: hidden; flex-wrap: nowrap; min-width: 0; }
  .partner-clone { display: block; }
  .partner-scroll-inner {
    display: flex;
    gap: 40px;
    align-items: center;
    width: max-content;
    animation: partnerTicker 12s linear infinite;
  }
  @keyframes partnerTicker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  .problem-grid { grid-template-columns: 1fr; gap: 12px; }
  .problem-col { border-radius: var(--r-md) !important; border: 1px solid rgba(255,255,255,0.08) !important; }
  .benefits-row { grid-template-columns: 1fr 1fr; gap: 32px 28px; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps-grid::after { display: none; }
  .step { padding: 0; }
  .preview-phones .phone { transform: none !important; }
}
@media (max-width: 520px) {
  .steps-grid { grid-template-columns: 1fr; }
  /* Stats stay on one row — no override needed */
  /* Equal-width hero CTAs */
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
}
