/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: transform 0.18s cubic-bezier(0.16,1,0.3,1), box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 3px; }

.btn--primary {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: var(--shadow-accent);
}
.btn--primary:hover { box-shadow: 0 12px 32px rgba(79, 70, 229, 0.38); }

.btn--secondary {
  background: var(--color-bg);
  color: var(--color-text);
  border-color: var(--color-border-strong);
  box-shadow: var(--shadow-sm);
}
.btn--secondary:hover { border-color: var(--color-accent); color: var(--color-accent); box-shadow: var(--shadow-md); }

.btn--ghost { background: transparent; color: var(--color-accent); }
.btn--ghost:hover { background: var(--color-accent-soft); }

.btn--white { background: #fff; color: var(--color-accent); box-shadow: var(--shadow-md); }
.btn--white:hover { background: #f4f3ff; }

.btn--outline-light { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.35); }
.btn--outline-light:hover { background: rgba(255,255,255,0.16); border-color: #fff; }

.btn--sm { padding: 10px 18px; font-size: 0.85rem; }
.btn--lg { padding: 17px 34px; font-size: 1rem; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: 0.55; cursor: not-allowed; transform: none; }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--space-4); }

/* On phones two side-by-side CTAs wrap into ragged, uneven blocks. Stack them
   full-width instead so they read as a deliberate pair. */
@media (max-width: 560px) {
  .btn-row { gap: var(--space-3); }
  .btn-row > .btn { width: 100%; }
  .btn--lg { padding: 15px 24px; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--color-border);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: var(--space-5);
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
  white-space: nowrap;
  color: var(--color-heading);
}
.site-logo .logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--gradient-brand);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-accent);
  flex-shrink: 0;
}
.site-logo .logo-mark svg { width: 18px; height: 18px; }
/* One flex item for the whole wordmark, so the container gap doesn't push
   "The", "Code" and "Heist" apart. */
.site-logo .wordmark { white-space: nowrap; }
.site-logo .wordmark span { color: var(--color-accent); }

.site-nav { display: none; gap: var(--space-2); flex: 1; justify-content: center; }
.site-nav a {
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--color-muted);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.15s ease, background 0.15s ease;
}
.site-nav a:hover { color: var(--color-accent); background: var(--color-accent-soft); }
.site-nav a.is-active { color: var(--color-accent); font-weight: 600; }

.site-header__cta { display: none; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  padding: 0;
  margin-right: -8px; /* keep the icon optically aligned with the container edge */
  border-radius: var(--radius-sm);
}
.nav-toggle:hover { background: var(--color-bg-alt); }
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 1024px) {
  .site-nav { display: flex; }
  .site-header__cta { display: block; }
  .nav-toggle { display: none; }
}

/* Mobile menu: a dark, deliberate panel rather than a plain white dropdown. */
.site-nav.is-open {
  display: flex;
  flex-direction: column;
  /* Not `fixed`: the header's backdrop-filter makes it a containing block for
     fixed descendants, which clipped this panel to the header's own height. */
  position: absolute;
  top: 74px;
  left: 0; right: 0;
  height: calc(100vh - 74px);
  height: calc(100dvh - 74px);
  background: var(--color-bg-deep);
  padding: var(--space-6) var(--space-5) calc(var(--space-7) + env(safe-area-inset-bottom, 0px));
  gap: 0;
  overflow-y: auto;
  animation: navIn 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}
.site-nav.is-open::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 15% 0%, rgba(124,58,237,0.32) 0%, transparent 65%),
    radial-gradient(50% 40% at 95% 100%, rgba(6,182,212,0.20) 0%, transparent 60%);
  pointer-events: none;
}
@keyframes navIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }

.site-nav.is-open a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 4px;
  font-size: 1.12rem;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.09);
  border-radius: 0;
}
.site-nav.is-open a:not(.btn)::after {
  content: "→";
  color: rgba(255,255,255,0.32);
  font-size: 1rem;
  transition: transform 0.18s ease, color 0.18s ease;
}
.site-nav.is-open .nav-extra .btn {
  justify-content: center;
  border-bottom: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.site-nav.is-open a:hover,
.site-nav.is-open a:active { background: transparent; color: #c4b5fd; }
.site-nav.is-open a:hover::after { transform: translateX(4px); color: #c4b5fd; }
.site-nav.is-open a.is-active { color: #a78bfa; }

/* CTA + contact block appended to the panel on mobile */
.nav-extra { display: none; }
.site-nav.is-open .nav-extra {
  display: block;
  position: relative;
  margin-top: var(--space-6);
}
.site-nav.is-open .nav-extra .btn { width: 100%; }
.nav-extra__contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-5);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255,255,255,0.09);
}
.nav-extra__contact a {
  padding: 0 !important;
  border: none !important;
  font-family: var(--font-body) !important;
  font-size: 0.92rem !important;
  font-weight: 500 !important;
  color: rgba(255,255,255,0.62) !important;
  justify-content: flex-start !important;
  gap: 10px;
}
.nav-extra__contact a::after { display: none; }
.nav-extra__contact a .ico { color: #a78bfa; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: var(--space-9) 0 var(--space-8);
  overflow: hidden;
}
.hero__inner { display: grid; gap: var(--space-8); align-items: center; }
@media (min-width: 1024px) {
  .hero { padding: var(--space-10) 0 var(--space-9); }
  .hero__inner { grid-template-columns: 1.05fr 0.95fr; gap: var(--space-7); }
}

.hero .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  color: var(--color-text);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 7px 14px 7px 8px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-5);
}
.hero .pill .pill-badge {
  background: var(--gradient-brand);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.02em;
}
.hero h1 { margin-bottom: var(--space-5); }
.hero .lead { font-size: 1.13rem; max-width: 560px; margin-bottom: var(--space-6); }
.hero .trust-line {
  margin-top: var(--space-6);
  font-size: 0.85rem;
  color: var(--color-muted);
}
/* Inline (not a flex item) so the dot stays glued to the start of the text
   instead of wrapping onto its own line on narrow screens. */
.hero .trust-line .dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.18);
  margin-right: 10px;
  vertical-align: middle;
}

/* Hero visual: stacked browser mockups */
.hero-visual { position: relative; }
.browser-frame {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
}
.browser-bar i { width: 9px; height: 9px; border-radius: 50%; display: block; }
.browser-bar i:nth-child(1) { background: #ff5f57; }
.browser-bar i:nth-child(2) { background: #febc2e; }
.browser-bar i:nth-child(3) { background: #28c840; }
.browser-bar .url {
  margin-left: 8px;
  flex: 1;
  height: 18px;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 1px solid var(--color-border);
}
.browser-frame .screen { display: block; width: 100%; }
.browser-frame .screen img { display: block; width: 100%; height: auto; }

/* Real screenshot framed as a laptop-ish window, used wherever we show
   actual delivered work rather than a wireframe. */
.shot-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  background: #fff;
}
.shot-frame { display: block; }
.shot-frame .browser-bar { border-radius: 0; }
.shot-frame .browser-bar .url {
  margin-left: 8px;
  flex: 1;
  height: auto;
  min-height: 20px;
  padding: 3px 10px;
  font-size: 0.68rem;
  color: var(--color-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.shot-frame img { display: block; width: 100%; height: auto; }

/* Desktop shot with the phone version tucked into the corner — the pairing is
   the point: it says "this is a real page, and it works on a phone too". */
.shot-pair { position: relative; padding-bottom: 26px; }
.shot-phone {
  position: absolute;
  right: -14px;
  bottom: 0;
  width: 112px;
  padding: 6px;
  background: #10131c;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(15, 18, 34, 0.32);
}
.shot-phone .notch {
  position: absolute;
  top: 11px; left: 50%;
  width: 34px; height: 4px;
  margin-left: -17px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.22);
  z-index: 2;
}
.shot-phone__screen {
  aspect-ratio: 9 / 17;
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
}
.shot-phone__screen img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}
.shot-caption {
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-top: var(--space-4);
}
@media (max-width: 640px) {
  .shot-phone { width: 86px; right: -4px; border-radius: 16px; }
  .shot-phone__screen { border-radius: 12px; }
}

/* Client showcase */
.client-feature {
  display: grid;
  gap: var(--space-7);
  align-items: center;
}
@media (min-width: 900px) {
  .client-feature { grid-template-columns: 1.05fr 0.95fr; gap: var(--space-8); }
  .client-feature--flip .client-feature__media { order: -1; }
}
.client-feature__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  margin: var(--space-5) 0 var(--space-6);
  padding: var(--space-5) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.client-feature__meta div { min-width: 96px; }
.client-feature__meta dt {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 4px;
}
.client-feature__meta dd {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-heading);
  letter-spacing: -0.01em;
}
.client-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #047857;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-4);
}
.client-chip i {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #10b981;
  animation: fxPulse 2s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) { .client-chip i { animation: none; } }

/* ---------- Hero showcase: real screenshots, desktop + phone ---------- */
.showcase { position: relative; }
.showcase__stage { position: relative; }

.showcase__desktop {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.showcase__desktop .browser-bar .url {
  margin-left: 8px;
  flex: 1;
  height: auto;
  min-height: 20px;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 1px solid var(--color-border);
  font-size: 0.68rem;
  color: var(--color-muted);
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: inherit;
}
.showcase__screen {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--color-bg-alt);
  overflow: hidden;
}
.showcase__screen .showcase__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 0.7s ease, transform 1.2s ease;
}
.showcase__screen .showcase__img.is-active { opacity: 1; transform: none; }

.showcase__phone {
  position: absolute;
  right: -16px;
  bottom: -26px;
  width: 108px;
  padding: 6px;
  background: #10131c;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(15, 18, 34, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.showcase__phone .notch {
  position: absolute;
  top: 11px; left: 50%;
  width: 34px; height: 4px;
  margin-left: -17px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.22);
  z-index: 2;
}
.showcase__phone-screen {
  position: relative;
  aspect-ratio: 9 / 17;
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
}
.showcase__phone-screen .showcase__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.showcase__phone-screen .showcase__img.is-active { opacity: 1; }

.showcase__caption {
  position: absolute;
  left: -12px;
  bottom: -20px;
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 10px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  max-width: calc(100% - 118px);
}
.showcase__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #10b981;
  flex-shrink: 0;
  animation: fxPulse 2s ease-in-out infinite;
}
.showcase__sector {
  font-weight: 500;
  font-size: 0.72rem;
  color: var(--color-muted);
  border-left: 1px solid var(--color-border);
  padding-left: 9px;
}
.showcase__open {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--color-accent);
}
.showcase__open .ico { width: 0.9em; height: 0.9em; }

.showcase__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 58px;
}
.showcase__tab {
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-muted);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.showcase__tab:hover { color: var(--color-text); border-color: var(--color-text-soft, #94a3b8); }
.showcase__tab.is-active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}
@media (prefers-reduced-motion: reduce) {
  .showcase__dot { animation: none; }
  .showcase__img { transition: none; }
}
@media (max-width: 640px) {
  .showcase__phone { width: 84px; right: -4px; bottom: -20px; border-radius: 16px; }
  .showcase__phone-screen { border-radius: 12px; }
  .showcase__caption { left: 0; bottom: -16px; padding: 8px 11px; font-size: 0.76rem; max-width: calc(100% - 92px); }
  .showcase__sector { display: none; }
  .showcase__tabs { margin-top: 44px; }
  .showcase__tab { font-size: 0.68rem; padding: 4px 10px; }
}

.float-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
}
.float-card .ic {
  width: 30px; height: 30px;
  border-radius: 9px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.float-card small { display: block; font-weight: 500; color: var(--color-muted); font-size: 0.72rem; }
.float-card--tl { top: -18px; left: -14px; }
.float-card--br { bottom: -20px; right: -10px; }
@media (max-width: 640px) {
  .float-card--tl { top: -14px; left: -4px; transform: scale(0.86); transform-origin: left top; }
  .float-card--br { bottom: -14px; right: -4px; transform: scale(0.86); transform-origin: right bottom; }
}

/* ---------- Offer band ---------- */
.offer-band {
  position: relative;
  background: var(--color-bg-deep);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.offer-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 100% at 15% 0%, rgba(124,58,237,0.55) 0%, transparent 65%),
    radial-gradient(55% 100% at 88% 100%, rgba(6,182,212,0.35) 0%, transparent 60%);
}
.offer-band h2 { color: #fff; margin-bottom: var(--space-4); }
.offer-band p { color: rgba(255,255,255,0.76); max-width: 620px; margin: 0 auto; }
.offer-band .offer-price {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  margin: var(--space-5) 0 var(--space-2);
  color: #fff; /* solid fallback — see note on .text-gradient */
}
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .offer-band .offer-price {
    background: linear-gradient(180deg, #fff 0%, #c7c9ff 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
  }
}
.offer-band .offer-price small { font-size: 1rem; font-weight: 500; letter-spacing: 0; color: rgba(255,255,255,0.7); -webkit-text-fill-color: rgba(255,255,255,0.7); }
/* Anchor price. Sits on the same baseline as the offer price but at a fraction
   of the size, so ₹99 stays the thing the eye lands on. The explicit
   -webkit-text-fill-color is needed because the parent clips a gradient to the
   text, which would otherwise swallow this colour too. */
.offer-band .offer-price__was {
  font-size: 0.34em;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.55);
  -webkit-text-fill-color: rgba(255,255,255,0.55);
  margin-right: 0.12em;
  vertical-align: 0.42em;
}
.offer-band .offer-price__was s { text-decoration: line-through; text-decoration-thickness: 0.06em; }
/* On narrow screens the caption wrapped mid-phrase beside the price. Give it
   its own line so the figures read as one unit and the caption as another. */
@media (max-width: 720px) {
  .offer-band .offer-price small { display: block; margin-top: var(--space-3); }
  .offer-band .offer-price__was { vertical-align: 0.3em; }
}
.offer-band .offer-includes {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: var(--space-3) var(--space-5);
  margin: var(--space-6) 0;
  font-size: 0.9rem;
}
.offer-band .offer-includes li { color: rgba(255,255,255,0.92); display: flex; align-items: center; gap: 7px; }
.offer-band .offer-includes svg { width: 16px; height: 16px; color: #4ade80; flex-shrink: 0; }
.offer-band .offer-note { font-size: 0.82rem; color: rgba(255,255,255,0.62); margin-top: var(--space-5); }

/* Scope line sits directly under the price so "₹99" is never read alone. */
.offer-band .offer-scope {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 auto var(--space-4);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
}
.offer-band .offer-scope svg { width: 17px; height: 17px; flex-shrink: 0; }

/* Exclusions get the same visual weight as the inclusions — a customer should
   not be able to read one without the other. */
.offer-excludes {
  margin-top: var(--space-6);
  padding: var(--space-5);
  border-radius: var(--radius);
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.14);
  text-align: left;
}
.offer-excludes__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  margin-bottom: var(--space-3);
}
.offer-excludes ul { display: grid; gap: 10px; font-size: 0.9rem; }
.offer-excludes li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
}
.offer-excludes li > span { flex: 1; min-width: 0; }
.offer-excludes li em { font-style: normal; color: rgba(255,255,255,0.62); }
.offer-excludes svg { width: 15px; height: 15px; color: #fca5a5; flex-shrink: 0; margin-top: 3px; }
@media (min-width: 700px) {
  .offer-excludes { padding: var(--space-5) var(--space-6); }
}

.slots-meter {
  max-width: 340px;
  margin: var(--space-5) auto 0;
}
.slots-meter .track { height: 7px; border-radius: var(--radius-pill); background: rgba(255,255,255,0.16); overflow: hidden; }
.slots-meter .fill { height: 100%; border-radius: var(--radius-pill); background: linear-gradient(90deg, #4ade80, #22d3ee); }
.slots-meter .label { font-size: 0.8rem; color: rgba(255,255,255,0.8); margin-top: 10px; }

/* ---------- Scroll-built site scene (homepage) ---------- */
.build-scene { height: 320vh; position: relative; background: var(--color-bg-deep); }
.build-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.build-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 80% at 12% 10%, rgba(124,58,237,0.30) 0%, transparent 62%),
    radial-gradient(46% 70% at 92% 88%, rgba(6,182,212,0.22) 0%, transparent 60%);
}
.build-stage__inner { position: relative; display: grid; gap: var(--space-7); align-items: center; width: 100%; }
@media (min-width: 900px) { .build-stage__inner { grid-template-columns: 0.9fr 1.1fr; gap: var(--space-8); } }

.build-copy h2 { color: #fff; margin-bottom: var(--space-4); }
.build-copy p { color: rgba(255,255,255,0.7); max-width: 460px; }
.build-copy .eyebrow { color: #c4b5fd; }
.build-copy .eyebrow::before { background: #c4b5fd; }

.build-steps { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: var(--space-6); }
.build-steps span {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.5);
  transition: all 0.35s ease;
}
.build-steps span.on { background: var(--gradient-brand); border-color: transparent; color: #fff; }

.build-preview { position: relative; }
.build-canvas { position: relative; background: #fff; min-height: 268px; overflow: hidden; }
.build-wire { padding: var(--space-5); }
@media (min-width: 900px) {
  .build-canvas { min-height: 320px; }
  .build-wire { padding: var(--space-6); }
}
/* The finished page, revealed once the wireframe has done its job. */
.build-real {
  position: absolute;
  inset: 0;
  opacity: 0;
  display: block;
}
.build-real img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.js .build-wire { will-change: opacity; }

.bp { opacity: 0; will-change: opacity, transform; }
.bp-header { display: flex; align-items: center; gap: 8px; padding-bottom: var(--space-4); border-bottom: 1px solid var(--color-border); margin-bottom: var(--space-5); }
.bp-dot { width: 22px; height: 22px; border-radius: 6px; background: var(--gradient-brand); }
.bp-navline { width: 44px; height: 6px; border-radius: 3px; background: var(--color-border); }
.bp-btn { width: 62px; height: 20px; border-radius: var(--radius-pill); background: var(--color-accent-soft); margin-left: auto; }
.bp-h1 { height: 17px; border-radius: 5px; background: #2b2f45; margin-bottom: 10px; width: 82%; }
.bp-h1--short { width: 54%; background: var(--color-accent); }
.bp-text { height: 8px; border-radius: 4px; background: var(--color-border); margin-bottom: 8px; width: 92%; }
.bp-text--short { width: 66%; margin-bottom: var(--space-5); }
.bp-cta { height: 34px; width: 152px; border-radius: var(--radius-sm); background: var(--gradient-brand); margin-bottom: var(--space-5); box-shadow: var(--shadow-accent); }
.bp-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
.bp-card { height: 62px; border-radius: 10px; background: var(--color-bg-alt); border: 1px solid var(--color-border); }
.bp-float {
  position: absolute;
  right: -6px;
  bottom: -22px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 11px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
}
.bp-float .ic {
  width: 30px; height: 30px;
  border-radius: 9px;
  background: #ecfdf5;
  color: #059669;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.bp-float small { display: block; font-weight: 500; color: var(--color-muted); font-size: 0.7rem; }
@media (max-width: 640px) { .bp-float { right: 0; bottom: -18px; transform: scale(0.9); transform-origin: right bottom; } }

/* ---------- Grids & Cards ---------- */
.grid { display: grid; gap: var(--space-5); grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  .grid--5 { grid-template-columns: repeat(5, 1fr); }
}

.card {
  position: relative;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1), box-shadow 0.25s ease, border-color 0.25s ease;
}
a.card { display: block; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card h3 { margin-bottom: var(--space-2); }
.card p { font-size: 0.94rem; }

.icon-tile {
  width: 48px; height: 48px;
  border-radius: 13px;
  display: grid; place-items: center;
  background: var(--gradient-soft);
  color: var(--color-accent);
  margin-bottom: var(--space-5);
  border: 1px solid rgba(79,70,229,0.12);
}
.icon-tile svg { width: 23px; height: 23px; }
.icon-tile--solid { background: var(--gradient-brand); color: #fff; border-color: transparent; box-shadow: var(--shadow-accent); }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: var(--space-5);
  font-weight: 600;
  color: var(--color-accent);
  font-size: 0.9rem;
}
.card-link svg { width: 15px; height: 15px; transition: transform 0.2s ease; }
.card:hover .card-link svg { transform: translateX(4px); }

/* ---------- Steps ---------- */
.steps { display: grid; gap: var(--space-6); grid-template-columns: 1fr; position: relative; }
@media (min-width: 1024px) {
  .steps { grid-template-columns: repeat(5, 1fr); gap: var(--space-4); }
  .steps::before {
    content: "";
    position: absolute;
    top: 26px; left: 10%; right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-border-strong) 15%, var(--color-border-strong) 85%, transparent);
  }
}
.step { text-align: center; position: relative; }
.step .step-number {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  display: grid; place-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 auto var(--space-4);
  box-shadow: 0 0 0 6px #fff, var(--shadow-sm);
  position: relative;
  z-index: 1;
}
.step h3 { font-size: 1rem; margin-bottom: var(--space-2); }
.step p { font-size: 0.88rem; }

/* ---------- Pricing ---------- */
.price-card { text-align: left; display: flex; flex-direction: column; }
.price-card.is-featured {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--gradient-brand) border-box;
  border: 2px solid transparent;
}
.price-card .badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-brand);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-accent);
  white-space: nowrap;
}
.price-card .price {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: var(--space-3) 0 var(--space-2);
  color: var(--color-heading);
}
.price-card .price small { font-size: 0.85rem; font-weight: 500; color: var(--color-muted); letter-spacing: 0; }
.price-card .price-sub { font-size: 0.85rem; color: var(--color-muted); margin-bottom: var(--space-5); }
.price-card ul { margin: 0 0 var(--space-6); flex: 1; }
.price-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.9rem;
  color: var(--color-muted);
}
.price-card li svg { width: 17px; height: 17px; color: var(--color-accent); flex-shrink: 0; margin-top: 3px; }

/* ---------- Work / demo cards ---------- */
.work-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.work-card .thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
}
.work-card .thumb svg,
.work-card .thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
/* A slim browser bar over the screenshot, so the card reads as a real page. */
.work-card .thumb-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--color-border);
}
.work-card .thumb-bar i { width: 7px; height: 7px; border-radius: 50%; display: block; flex-shrink: 0; }
.work-card .thumb-bar i:nth-child(1) { background: #ff5f57; }
.work-card .thumb-bar i:nth-child(2) { background: #febc2e; }
.work-card .thumb-bar i:nth-child(3) { background: #28c840; }
.work-card .thumb-bar .url {
  margin-left: 5px;
  flex: 1;
  min-width: 0;
  font-size: 0.62rem;
  color: var(--color-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.work-card .thumb img { padding-top: 28px; box-sizing: border-box; background: #fff; }
.work-card .tag {
  position: absolute;
  z-index: 3;
  /* Sits below the browser bar that tops the screenshot. */
  top: calc(28px + var(--space-3)); left: var(--space-4);
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(6px);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}
.work-card .tag--live { background: var(--gradient-brand); color: #fff; border-color: transparent; }
.work-card .tag--fx {
  left: auto;
  right: var(--space-4);
  background: #0f1222;
  color: #fff;
  border-color: transparent;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.work-card .tag--fx::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4ade80;
  animation: fxPulse 1.8s ease-in-out infinite;
}
@keyframes fxPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.25; } }
@media (prefers-reduced-motion: reduce) { .work-card .tag--fx::before { animation: none; } }

.work-card .tag--wip {
  background: #f59e0b;
  color: #442200;
  border-color: transparent;
}

/* ---------- In-progress product feature ---------- */
.wip-feature {
  position: relative;
  background: #0d0618;
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}
.wip-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(55% 70% at 12% 0%, rgba(168,85,247,0.45) 0%, transparent 62%),
    radial-gradient(50% 60% at 92% 100%, rgba(59,130,246,0.28) 0%, transparent 60%);
}
.wip-feature__grid { display: grid; gap: var(--space-7); align-items: center; padding: var(--space-8) var(--space-6); }
@media (min-width: 900px) {
  .wip-feature__grid { grid-template-columns: 1fr 1.05fr; gap: var(--space-8); padding: var(--space-9) var(--space-8); }
}
.wip-feature h2 { color: #fff; margin-bottom: var(--space-4); }
.wip-feature p { color: rgba(255,255,255,0.74); }
.wip-feature .eyebrow { color: #e9d5ff; }
.wip-feature .eyebrow::before { background: linear-gradient(90deg,#a855f7,#f0abfc); }

.wip-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,158,11,0.14);
  border: 1px solid rgba(245,158,11,0.45);
  color: #fbbf24;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-5);
}
.wip-badge i {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #fbbf24;
  animation: fxPulse 1.8s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) { .wip-badge i { animation: none; } }

.wip-feature__list { margin: var(--space-5) 0 var(--space-6); }
.wip-feature__list li {
  display: flex;
  gap: var(--space-3);
  padding: 9px 0;
  font-size: 0.94rem;
  color: rgba(255,255,255,0.8);
}
.wip-feature__list li svg { width: 19px; height: 19px; color: #c084fc; flex-shrink: 0; margin-top: 2px; }

.wip-feature__shot {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow-lg);
}
.wip-feature__shot { display: block; }
.wip-feature__shot .browser-bar { background: #1a0f2e; border-color: rgba(255,255,255,0.09); }
.wip-feature__shot .browser-bar .url {
  background: #0d0618;
  border-color: rgba(255,255,255,0.12);
  height: auto;
  min-height: 20px;
  padding: 3px 10px;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wip-feature__shot svg,
.wip-feature__shot img { display: block; width: 100%; height: auto; }
.wip-feature__note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-top: var(--space-4);
}
.work-card .body { padding: var(--space-5) var(--space-6) var(--space-6); flex: 1; display: flex; flex-direction: column; }
.work-card .body p { font-size: 0.92rem; flex: 1; }
.work-card .price-flag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  margin-top: var(--space-4);
  background: var(--color-accent-soft);
  color: var(--color-accent);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 13px;
  border-radius: var(--radius-pill);
}

/* ---------- Trust ---------- */
.trust-list { display: grid; gap: var(--space-5); grid-template-columns: 1fr; }
@media (min-width: 640px) { .trust-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .trust-list { grid-template-columns: repeat(5, 1fr); } }
.trust-item { text-align: center; padding: var(--space-5) var(--space-3); }
.trust-item .icon-tile { margin: 0 auto var(--space-4); }
.trust-item h3 { font-size: 0.98rem; }
.trust-item p { font-size: 0.87rem; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  text-align: center;
  background: var(--gradient-soft);
  border: 1px solid rgba(79,70,229,0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  overflow: hidden;
}
.cta-band h2 { margin-bottom: var(--space-3); }
.cta-band .btn-row { justify-content: center; margin-top: var(--space-6); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-bg-deep);
  color: rgba(255,255,255,0.66);
  padding: var(--space-9) 0 var(--space-5);
}
.site-footer .site-logo { color: #fff; }
.site-footer__grid { display: grid; gap: var(--space-6); grid-template-columns: 1fr; }
@media (min-width: 640px) { .site-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .site-footer__grid { grid-template-columns: 2fr repeat(4, 1fr); gap: var(--space-7); } }
.site-footer__brand p { color: rgba(255,255,255,0.55); margin-top: var(--space-4); font-size: 0.9rem; max-width: 300px; }
.site-footer__col h3 {
  color: #fff;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: var(--space-4);
  font-family: var(--font-body);
  font-weight: 700;
}
.site-footer__col a {
  display: block;
  padding: 5px 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.62);
  transition: color 0.15s ease;
}
.site-footer__col a:hover { color: #fff; }
.site-footer__bottom {
  margin-top: var(--space-8);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255,255,255,0.09);
  font-size: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: space-between;
}
.site-footer__bottom p { color: rgba(255,255,255,0.45); }

/* ---------- WhatsApp FAB ---------- */
.whatsapp-fab {
  position: fixed;
  bottom: calc(22px + env(safe-area-inset-bottom, 0px));
  right: 22px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.42);
  z-index: 70;
  transition: transform 0.2s ease;
}
.whatsapp-fab .ico { width: 28px; height: 28px; }
.whatsapp-fab:hover { transform: scale(1.08); }
/* Email variant, used while the phone number is withheld. */
.whatsapp-fab--mail { background: var(--gradient-brand); box-shadow: var(--shadow-accent); }
.whatsapp-fab--mail::after { border-color: rgba(124,58,237,0.5); }
.whatsapp-fab--mail .ico { width: 26px; height: 26px; }
/* Gets out of the way when it would sit on top of form controls. */
.whatsapp-fab.is-tucked {
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(0.8);
}
.whatsapp-fab::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: fabPulse 2.6s ease-out infinite;
}
@keyframes fabPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ---------- Inner page hero ---------- */
.page-hero {
  position: relative;
  text-align: center;
  padding: var(--space-9) 0 var(--space-7);
  overflow: hidden;
}
/* Inner-page heroes were eating a whole phone screen before any content. */
@media (max-width: 640px) {
  .page-hero { padding: var(--space-7) 0 var(--space-6); }
  .page-hero h1 { font-size: clamp(1.9rem, 8vw, 2.4rem); }
  .page-hero p { font-size: 0.98rem; }
  .hero { padding: var(--space-7) 0 var(--space-6); }
  section { padding: var(--space-8) 0; }
}
.page-hero h1 { max-width: 780px; margin: 0 auto var(--space-4); }
.page-hero p { max-width: 620px; margin: 0 auto; font-size: 1.06rem; }
.page-hero .eyebrow { justify-content: center; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}

/* ---------- Service detail ---------- */
.service-detail { display: grid; gap: var(--space-7); grid-template-columns: 1fr; }
@media (min-width: 1024px) { .service-detail { grid-template-columns: 1.45fr 1fr; align-items: start; } }
.includes-list li {
  display: flex;
  gap: var(--space-3);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.96rem;
  color: var(--color-muted);
}
.includes-list li:last-child { border-bottom: none; }
.includes-list li svg { width: 20px; height: 20px; color: var(--color-accent); flex-shrink: 0; margin-top: 2px; }
.service-sidebar {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--space-6);
  position: sticky;
  top: 96px;
}
.service-sidebar .btn { width: 100%; margin-bottom: var(--space-3); }
.service-sidebar .btn:last-child { margin-bottom: 0; }

/* ---------- Prose ---------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { margin-top: var(--space-8); margin-bottom: var(--space-4); font-size: 1.45rem; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--color-muted); margin-bottom: var(--space-4); }
.prose ul { padding-left: var(--space-5); list-style: disc; }
.prose a { color: var(--color-accent); font-weight: 500; }
.prose .updated-note {
  font-size: 0.85rem;
  background: var(--color-bg-alt);
  border-left: 3px solid var(--color-accent);
  padding: var(--space-3) var(--space-4);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: var(--space-7);
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  margin-bottom: var(--space-3);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.faq-item.is-open { box-shadow: var(--shadow-md); border-color: rgba(79,70,229,0.3); }
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: var(--space-5) var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  font-weight: 600;
  font-size: 1rem;
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
  color: var(--color-heading);
}
.faq-question .icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  display: grid; place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.faq-item.is-open .faq-question .icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.28s ease; }
.faq-item.is-open .faq-answer { max-height: 460px; }
.faq-answer p { padding: 0 var(--space-6) var(--space-5); margin: 0; font-size: 0.95rem; }

/* ---------- Forms ---------- */
.form-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-7) var(--space-6);
  box-shadow: var(--shadow-lg);
}
@media (min-width: 640px) { .form-card { padding: var(--space-8) var(--space-7); } }

.form-steps { display: flex; justify-content: center; align-items: center; gap: 6px; margin-bottom: var(--space-7); }
.form-steps .step-dot {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  color: var(--color-muted);
  display: grid; place-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  transition: all 0.25s ease;
}
.form-steps .step-line { width: 26px; height: 2px; background: var(--color-border); border-radius: 2px; }
.form-steps .step-dot.is-active { background: var(--gradient-brand); color: #fff; border-color: transparent; box-shadow: var(--shadow-accent); }
.form-steps .step-dot.is-done { background: var(--color-accent-soft); color: var(--color-accent); border-color: rgba(79,70,229,0.25); }

.form-step { display: none; }
.form-step.is-active { display: block; animation: stepIn 0.32s cubic-bezier(0.16,1,0.3,1); }
@keyframes stepIn { from { opacity: 0; transform: translateX(12px); } to { opacity: 1; transform: none; } }

.form-group { margin-bottom: var(--space-5); }
.form-group label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: var(--space-3); color: var(--color-heading); }
.form-group .hint { font-weight: 400; color: var(--color-muted); font-size: 0.82rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(79,70,229,0.12);
}
.form-group textarea { min-height: 120px; resize: vertical; }

.chip-group { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.chip {
  padding: 11px 19px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border-strong);
  background: var(--color-bg);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  transition: all 0.18s ease;
}
.chip:hover { border-color: var(--color-accent); color: var(--color-accent); }
.chip.is-selected {
  background: var(--gradient-brand);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--shadow-accent);
}
.chip[disabled] { opacity: 0.38; cursor: not-allowed; }
.chip[disabled]:hover { border-color: var(--color-border-strong); color: var(--color-text); }

/* ---------- Time slot picker ----------
   A ragged wrap of pills reads as a tag cloud, not a schedule. A fixed grid
   with grouped parts of the day reads as a real booking system. */
.slot-group + .slot-group { margin-top: var(--space-5); }
.slot-group__label {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: var(--space-3);
}
.slot-group__label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--color-border);
}
.slot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2);
}
@media (min-width: 560px) { .slot-grid { grid-template-columns: repeat(4, 1fr); gap: var(--space-3); } }

.slot {
  position: relative;
  padding: 13px 4px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border-strong);
  background: var(--color-bg);
  font-size: 0.9rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--color-text);
  text-align: center;
  transition: border-color 0.16s ease, background 0.16s ease, color 0.16s ease, box-shadow 0.16s ease;
}
.slot:hover:not([disabled]) { border-color: var(--color-accent); color: var(--color-accent); }
.slot:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
.slot.is-selected {
  background: var(--gradient-brand);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--shadow-accent);
}
.slot[disabled] {
  background: var(--color-bg-alt);
  color: var(--color-muted);
  border-color: var(--color-border);
  cursor: not-allowed;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  opacity: 0.7;
}
/* A slot that has simply passed isn't struck through — nothing was booked,
   the time is just gone. Keeping it visible preserves the shape of the day. */
.slot[disabled].is-past {
  text-decoration: none;
  opacity: 0.45;
  background: transparent;
  border-style: dashed;
}
/* Static "here's where it goes" row — deliberately not button-shaped, so it
   never competes with the submit button underneath it. */
.delivery-note {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 15px;
  border-radius: var(--radius-sm);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  font-size: 0.88rem;
  color: var(--color-muted);
}
.delivery-note__icon {
  display: grid;
  place-items: center;
  width: 30px; height: 30px;
  flex-shrink: 0;
  border-radius: 8px;
  background: var(--color-accent-soft);
  color: var(--color-accent);
}

.slot-empty {
  grid-column: 1 / -1;
  padding: var(--space-5);
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-muted);
  background: var(--color-bg-alt);
  border: 1px dashed var(--color-border-strong);
  border-radius: var(--radius-sm);
}
.slot-legend {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-4);
  font-size: 0.76rem;
  color: var(--color-muted);
  flex-wrap: wrap;
}
.slot-legend span { display: inline-flex; align-items: center; gap: 6px; }
.slot-legend i { width: 11px; height: 11px; border-radius: 3px; display: block; }
.slot-legend .free { border: 1px solid var(--color-border-strong); background: var(--color-bg); }
.slot-legend .taken { background: var(--color-bg-alt); border: 1px solid var(--color-border); }
.slot-legend .past { background: transparent; border: 1px dashed var(--color-border-strong); opacity: 0.6; }
.slot-legend .picked { background: var(--gradient-brand); }

.form-nav { display: flex; justify-content: space-between; gap: var(--space-3); margin-top: var(--space-6); }

.form-success { text-align: center; padding: var(--space-5) 0; }
.form-success .icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: #fff;
  display: grid; place-items: center;
  margin: 0 auto var(--space-5);
  box-shadow: var(--shadow-accent);
}
.form-success .icon svg { width: 34px; height: 34px; }
.form-success h3 { font-size: 1.4rem; margin-bottom: var(--space-3); }

.form-error {
  color: #b91c1c;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.86rem;
  margin-top: var(--space-4);
  display: none;
}
.form-error.is-visible { display: block; }

.form-notice {
  background: var(--color-accent-soft);
  border: 1px solid rgba(79,70,229,0.18);
  border-radius: var(--radius-sm);
  padding: 12px 15px;
  font-size: 0.86rem;
  color: var(--color-text);
  margin-bottom: var(--space-5);
}

/* honeypot field, hidden from real users, left for bots to fill */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* OTP */
.otp-inputs { display: flex; gap: var(--space-2); justify-content: center; margin: var(--space-5) 0; }
.otp-inputs input {
  width: 46px;
  height: 56px;
  text-align: center;
  font-size: 1.35rem;
  font-weight: 700;
  font-family: var(--font-heading);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  padding: 0;
}
.otp-inputs input:focus { outline: none; border-color: var(--color-accent); box-shadow: 0 0 0 4px rgba(79,70,229,0.12); }
@media (max-width: 420px) { .otp-inputs input { width: 40px; height: 50px; font-size: 1.15rem; } }

.otp-meta { text-align: center; font-size: 0.85rem; color: var(--color-muted); }
.otp-meta button { background: none; border: none; color: var(--color-accent); font-weight: 600; padding: 0; }
.otp-meta button[disabled] { color: var(--color-muted); cursor: not-allowed; }

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 13px;
  border-radius: var(--radius-pill);
}
.verified-badge svg { width: 15px; height: 15px; }


/* Starter tier carries the same exclusions as the homepage offer band, so the
   two places a customer sees ₹99 tell the same story. */
.price-card .price-excludes {
  margin: var(--space-4) 0 var(--space-5);
  padding-top: var(--space-4);
  border-top: 1px dashed var(--color-border-strong);
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--color-muted);
}
.price-card .price-excludes strong { color: var(--color-text); font-weight: 600; }

/* ---------- Proof block (Who you're working with) ---------- */
/* Credibility for a young studio: every claim links to something the visitor
   can open. No badges, no invented numbers, no stock team photos. */
.proof-block { display: grid; gap: var(--space-7); }
@media (min-width: 1000px) {
  .proof-block { grid-template-columns: 0.85fr 1.15fr; gap: var(--space-8); align-items: start; }
  .proof-block__intro { position: sticky; top: 100px; }
}
.proof-block__intro h2 { margin-bottom: var(--space-4); }
.proof-block__intro p { margin-bottom: var(--space-4); }
.proof-block__intro p:last-child { color: var(--color-muted); margin-bottom: 0; }

.proof-grid { display: grid; gap: var(--space-4); }
@media (min-width: 640px) and (max-width: 999px) {
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-grid > :first-child { grid-column: 1 / -1; }
}

.proof-card {
  display: block;
  padding: var(--space-5) var(--space-6);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s cubic-bezier(0.16,1,0.3,1), box-shadow 0.18s ease, border-color 0.18s ease;
}
.proof-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}
.proof-card h3 { font-size: 1.15rem; margin: var(--space-3) 0 var(--space-2); }
.proof-card p { font-size: 0.92rem; color: var(--color-muted); margin-bottom: var(--space-4); }

.proof-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #047857;
}
.proof-card__tag i { width: 6px; height: 6px; border-radius: 50%; background: currentColor; display: block; }
.proof-card__tag--alt { background: var(--color-accent-soft); border-color: rgba(79,70,229,0.25); color: var(--color-accent); }
.proof-card__tag--wip { background: #fff7ed; border-color: #fed7aa; color: #c2410c; }

.proof-card__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-accent);
}
.proof-card__link svg { width: 15px; height: 15px; transition: transform 0.18s ease; }
.proof-card:hover .proof-card__link svg { transform: translateX(3px); }

/* Same anchor treatment on the Starter tier as the homepage offer band. */
.price-card .price__was {
  font-size: 0.42em;
  font-weight: 600;
  color: var(--color-muted);
  margin-right: 0.15em;
  vertical-align: 0.35em;
}
.price-card .price__was s { text-decoration: line-through; text-decoration-thickness: 0.07em; }
