/* MySyara — landing-page styles
   ===================================================================
   Conversion-first commercial landing pages (templates/landing.html).
   Colour, type, spacing scale and motion tokens come from the shared
   design system (static/css/seo-design-system.css) — link that BEFORE
   this file. This sheet owns only the landing-specific layout.

   Adapted from Chirenj's doorstep-landing design source. The logo here is
   the real full-colour asset (no CSS invert filter), unlike the sample which
   recoloured a black mark. */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--gray-900);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ── UTILITIES ─────────────────────────── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
}

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

.label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
}

.label--standalone {
  display: block;
  margin-bottom: 12px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── NAV ────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s;
}

.nav.scrolled {
  box-shadow: 0 1px 16px rgba(0, 0, 0, 0.06);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .nav-inner {
    padding: 0 24px;
  }
}

.nav-logo {
  height: 30px;
  width: auto;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-500);
  padding: 8px 12px;
  border-radius: 6px;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--gray-900);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.ham-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-700, #374151);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

.nav-hamburger.open .ham-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open .ham-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger.open .ham-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-drawer {
  position: fixed;
  top: 57px;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  padding: 20px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-drawer.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.drawer-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-700, #374151);
  padding: 12px 4px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.drawer-link:hover {
  color: var(--pink);
}

.drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.drawer-btn {
  width: 100%;
  justify-content: center;
  text-align: center;
  padding: 13px 20px;
  font-size: 15px;
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .nav-right {
    display: none !important;
  }

  .nav-hamburger {
    display: flex !important;
  }
}

@media (min-width: 769px) {
  .nav-drawer {
    display: none !important;
  }
}

.btn-outline {
  font-size: 14px;
  font-weight: 500;
  padding: 9px 18px;
  border-radius: 6px;
  border: 1px solid var(--line);
  color: var(--gray-700);
  background: transparent;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.btn-outline:hover {
  border-color: var(--gray-500);
  color: var(--black);
}

.btn-solid {
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 6px;
  border: none;
  color: var(--white);
  background: var(--pink);
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-solid:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* ── HERO ───────────────────────────────── */
.hero {
  padding-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100svh;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 40px;
  max-width: 640px;
  margin-left: auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  opacity: 0;
  animation: up 0.6s var(--ease) 0.1s forwards;
}

.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
  animation: blink 2s ease infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.3
  }
}

.hero h1 {
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--black);
  margin-bottom: 24px;
  opacity: 0;
  animation: up 0.6s var(--ease) 0.2s forwards;
}

.hero h1 strong {
  font-weight: 600;
}

.hero-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--gray-500);
  margin-bottom: 40px;
  max-width: 440px;
  opacity: 0;
  animation: up 0.6s var(--ease) 0.3s forwards;
}

/* ── BOGO BANNER ──────────────────────────── */
.bogo-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  background: #FEF3C7;
  border: 1px solid #FCD34D;
  border-left: 4px solid #F59E0B;
  border-radius: 8px;
  padding: 12px 18px;
  margin-bottom: 24px;
}

.bogo-offer {
  font-size: 15px;
  font-weight: 600;
  color: #92400E;
}

.bogo-ends {
  font-size: 13px;
  font-weight: 500;
  color: #92400E;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bogo-timer {
  display: flex;
  gap: 3px;
}

.bogo-unit {
  background: #F59E0B;
  border-radius: 4px;
  padding: 2px 5px;
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  min-width: 28px;
  justify-content: center;
}

.bogo-lbl {
  font-size: 9px;
  font-weight: 500;
  opacity: 0.85;
}

@media (max-width: 480px) {
  .bogo-banner { flex-direction: column; align-items: flex-start; }
}

.hero-pricing {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  opacity: 0;
  animation: up 0.6s var(--ease) 0.35s forwards;
}

.price-cell {
  flex: 1;
  padding: 16px 20px;
  border-right: 1px solid var(--line);
}

.price-cell:last-child {
  border-right: none;
}

.price-cell--link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: background 0.15s;
}

.price-cell--link:hover {
  background: var(--pink-light);
}

.price-cell--link .price-cell-val {
  color: var(--pink);
  border-bottom: 1px dashed var(--pink);
  display: inline-block;
}

.price-cell--link:hover .price-cell-val {
  border-bottom-style: solid;
}

.price-cell--link .price-cell-val::after {
  content: " ↗";
  font-size: 13px;
  color: var(--pink);
}

.price-cell-lbl {
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-300);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.price-cell-val {
  font-size: 22px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.02em;
}

.price-cell-val sub {
  font-size: 12px;
  font-weight: 400;
  color: var(--gray-300);
  vertical-align: baseline;
}

.price-cell.highlight {
  background: var(--pink-light);
}

.price-cell.highlight .price-cell-lbl {
  color: var(--pink);
}

.price-cell.highlight .price-cell-val {
  color: var(--pink);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: up 0.6s var(--ease) 0.45s forwards;
}

.btn-hero {
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 6px;
  border: none;
  color: var(--white);
  background: var(--pink);
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-hero:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn-wa {
  font-size: 15px;
  font-weight: 500;
  padding: 13px 24px;
  border-radius: 6px;
  border: 1px solid var(--line);
  color: var(--gray-700);
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-wa:hover {
  border-color: var(--gray-400);
}

.btn-sample {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-500);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--line);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.15s, text-decoration-color 0.15s;
}

.btn-sample:hover {
  color: var(--pink);
  text-decoration-color: var(--pink);
}

/* hero payment-plans callout (after the action buttons) */
.hero-payments {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  text-decoration: none;
  color: var(--gray-700);
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}

.hero-payments:hover {
  border-color: var(--pink);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
  transform: translateY(-1px);
}

.hero-payments-badge {
  flex-shrink: 0;
  font-weight: 800;
  font-size: 17px;
  line-height: 1;
  color: var(--pink);
  background: var(--pink-light);
  border-radius: 8px;
  padding: 9px 10px;
}

.hero-payments-body {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hero-payments-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-payments-lbl {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-900);
}

.hero-pay-logo {
  height: 15px;
  width: auto;
  object-fit: contain;
}

.hero-pay-logo--sm {
  height: 12px;
}

.hero-pay-logo--sq {
  height: 18px;
  width: 18px;
  background: #fff;
  border: 1px solid #bbf7d0;
  border-radius: 4px;
  padding: 2px;
}

.hero-payments-banks {
  font-size: 12px;
  color: var(--gray-500);
}

.hero-payments-arrow {
  flex-shrink: 0;
  color: var(--pink);
  font-weight: 700;
  font-size: 16px;
}

/* hero "Powered by Mobil 1" badge */
.hero-mobil1 {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
}

.hero-mobil1-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
}

.hero-mobil1-logo {
  height: 20px;
  width: auto;
  object-fit: contain;
  display: block;
}

.btn-dl {
  border: 1px solid var(--pink-border, #f9a8d4);
  color: var(--pink);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-dl:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.hero-trust {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: up 0.6s var(--ease) 0.55s forwards;
}

.hero-stars {
  color: #F5A623;
  font-size: 14px;
  letter-spacing: 1px;
}

.hero-trust-text {
  font-size: 13px;
  color: var(--gray-300);
}

/* ── HERO IMAGE ─────────────────────────── */
.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--gray-100);
  opacity: 0;
  animation: slideIn 0.9s var(--ease) 0.1s forwards;
}

.hero-right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(13, 13, 13, 0.5) 0%, transparent 50%);
}

.stat-pill {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  padding: 12px 18px;
}

.stat-pill-1 {
  bottom: 36px;
  left: 28px;
  animation: float1 4s ease infinite;
}

.stat-pill-2 {
  top: 36px;
  right: 28px;
  animation: float2 4.5s ease infinite;
}

.stat-pill-val {
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.02em;
}

.stat-pill-lbl {
  font-size: 11px;
  color: var(--gray-300);
  margin-top: 1px;
}

@keyframes float1 {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-5px)
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(5px)
  }
}

/* ── ANIMATIONS ─────────────────────────── */
@keyframes up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.reveal.on {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-eyebrow,
  .hero h1,
  .hero-desc,
  .hero-pricing,
  .hero-actions,
  .hero-trust,
  .hero-right {
    opacity: 1;
  }
}

/* ── TRUST BAR ──────────────────────────── */
.trust-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}

.trust-bar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .trust-bar-inner {
    padding: 0 24px;
    gap: 0;
  }
}

.trust-item {
  flex: 1;
  min-width: 180px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 24px 8px 0;
  border-right: 1px solid var(--line);
}

.trust-item:first-child {
  padding-left: 0;
}

.trust-item:last-child {
  border-right: none;
  padding-right: 0;
}

.trust-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.trust-text strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
}

.trust-text span {
  font-size: 12px;
  color: var(--gray-300);
}

/* ── SECTIONS ───────────────────────────── */
.section {
  padding: 96px 0;
}

.section-sm {
  padding: 72px 0;
}

.section-bg {
  background: var(--gray-50);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-header {
  margin-bottom: 56px;
}

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

.section-header h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  letter-spacing: -0.025em;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 14px;
}

.section-header h2 strong {
  font-weight: 600;
}

.section-header p {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.65;
  max-width: 480px;
}

/* ── HOW IT WORKS ───────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.step {
  background: var(--white);
  padding: 40px 36px;
  transition: background 0.3s;
}

.step:hover {
  background: var(--gray-50);
}

.step-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gray-300);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.step-num::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

.step h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.step p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

.step-tag {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--pink);
  font-weight: 500;
}

/* ── PRICING ────────────────────────────── */
.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.pricing-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.pricing-card.featured {
  border-color: var(--pink);
}

.pricing-card-head {
  padding: 28px 32px;
  border-bottom: 1px solid var(--line);
}

.pricing-card.featured .pricing-card-head {
  background: var(--pink-light);
}

.pricing-card-head h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}

.pricing-card-head p {
  font-size: 13px;
  color: var(--gray-400);
}

.pricing-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink);
  background: var(--pink-light);
  border: 1px solid var(--pink-border);
  border-radius: 4px;
  padding: 3px 8px;
  display: inline-block;
  margin-bottom: 10px;
}

.pricing-body {
  padding: 12px 32px 28px;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-row-label {
  font-size: 14px;
  color: var(--gray-700);
}

.pricing-row-amt {
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.02em;
}

.pricing-row-amt span {
  font-size: 12px;
  font-weight: 400;
  color: var(--gray-300);
}

.first-wash-box {
  margin-top: 32px;
  padding: 24px 28px;
  border: 1px solid var(--pink-border);
  border-radius: 8px;
  background: var(--pink-light);
  display: flex;
  align-items: center;
  gap: 20px;
}

.first-wash-box .icon {
  font-size: 24px;
  flex-shrink: 0;
}

.first-wash-box strong {
  font-size: 16px;
  color: var(--black);
  display: block;
  margin-bottom: 2px;
}

.first-wash-box span {
  font-size: 13px;
  color: var(--gray-500);
}

.pricing-cta {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.pricing-sub {
  font-size: 13px;
  color: var(--gray-300);
}

.pricing-sub strong {
  color: var(--pink);
}

.pricing-with-image {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.pricing-with-image .pricing-cta {
  margin-top: 32px;
}

.pricing-media {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.pricing-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pricing-points {
  list-style: none;
  margin: 28px 0 4px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.pricing-points li {
  position: relative;
  padding-left: 32px;
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.5;
}

.pricing-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--pink);
  background: var(--pink-light);
  border-radius: 50%;
}

.pricing-points strong {
  color: var(--black);
  font-weight: 600;
}

/* ── COVERAGE ───────────────────────────── */
.coverage-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.areas {
  margin-top: 32px;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}

.area-chip {
  font-size: 13px;
  color: var(--gray-700);
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.area-chip::before {
  content: '›';
  color: var(--pink);
  font-weight: 700;
}

.area-chip-name {
  font-weight: 500;
}

.area-chip-tag {
  margin-left: auto;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--gray-500);
  background: var(--gray-100, #f3f4f6);
  border-radius: 100px;
  padding: 2px 9px;
  white-space: nowrap;
}

.area-chip-tag--accent {
  color: var(--pink);
  background: var(--pink-light);
}

.coverage-note {
  font-size: 13px;
  color: var(--gray-400);
  line-height: 1.6;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.coverage-img-wrap {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.coverage-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── REVIEWS ────────────────────────────── */
.reviews-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 64px;
  align-items: start;
}

.reviews-score .big {
  font-size: 72px;
  font-weight: 300;
  color: var(--black);
  letter-spacing: -0.04em;
  line-height: 1;
}

.reviews-score .stars {
  color: #F5A623;
  font-size: 16px;
  margin: 8px 0 4px;
}

.reviews-score .count {
  font-size: 13px;
  color: var(--gray-300);
}

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

.review-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: border-color 0.25s;
}

.review-card:hover {
  border-color: var(--gray-300);
}

.review-stars {
  color: #F5A623;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.65;
  margin-bottom: 16px;
  font-style: italic;
}

.review-author {
  font-size: 12px;
  font-weight: 600;
  color: var(--black);
}

.review-source {
  font-size: 11px;
  color: var(--gray-300);
  margin-top: 2px;
}

/* ── FAQ ────────────────────────────────── */
.faq-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
}

.faq-aside-h {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--black);
}

.faq-aside-h strong {
  font-weight: 600;
}

.faq-aside p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-top: 14px;
}

.faq-aside .btn-text {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--pink);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item:first-child {
  border-top: 1px solid var(--line);
}

.faq-btn {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  gap: 24px;
  text-align: left;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  transition: color 0.2s;
}

.faq-btn:hover {
  color: var(--pink);
}

.faq-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gray-500);
  transition: transform 0.3s, border-color 0.2s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--pink);
  color: var(--pink);
}

.faq-item.open .faq-btn {
  color: var(--pink);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding-bottom: 22px;
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.75;
}

/* ── FINAL CTA ──────────────────────────── */
.cta-section {
  padding: 120px 0;
  border-top: 1px solid var(--line);
}

.cta-inner {
  max-width: 660px;
}

.cta-inner h2 {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 20px;
}

.cta-inner h2 strong {
  font-weight: 600;
}

.cta-inner p {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.cta-sub {
  margin-top: 20px;
  font-size: 13px;
  color: var(--gray-300);
}

.cta-sub strong {
  color: var(--pink);
}

/* ── FOOTER ─────────────────────────────── */
.footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 40px;
}

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

.footer-brand-logo {
  height: 26px;
  width: auto;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--gray-400);
  line-height: 1.65;
  max-width: 240px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--black);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.footer-bottom span {
  font-size: 12px;
  color: var(--gray-300);
}

.footer-bottom a {
  font-size: 12px;
  color: var(--gray-300);
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: var(--gray-700);
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  align-items: center;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 1px solid var(--line);
  color: var(--gray-400);
  transition: color 0.2s, border-color 0.2s;
}

.footer-social-link:hover {
  color: var(--pink);
  border-color: var(--pink-border);
}

.footer-col p {
  font-size: 13px;
  font-weight: 400;
  color: #666666;
  margin: 0;
  padding: 5px 0;
}

/* ── STICKY (mobile) ────────────────────── */
.sticky-bar {
  display: none;
}

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-left {
    padding: 80px 24px 56px;
    margin: 0;
    max-width: 100%;
  }

  .hero-right {
    height: 56vw;
    min-height: 300px;
  }

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

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

  .pricing-with-image {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .coverage-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .reviews-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .trust-item {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid var(--line);
    padding-bottom: 16px;
  }

  .trust-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .trust-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .sticky-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--white);
    border-top: 1px solid var(--line);
    padding: 12px 16px;
    gap: 10px;
  }

  body {
    padding-bottom: 70px;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero-pricing {
    flex-direction: column;
  }

  .price-cell {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .price-cell:last-child {
    border-bottom: none;
  }

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

  .cta-inner h2 {
    font-size: 30px;
  }

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

  .nav-link {
    display: none;
  }
}

@media (max-width: 768px) {

  /* Hero CTAs — stacked full width */
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 100%;
    gap: 10px;
  }

  .hero-actions .btn-hero,
  .hero-actions .btn-wa {
    width: 100%;
    justify-content: center;
  }

  /* Pricing CTA — stacked */
  .pricing-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .pricing-cta a,
  .pricing-cta button {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* Bottom CTA actions — stacked */
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .cta-actions a,
  .cta-actions button {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* Footer socials — wrap on small screens */
  .footer-socials {
    flex-wrap: wrap;
    gap: 10px;
  }

  /* Trust bar — horizontal scroll */
  .trust-bar-inner {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    scrollbar-width: none;
    gap: 24px;
    padding-bottom: 4px;
  }

  .trust-bar-inner::-webkit-scrollbar {
    display: none;
  }

  /* Sticky bar — equal button widths */
  .sticky-bar {
    padding: 12px 16px;
    gap: 10px;
  }

  .sticky-bar a {
    flex: 1;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    padding: 11px 12px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }

  .hero-left {
    padding: 64px 20px 48px;
  }

  .container {
    padding: 0 20px;
  }
}

/* ── OPTIONAL BODY PROSE (supplementary SEO copy) ──────────────────
   Landing pages are section-driven; body markdown is optional. When present
   it renders below the closing CTA in a constrained reading column. */
.lp-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 40px 96px;
}

.lp-body h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--black);
  margin: 40px 0 14px;
}

.lp-body h2 strong,
.lp-body h3 strong {
  font-weight: 600;
}

.lp-body h3 {
  font-size: 19px;
  font-weight: 600;
  color: var(--black);
  margin: 28px 0 10px;
}

.lp-body p {
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 16px;
}

.lp-body ul,
.lp-body ol {
  margin: 0 0 16px 1.2em;
  color: var(--gray-700);
  line-height: 1.75;
}

.lp-body li {
  margin-bottom: 8px;
}

.lp-body a {
  color: var(--pink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 768px) {
  .lp-body {
    padding: 0 24px 72px;
  }
}
