/* CARO CUSHION — mockup-matched marketing site */
:root {
  --gold: #f5c518;
  --gold-deep: #e8a020;
  --gold-soft: #fff8e1;
  --ink: #1a1d26;
  --ink-soft: #4b5563;
  --ink-muted: #6b7280;
  --line: #e8eaee;
  --bg: #ffffff;
  --bg-soft: #f6f7f9;
  --dark: #14161c;
  --dark-2: #1c1f28;
  --nav-h: 76px;
  --max: 1160px;
  --radius: 20px;
  --shadow: 0 12px 36px rgba(20, 22, 28, 0.08);
  --shadow-lg: 0 28px 60px rgba(20, 22, 28, 0.16);
  --font: "Plus Jakarta Sans", "Manrope", system-ui, sans-serif;
  --script: "Caveat", cursive;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
}
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  padding-top: var(--nav-h);
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent; }
button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
button:focus,
a:focus {
  outline: none;
}
button:focus-visible,
a:focus-visible {
  outline: 2px solid rgba(232, 160, 32, 0.55);
  outline-offset: 2px;
}
ul { list-style: none; margin: 0; padding: 0; }

/* Android: no grey/black tap “ripple” / shadow bloom on controls */
.btn:active,
.shots-nav-btn:active,
.reviews-nav-btn:active,
.pricing-nav-btn:active,
.menu-btn:active,
.fab:active,
.footer-col > a:active {
  box-shadow: none !important;
  filter: none !important;
}
/* Only kill hover-lift transform on regular buttons — not slider arrows */
.btn:active,
.menu-btn:active,
.fab:active {
  transform: none !important;
}
.shots-nav-btn,
.reviews-nav-btn,
.pricing-nav-btn {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.shots-nav-btn:active:not(.is-disabled),
.reviews-nav-btn:active:not(.is-disabled),
.pricing-nav-btn:active:not(.is-disabled) {
  background: #ffd84d;
  box-shadow: none !important;
}

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 2000;
  background: #000; color: #fff; padding: 0.75rem 1rem;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  padding: 0.85rem 1.35rem;
  font-weight: 700;
  font-size: 0.94rem;
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-dark {
  background: #111;
  color: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
}
.btn-outline {
  background: #fff;
  border-color: #d7dbe3;
  color: var(--ink);
}
.btn-outline:hover { box-shadow: var(--shadow); }
.btn-sm { padding: 0.62rem 1.05rem; font-size: 0.86rem; }
.btn-lg { padding: 1rem 1.55rem; font-size: 1rem; }
.play-badge {
  width: 1.35rem; height: 1.35rem; border-radius: 4px;
  background: #fff; color: #111; display: grid; place-items: center;
  font-size: 0.65rem; font-weight: 900;
}

/* ===== NAV ===== */
.site-nav {
  position: fixed; inset: 0 0 auto 0; height: var(--nav-h);
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  z-index: 100;
}
.site-nav.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(20,22,28,0.06);
}
.nav-inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto; height: 100%;
  display: flex; align-items: center; gap: 1rem;
}
.brand {
  display: inline-flex; align-items: center; gap: 0.65rem;
  min-width: 0;
}
.brand-logo {
  width: 42px; height: 42px; border-radius: 11px; object-fit: cover;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}
.site-nav .brand--logo-only .brand-logo {
  width: auto;
  height: 50px;
  max-height: calc(var(--nav-h) - 14px);
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
  background: transparent;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong {
  font-size: 0.98rem; letter-spacing: -0.02em; white-space: nowrap;
}
.brand-text small {
  font-size: 0.68rem; color: var(--ink-muted); font-weight: 600;
  white-space: nowrap;
}
.nav-links {
  display: none; margin-left: auto; gap: 1.15rem;
  font-size: 0.9rem; font-weight: 600; color: var(--ink-soft);
}
.nav-links a:hover, .nav-links a.is-active { color: var(--ink); }
.nav-links a.is-active {
  position: relative;
}
.nav-links a.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -0.4rem;
  height: 3px; border-radius: 99px; background: var(--gold);
}
.nav-actions { display: flex; align-items: center; gap: 0.5rem; margin-left: auto; }
.menu-btn {
  width: 42px; height: 42px; border-radius: 999px;
  border: 1px solid var(--line); display: grid; place-items: center;
}
.mobile-menu {
  display: none; flex-direction: column; gap: 0.25rem;
  padding: 0.75rem 1rem 1.15rem; background: #fff;
  border-bottom: 1px solid var(--line);
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  padding: 0.75rem 0.85rem; border-radius: 10px; font-weight: 600;
}
.mobile-menu a:hover { background: var(--gold-soft); }

@media (min-width: 1020px) {
  .nav-links { display: flex; }
  .nav-actions { margin-left: 0; }
  .menu-btn { display: none; }
  .mobile-menu { display: none !important; }
}

/* ===== HERO — 2-zone premium showcase (copy | phones+benefits) ===== */
.hero {
  --hero-pad-y: 1.15rem;
  --center-h: clamp(420px, 58vh, 560px);
  position: relative;
  height: auto;
  min-height: 0;
  padding: var(--hero-pad-y) 0;
  background: #fffef9;
  overflow: visible;
}
.hero-container.container-xl {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.hero-row { --bs-gutter-x: 1.25rem; --bs-gutter-y: 1rem; }
.hero-col-copy,
.hero-col-visual { min-width: 0; position: relative; z-index: 1; }

@media (min-width: 1200px) {
  .hero {
    --hero-pad-y: 0.65rem;
    --center-h: clamp(470px, 64vh, 580px);
    min-height: calc(100vh - var(--nav-h));
    min-height: calc(100dvh - var(--nav-h));
    display: flex;
    align-items: flex-start;
    padding-top: 0.85rem;
    padding-bottom: 0.75rem;
  }
  .hero-container.container-xl {
    max-width: 1320px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .hero-row {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.25fr); /* ~42 / 58 */
    column-gap: 1.35rem;
  align-items: center;
    margin: 0;
    --bs-gutter-x: 0;
    width: 100%;
  }
  .hero-row > [class*="col-"] {
    width: auto;
    max-width: none;
    flex: none;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 1400px) {
  .hero {
    --center-h: clamp(500px, 66vh, 600px);
  }
  .hero-container.container-xl {
    max-width: 1380px;
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }
}
@media (min-width: 1200px) and (max-height: 820px) {
  .hero {
    --hero-pad-y: 0.45rem;
    --center-h: clamp(450px, 58vh, 520px);
    padding-top: 0.55rem;
  }
}
@media (min-width: 1200px) and (max-height: 720px) {
  .hero {
    --hero-pad-y: 0.3rem;
    --center-h: clamp(420px, 56vh, 480px);
    padding-top: 0.4rem;
  }
}

/* LEFT copy — reference typography */
.hero-copy { max-width: 540px; }
@media (min-width: 1200px) {
  .hero-copy {
    margin-left: 2rem;
  }
}
/* Soft pill badge (hero only) */
.hero-copy > .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #fff4cc;
  color: #1e293b;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.42rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 197, 24, 0.35);
}
.hero-copy > .badge .fa-star {
  font-size: 0.72rem;
  color: #f0a000;
}
.hero h1 {
  margin: 0.7rem 0 0.65rem;
  font-size: clamp(2.15rem, 4.2vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: #152033;
  max-width: 13ch;
}
@media (min-width: 1200px) {
  .hero h1 {
    font-size: clamp(48px, 4.2vw, 64px);
    line-height: 1.04;
  }
}
/* "Smarter" — own line, gold + marker underline */
.hero h1 .hl {
  display: block;
  width: fit-content;
  color: #f0a000;
  font-family: var(--script);
  font-style: normal;
  font-weight: 700;
  font-size: 1.18em;
  line-height: 1.05;
  letter-spacing: -0.02em;
  position: relative;
  margin-top: 0.08em;
  padding: 0 0.12em 0.18em 0;
}
.hero h1 .hl::after {
  content: "";
  position: absolute;
  left: 0;
  right: -4%;
  bottom: 0.02em;
  height: 0.28em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 16' fill='none'%3E%3Cpath d='M2 10c36-7 72-9 120-5 40 3 70 4 96 2' stroke='%23F0A000' stroke-width='7' stroke-linecap='round'/%3E%3C/svg%3E") left center / 100% 100% no-repeat;
  z-index: -1;
  pointer-events: none;
}
.hero-desc {
  margin: 0.15rem 0 1rem;
  color: #64748b;
  max-width: 32rem;
  font-size: clamp(1.05rem, 1.15vw, 1.125rem);
  line-height: 1.55;
  font-weight: 500;
}
/* Section badges (Features, etc.) */
.badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--gold); color: #111;
  font-size: 0.74rem; font-weight: 800;
  padding: 0.34rem 0.8rem; border-radius: 999px;
}
.hero-cta { margin-bottom: 0.9rem; }
.hero .btn-hero { padding: 0.7rem 1.2rem; font-size: 0.92rem; }
.btn-demo {
  background: #fff;
  border: 1.5px solid var(--gold);
  color: var(--ink);
}
.btn-demo:hover { box-shadow: var(--shadow); background: var(--gold-soft); }
.btn-demo .fa-play { font-size: 0.8rem; }
.play-badge .fa-play { font-size: 0.5rem; }
.trust-row { max-width: 28rem; margin: 0; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
}
.trust-check {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
}
.trust-check i {
  display: block;
  font-size: 0.62rem;
  line-height: 1;
  width: 1em;
  height: 1em;
  text-align: center;
}

@media (min-width: 1200px) and (max-height: 820px) {
  .hero h1 { margin: 0.4rem 0; font-size: clamp(1.85rem, 3.4vw, 2.65rem); }
  .hero-desc { margin-bottom: 0.65rem; font-size: 1rem; }
  .hero-cta { margin-bottom: 0.65rem; }
  .hero .btn-hero { padding: 0.55rem 1rem; font-size: 0.84rem; }
  .trust-item { font-size: 0.74rem; }
}

/* SHOWCASE: phones + pocket — reference fan \ | / */
.hero-showcase { width: 100%; min-width: 0; }
.hero-phone-composition {
  position: relative;
  flex: 0 1 auto;
  width: min(100%, 540px);
  height: var(--center-h);
  max-height: calc(100dvh - var(--nav-h) - 2rem);
  margin: 0;
  overflow: visible;
}
.hero-glow {
  position: absolute;
  inset: 4% -8% 6% -8%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 50% 48%, rgba(245, 180, 40, 0.36), transparent 70%),
    radial-gradient(ellipse 45% 50% at 60% 62%, rgba(255, 210, 90, 0.16), transparent 72%);
  filter: blur(2px);
}
.hero-phones {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.hero-phones .device.phone-left,
.hero-phones .device.phone-center,
.hero-phones .device.phone-right {
  position: absolute;
  left: 50%;
  top: 0;
  width: auto;
  max-width: none;
  height: 100%;
  aspect-ratio: 490 / 1000;
  margin: 0;
  padding: 0;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: hidden;
  border-radius: 13% / 6.5%;
  filter: drop-shadow(0 18px 34px rgba(15, 23, 42, 0.28));
  transform-origin: bottom center;
}

/* LEFT: bottom unchanged; top slightly more outward */
.hero-phones .phone-left {
  z-index: 1;
  transform: translateX(calc(-50% - 42%)) rotate(-9.5deg) scale(0.95);
}

/* CENTER: straight, dominant */
.hero-phones .phone-center {
  z-index: 3;
  transform: translateX(-50%) rotate(0deg) scale(1);
}

/* RIGHT: bottom unchanged; top slightly more outward */
.hero-phones .phone-right {
  z-index: 2;
  transform: translateX(calc(-50% + 42%)) rotate(9.5deg) scale(0.95);
}

.hero-phones .device-screen {
  position: absolute;
  z-index: 1;
  top: 1.7%; bottom: 1.7%; left: 4.35%; right: 4.35%;
  margin: 0; padding: 0; border: 0;
  border-radius: 11.5% / 5.6%;
  overflow: hidden;
  background: transparent !important;
}
.hero-phones .device-screen img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain;
  object-position: top center;
}
.hero-phones .device-bezel {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  pointer-events: none;
  user-select: none;
}

.pocket-card {
  flex: 0 0 auto;
  width: 160px;
  max-width: 170px;
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  transform: rotate(2deg);
}
.pocket-card .script {
  font-family: var(--script);
  font-size: clamp(1.2rem, 1.6vw, 1.55rem);
  color: #1a1d26;
  line-height: 1.05;
  margin: 0 0 0.7rem;
  font-weight: 700;
}
.pocket-card .script .u { position: relative; display: inline-block; }
.pocket-card .script .u::after {
  content: "";
  position: absolute;
  left: 0; right: -4%; bottom: 0.05em;
  height: 0.28em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12' fill='none'%3E%3Cpath d='M2 8c28-6 55-6 116 0' stroke='%23F5C518' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E") center/100% 100% no-repeat;
  z-index: -1;
}
.pocket-card ul { display: grid; gap: 0.45rem; }
.pocket-card li {
  display: flex; align-items: center; gap: 0.45rem;
  font-size: 0.88rem; font-weight: 700; color: #1a1d26; margin: 0;
}
.pocket-card li::before { content: none; }
.pocket-card .check {
  width: 24px; height: 24px; border-radius: 999px;
  background: var(--gold); color: #fff;
  display: grid; place-items: center;
  font-size: 0.68rem; flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(232, 160, 32, 0.3);
}
.pocket-card .check i { line-height: 1; }
.pocket-card-mobile {
  transform: none;
  max-width: 280px;
  width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem 1.15rem;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 1199.98px) {
  .hero {
    min-height: 0;
  display: block;
    --hero-pad-y: 1.6rem;
    --center-h: clamp(360px, 48vh, 480px);
  }
  .hero-copy { max-width: none; }
  .hero h1 { max-width: 14ch; font-size: clamp(1.9rem, 4vw, 2.7rem); }
  .hero-phone-composition { width: min(100%, 420px); }
  .hero-phones .phone-right { display: none; }
  .hero-phones .phone-left {
    transform: translateX(calc(-50% - 34%)) rotate(-7deg) scale(0.94);
    z-index: 1;
  }
  .hero-phones .phone-center {
    transform: translateX(-50%) rotate(0deg) scale(1);
    z-index: 2;
  }
}
@media (max-width: 991.98px) {
  .hero { --center-h: clamp(320px, 46vh, 420px); }
  .hero-phone-composition { width: min(100%, 340px); }
}
@media (max-width: 575.98px) {
  .hero { --center-h: clamp(280px, 48vh, 360px); }
  .hero h1 { max-width: none; }
  .hero-phone-composition { width: min(100%, 260px); }
  .hero-phones .phone-left { display: none; }
  .hero-phones .phone-center {
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
    height: 100%;
  }
}

/* Device + iPhone bezel */
.device {
  position: relative;
  width: 210px;
  aspect-ratio: 490 / 1000;
  filter: drop-shadow(0 22px 40px rgba(15, 23, 42, 0.28));
}
.device-sm { width: 175px; }
.device-lg { width: 230px; }
.device-screen {
  position: absolute; z-index: 1;
  inset: 2.2% 5.1% 2.2% 5.1%;
  border-radius: 11.5% / 5.6%;
  overflow: hidden; background: #0b0b0b;
}
.device-screen img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
}
.device-bezel {
  position: relative; z-index: 2;
  width: 100%; height: auto; display: block;
  pointer-events: none; user-select: none;
}

/* ===== FEATURES — horizontal strip card ===== */
.features {
  padding: 2.5rem 0 3.5rem;
  border-top: 1px solid var(--line);
  background: #fafafa;
}
.features .section-label {
  text-align: center;
  margin: 0 auto 1.75rem;
  max-width: 36rem;
}
.features .section-label h2 {
  margin: 0.35rem 0 0.4rem;
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  letter-spacing: -0.03em;
}
.features .section-label p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
}
.feature-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid #e8ecf1;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}
.feature-item {
  text-align: center;
  padding: 1.6rem 1.1rem 1.5rem;
  position: relative;
}
.feature-item + .feature-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: #e8ecf1;
}
.feature-ico {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.9rem;
  font-size: 1.25rem;
  line-height: 1;
}
.feature-ico i { display: block; line-height: 1; }
.feature-ico.g { color: #16a34a; background: rgba(34, 197, 94, 0.14); box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.06); }
.feature-ico.b { color: #2563eb; background: rgba(59, 130, 246, 0.14); box-shadow: 0 0 0 8px rgba(59, 130, 246, 0.06); }
.feature-ico.p { color: #9333ea; background: rgba(168, 85, 247, 0.14); box-shadow: 0 0 0 8px rgba(168, 85, 247, 0.06); }
.feature-ico.o { color: #ea580c; background: rgba(249, 115, 22, 0.14); box-shadow: 0 0 0 8px rgba(249, 115, 22, 0.06); }
.feature-ico.t { color: #0891b2; background: rgba(20, 184, 166, 0.14); box-shadow: 0 0 0 8px rgba(20, 184, 166, 0.06); }
.feature-ico.r { color: #e11d48; background: rgba(244, 63, 94, 0.14); box-shadow: 0 0 0 8px rgba(244, 63, 94, 0.06); }
.feature-item h3 {
  margin: 0 0 0.4rem;
  font-size: 0.98rem;
  font-weight: 800;
  color: #152033;
  letter-spacing: -0.02em;
}
.feature-item p {
  margin: 0 auto;
  max-width: 11.5rem;
  color: #64748b;
  font-size: 0.8rem;
  line-height: 1.45;
  font-weight: 500;
}

@media (min-width: 640px) {
  .feature-strip { grid-template-columns: repeat(2, 1fr); }
  .feature-item:nth-child(2n+1)::before { display: none; }
  .feature-item:nth-child(n+3) { border-top: 1px solid #e8ecf1; }
  .feature-item:nth-child(n+3)::before { top: 0; bottom: 0; }
}
@media (min-width: 992px) {
  .feature-strip { grid-template-columns: repeat(3, 1fr); }
  .feature-item::before { display: block; }
  .feature-item:nth-child(3n+1)::before { display: none; }
  .feature-item:nth-child(n+4) { border-top: 1px solid #e8ecf1; }
  .feature-item:nth-child(-n+3) { border-top: 0; }
}
@media (min-width: 1200px) {
  .feature-strip { grid-template-columns: repeat(6, 1fr); }
  .feature-item {
    padding: 1.75rem 0.85rem 1.65rem;
    border-top: 0 !important;
  }
  /* Reset tablet hide rules — show a divider on the left of every column except the first */
  .feature-item::before,
  .feature-item:nth-child(2n+1)::before,
  .feature-item:nth-child(3n+1)::before,
  .feature-item:nth-child(n+3)::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 18%;
    bottom: 18%;
    width: 1px;
    background: #e5e9ef;
  }
  .feature-item:first-child::before { display: none; }
  .feature-item h3 { font-size: 0.92rem; }
  .feature-item p { font-size: 0.76rem; max-width: 10.5rem; }
}

/* ===== SCREENSHOTS — dark showcase band ===== */
.shots {
  padding: 0.5rem 0 3.5rem;
}
.shots-band {
  background:
    radial-gradient(ellipse 55% 70% at 75% 40%, rgba(56, 80, 140, 0.28), transparent 65%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(40, 50, 80, 0.35), transparent 60%),
    #0b0d12;
  color: #fff;
  border-radius: 28px;
  padding: 2rem 1.25rem 2.25rem;
  position: relative;
  overflow: hidden;
}
@media (min-width: 992px) {
  .shots-band { padding: 2.5rem 2rem 2.75rem 2.25rem; }
}
.shots-layout {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}
@media (min-width: 1100px) {
  .shots-layout {
    grid-template-columns: minmax(200px, 240px) minmax(0, 1fr);
    gap: 1.25rem;
    align-items: center;
  }
}
.shots-copy .eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.shots-copy h2 {
  margin: 0.55rem 0 0.7rem;
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  font-weight: 800;
  color: #fff;
}
.shots-copy p {
  margin: 0 0 1.15rem;
  color: #a8b0c0;
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 16.5rem;
}
.shots-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.92rem;
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 0.1rem;
}
.shots-link:hover { color: #ffe066; border-color: #ffe066; }
.shots-link i { font-size: 0.78rem; }

.shots-gallery {
  position: relative;
  display: flex;
  align-items: center;
    gap: 0.75rem;
  min-width: 0;
}
.shots-nav-btn {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--gold);
  border: 0;
  color: #111;
  display: inline-flex;
  align-items: center;
    justify-content: center;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
  z-index: 2;
  font-size: 0.95rem;
  line-height: 1;
  transition: opacity 0.2s ease, background 0.15s ease;
}
.shots-nav-btn:hover:not(.is-disabled) {
  background: #ffd84d;
  color: #111;
}
.shots-nav-btn.is-disabled,
.shots-nav-btn[aria-disabled="true"] {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
.shots-nav-btn i { display: block; line-height: 1; }

.shots-viewport {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  container-type: inline-size;
  container-name: shots-view;
}
.shots-track {
  display: flex;
  gap: 1.15rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.25rem 0 0.35rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.shots-track::-webkit-scrollbar { display: none; }

/* Default: 1 full phone (mobile) */
.shot-item {
  flex: 0 0 calc(100cqw - 0px);
  width: calc(100cqw);
  max-width: 100%;
  scroll-snap-align: start;
  text-align: center;
  box-sizing: border-box;
}
.shot-item .device {
  width: min(78%, 220px);
  margin: 0 auto 0.75rem;
  /* drop-shadow on .device softens the screen bitmap — keep shadow on bezel only */
  filter: none;
}
.shot-item .device-bezel {
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.5));
}
.shot-item .device-screen {
  inset: 1.7% 4.35% 1.7% 4.35%;
  background: transparent;
}
.shot-item .device-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.shot-item h3 {
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}
.shot-item p {
  margin: 0 auto;
  max-width: 11rem;
  font-size: 0.78rem;
  line-height: 1.35;
  color: #9aa3b5;
}

/* Tablet: 2 full phones */
@container shots-view (min-width: 420px) {
  .shot-item {
    flex: 0 0 calc((100cqw - 1.15rem) / 2);
    width: calc((100cqw - 1.15rem) / 2);
  }
  .shot-item .device { width: min(90%, 230px); }
}

/* Desktop gallery: exactly 3 full phones, larger devices */
@container shots-view (min-width: 640px) {
  .shot-item {
    flex: 0 0 calc((100cqw - 2.3rem) / 3);
    width: calc((100cqw - 2.3rem) / 3);
  }
  .shot-item .device {
    width: min(94%, 260px);
  }
}

@media (min-width: 1100px) {
  .shots-band { padding: 1.75rem 1.75rem 1.9rem 2rem; }
  .shots-layout { gap: 1.25rem; }
  .shots-nav-btn { width: 46px; height: 46px; }
  .shot-item .device { width: min(96%, 280px); }
}
@media (max-width: 575.98px) {
  .shots-nav-btn { width: 38px; height: 38px; font-size: 0.8rem; }
  .shots-gallery { gap: 0.45rem; }
}

/* ===== STATS — mockup match ===== */
.stats {
  padding: 1.5rem 0 3.75rem;
  background: #fffdf5;
}
.stats .container {
  max-width: 1240px;
}
.stats-row {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 1200px) {
  .stats-row {
    grid-template-columns: minmax(0, 1fr) 110px;
    gap: 1rem 1.15rem;
  }
}
.stats-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (min-width: 1200px) {
  .stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
}
.stat-card {
  display: flex;
  align-items: center;
  gap: 1.05rem;
  background: #fff;
  border: 1px solid rgba(245, 197, 24, 0.22);
  border-radius: 20px;
  padding: 1.35rem 1.25rem;
  box-shadow:
    0 0 0 4px rgba(255, 248, 225, 0.9),
    0 10px 28px rgba(15, 23, 42, 0.05);
  text-align: left;
  min-height: 0;
}
.stat-ico {
  flex: 0 0 auto;
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  margin: 0;
  font-size: 2.35rem;
  background: transparent;
  position: relative;
}
.stat-ico i { display: block; line-height: 1; }
.stat-ico.g { color: #22c55e; }
.stat-ico.o { color: #f97316; }
.stat-ico.b { color: #3b82f6; }
.stat-ico.p { color: #8b5cf6; }
.stat-body { min-width: 0; flex: 1 1 auto; }
/* Upper = large number, middle = title, niche = chhota description */
.stat-num {
  display: block;
  font-size: clamp(1.55rem, 1.8vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 0.12rem;
}
.stat-num.g { color: #16a34a; }
.stat-num.o { color: #ea580c; }
.stat-num.b { color: #2563eb; }
.stat-num.p { color: #7c3aed; }
.stat-card h3 {
  margin: 0 0 0.3rem;
  font-size: 0.84rem;
  font-weight: 800;
  color: #1e293b;
  letter-spacing: -0.02em;
  line-height: 1.2;
  white-space: nowrap;
}
.stat-card p {
  margin: 0;
  color: #94a3b8;
  font-size: 0.65rem;
  line-height: 1.4;
  font-weight: 500;
}
.stamp {
  font-family: var(--script);
  font-size: clamp(1.4rem, 1.8vw, 1.75rem);
  font-weight: 700;
  color: #1a1d26;
  text-align: left;
  line-height: 1;
  padding: 0.85rem 0.6rem;
  margin: 0;
  justify-self: center;
  position: relative;
  /* reveal uses transform — rotation lives on .stamp-inner */
}
.stamp.reveal {
  transform: translateY(14px);
}
.stamp.reveal.is-visible {
  transform: none;
  opacity: 1;
}
.stamp-inner {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.02em;
  transform: rotate(-16deg);
  transform-origin: center center;
}
.stamp::before {
  content: "";
  position: absolute;
  inset: -25% -40%;
  background: radial-gradient(ellipse at center, rgba(245, 197, 24, 0.3), transparent 70%);
  z-index: -1;
  pointer-events: none;
}
.stamp-w {
  display: block;
  line-height: 0.98;
}
.stamp-w:nth-child(2) { padding-left: 0.45em; }
.stamp-w:nth-child(3) { padding-left: 0.9em; margin-top: 0.12em; }
.stamp-w:nth-child(4) { padding-left: 1.25em; }
.stamp-line {
  position: relative;
  display: inline-block;
}
.stamp-line::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -12%;
  bottom: -0.06em;
  height: 0.3em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 14' fill='none'%3E%3Cpath d='M2 9c42-7 84-8 156 1' stroke='%23F5A623' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E") center/100% 100% no-repeat;
  pointer-events: none;
}
@media (max-width: 1199.98px) {
  .stamp { text-align: center; }
  .stamp-inner { transform: rotate(-12deg); }
}

/* ===== REVIEWS / TESTIMONIALS ===== */
.reviews {
  padding: 2rem 0 3.75rem;
  background: #fffdf5;
}
.testimonials-head {
  text-align: left;
  max-width: 40rem;
  margin: 0 0 1.75rem;
}
.testimonials-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.testimonials-badge i {
  color: var(--gold);
  font-size: 0.7rem;
}
.testimonials-head h2 {
  margin: 0.45rem 0 0.4rem;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  letter-spacing: -0.03em;
  color: #152033;
  font-weight: 800;
}
.testimonials-head p {
  margin: 0;
  color: #64748b;
  font-size: 0.95rem;
}
.section-head {
  text-align: center; max-width: 38rem; margin: 0 auto 2.25rem;
}
.section-head .eyebrow {
  display: inline-block; color: var(--gold-deep);
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.06em;
  text-transform: uppercase;
}
.section-head h2 {
  margin: 0.4rem 0 0.5rem;
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
}
.section-head p { margin: 0; color: var(--ink-muted); }

.reviews-gallery {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}
.reviews-nav-btn {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--gold);
  border: 0;
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  font-size: 0.95rem;
  line-height: 1;
  z-index: 2;
  transition: opacity 0.2s ease, background 0.15s ease;
}
.reviews-nav-btn:hover:not(.is-disabled) { background: #ffd84d; }
.reviews-nav-btn.is-disabled,
.reviews-nav-btn[aria-disabled="true"] {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
.reviews-nav-btn i { display: block; line-height: 1; }
.reviews-viewport {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  container-type: inline-size;
  container-name: reviews-view;
}
@media (max-width: 767px) {
  .reviews-gallery {
    gap: 0;
  }
  .reviews-nav-btn {
    display: none !important;
  }
  .reviews-dots:not([hidden]) {
    display: flex;
  }
  .reviews .review-card {
    flex: 0 0 calc(100cqw - 0.2rem) !important;
    width: calc(100cqw - 0.2rem) !important;
    max-width: 100%;
  }
}
.reviews-track {
  display: flex;
  gap: 1.15rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.25rem 0.1rem 0.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  width: 100%;
}
.reviews-track::-webkit-scrollbar { display: none; }
.review-card {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 0 0 calc(100cqw - 0px);
  width: calc(100cqw);
  max-width: 100%;
  box-sizing: border-box;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 16px;
  padding: 1.4rem 1.35rem 1.35rem;
  border: 1px solid #e8ecf1;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  min-height: 220px;
}
@container reviews-view (min-width: 560px) {
  .review-card {
    flex: 0 0 calc((100cqw - 1.15rem) / 2);
    width: calc((100cqw - 1.15rem) / 2);
  }
}
@container reviews-view (min-width: 900px) {
  .review-card {
    flex: 0 0 calc((100cqw - 2.3rem) / 3);
    width: calc((100cqw - 2.3rem) / 3);
  }
}
.review-top {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
  position: relative;
  padding-right: 2rem;
}
.avatar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: linear-gradient(145deg, #f5c518, #e8a020);
  color: #111;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.82rem;
  flex-shrink: 0;
}
.stars {
  display: flex;
  gap: 0.18rem;
  color: #f5c518;
  font-size: 0.78rem;
  line-height: 1;
}
.stars i { display: block; }
.review-quote {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1.65rem;
  color: #dbe2ea;
  line-height: 1;
}
.review-card blockquote {
  margin: 0 0 1.25rem;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.55;
  font-style: italic;
  font-weight: 500;
  flex: 1 1 auto;
}
.review-author {
  margin-top: auto;
}
.review-card strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 800;
  color: #152033;
}
.review-card .role {
  display: block;
  margin-top: 0.15rem;
  color: #94a3b8;
  font-size: 0.8rem;
  font-weight: 500;
}

/* ===== PRICING ===== */
.pricing {
  padding: 3rem 0 3.5rem;
  background: #fffef9;
}
.pricing-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2rem;
}
.pricing-badge {
  display: inline-flex;
  align-items: center;
  background: #fff4cc;
  color: #1e293b;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 197, 24, 0.35);
}
.pricing-head h2 {
  margin: 0.55rem 0 0.4rem;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  letter-spacing: -0.03em;
  color: #152033;
  font-weight: 800;
}
.pricing-head p {
  margin: 0;
  color: #64748b;
  font-size: 0.95rem;
}
.pricing-gallery {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  position: relative;
}
.pricing-nav-btn {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--gold);
  border: 0;
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  font-size: 0.95rem;
  line-height: 1;
  z-index: 2;
  transition: opacity 0.2s ease, background 0.15s ease;
  position: static;
  top: auto;
  transform: none;
  align-self: center;
}
.pricing-nav-btn[data-pricing-prev],
.pricing-nav-btn[data-pricing-next] {
  left: auto;
  right: auto;
}
.pricing-nav-btn:hover:not(.is-disabled) { background: #ffd84d; }
.pricing-nav-btn.is-disabled,
.pricing-nav-btn[aria-disabled="true"] {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
.pricing-nav-btn i { display: block; line-height: 1; }
.pricing-viewport {
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  overflow: hidden;
  container-type: inline-size;
  container-name: pricing-view;
}
.pricing-dots,
.reviews-dots {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0.85rem 0 0;
  min-height: 1rem;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: #cfd6e0;
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}
.carousel-dot.is-active {
  width: 22px;
  background: var(--gold-deep, #c98900);
}
.carousel-dot:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
@media (max-width: 767px) {
  .pricing-gallery {
    gap: 0;
  }
  .pricing-nav-btn {
    display: none !important;
  }
  .pricing-dots:not([hidden]) {
    display: flex;
  }
  .pricing .price-card {
    flex: 0 0 calc(100cqw - 0.2rem) !important;
    width: calc(100cqw - 0.2rem) !important;
    max-width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 900px) {
  .pricing-gallery {
    gap: 0.4rem;
  }
  .pricing-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 0.85rem;
  }
}
.pricing-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.35rem 0.1rem 0.65rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  width: 100%;
  align-items: stretch;
}
.pricing-track::-webkit-scrollbar { display: none; }
.price-card {
  display: flex;
  flex-direction: column;
  flex: 0 0 calc(100cqw - 0.25rem);
  width: calc(100cqw - 0.25rem);
  max-width: 100%;
  box-sizing: border-box;
  scroll-snap-align: start;
  border: 1px solid #e8ecf1;
  border-radius: 22px;
  padding: 1.45rem 1.35rem 1.4rem;
  background: #fff;
  position: relative;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
  height: 560px;
  max-height: 560px;
}
/* Tablet+: peek next card (desktop still uses arrows) */
@container pricing-view (min-width: 420px) {
  .price-card {
    flex: 0 0 calc((100cqw - 1rem) / 1.35);
    width: calc((100cqw - 1rem) / 1.35);
  }
}
/* Tablet: 2 full + half */
@container pricing-view (min-width: 640px) {
  .price-card {
    flex: 0 0 calc((100cqw - 2rem) / 2.5);
    width: calc((100cqw - 2rem) / 2.5);
  }
}
/* Desktop: 3 full + 4th ~1/4 peek */
@container pricing-view (min-width: 880px) {
  .price-card {
    flex: 0 0 calc((100cqw - 3rem) / 3.25);
    width: calc((100cqw - 3rem) / 3.25);
  }
}
/* Wide screens — keep 3 full + 1/4 peek */
@media (min-width: 1200px) {
  .pricing .price-card {
    flex: 0 0 calc((100% - 3rem) / 3.25);
    width: calc((100% - 3rem) / 3.25);
  }
}
.price-card.featured {
  border: 2px solid var(--gold);
  background: #fffdf5;
  box-shadow: 0 14px 36px rgba(232, 160, 32, 0.16);
}
.price-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.price-ico {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}
.price-ico.g { color: #16a34a; background: rgba(34, 197, 94, 0.14); }
.price-ico.y { color: #d97706; background: rgba(245, 197, 24, 0.22); }
.price-ico.p { color: #7c3aed; background: rgba(139, 92, 246, 0.14); }
.price-ico.b { color: #2563eb; background: rgba(37, 99, 235, 0.12); }
.price-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.32rem 0.65rem;
  border-radius: 999px;
  white-space: nowrap;
}
.price-tag.muted { background: #f1f5f9; color: #64748b; }
.price-tag.popular { background: #111; color: var(--gold); }
.price-tag.popular i { color: var(--gold); font-size: 0.68rem; }
.price-tag.purple { background: rgba(139, 92, 246, 0.12); color: #7c3aed; }
.price-tag.blue { background: rgba(37, 99, 235, 0.1); color: #2563eb; }
.price-card h3 {
  margin: 0 0 0.2rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: #152033;
}
.price-desc {
  margin: 0 0 0.85rem;
  color: #94a3b8;
  font-size: 0.86rem;
  font-weight: 500;
}
.price-card .price {
  font-size: 2.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
  color: #152033;
  line-height: 1;
}
.price-card .price small {
  font-size: 0.88rem;
  font-weight: 600;
  color: #94a3b8;
}
.price-save {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  margin: 0 0 1rem;
  font-size: 0.76rem;
  font-weight: 600;
  color: #475569;
  line-height: 1.3;
}
.price-save.y { background: rgba(245, 197, 24, 0.18); }
.price-save.p { background: rgba(139, 92, 246, 0.1); }
.price-save.b { background: rgba(37, 99, 235, 0.08); }
.price-save em {
  flex: 0 0 auto;
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.28rem 0.5rem;
  border-radius: 999px;
  white-space: nowrap;
}
.price-save.y em { background: #d1fae5; color: #047857; }
.price-save.p em { background: rgba(139, 92, 246, 0.16); color: #6d28d9; }
.price-save.b em { background: rgba(37, 99, 235, 0.14); color: #1d4ed8; }
.price-features {
  display: grid;
  gap: 0.55rem;
  align-content: start;
  margin: 0 0 1rem;
  padding: 0.2rem 0.45rem 0.35rem 0.15rem;
  list-style: none;
  color: #334155;
  font-size: 0.9rem;
  font-weight: 600;
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}
.price-features::-webkit-scrollbar {
  width: 6px;
}
.price-features::-webkit-scrollbar-track {
  background: transparent;
}
.price-features::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 999px;
}
.price-features::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  line-height: 1.35;
  min-width: 0;
}
.price-features li::before { content: none; }
.price-features i {
  font-size: 0.95rem;
  flex-shrink: 0;
  width: 1.05em;
  height: 1.05em;
  line-height: 1;
  margin-top: 0.12em;
  overflow: visible;
}
.price-features.g i { color: #16a34a; }
.price-features.y i { color: #d97706; }
.price-features.p i { color: #7c3aed; }
.price-features.b i { color: #2563eb; }
.price-cta {
  width: 100%;
  justify-content: center;
  margin-top: auto;
  flex-shrink: 0;
  gap: 0.45rem;
}
.price-cta i { font-size: 0.78rem; }
.price-note {
  margin: 0.7rem 0 0;
  text-align: center;
  color: #94a3b8;
  font-size: 0.78rem;
  font-weight: 500;
  flex-shrink: 0;
}
.pricing-trust {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
  padding-top: 1.65rem;
  border-top: 1px solid #eef1f5;
}
@media (min-width: 800px) {
  .pricing-trust {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    align-items: center;
  }
  .pricing-trust-item:not(:first-child) {
    border-left: 1px solid #e5e7eb;
    padding-left: 1.75rem;
    margin-left: 0.25rem;
  }
  .pricing-trust-item:not(:last-child) {
    padding-right: 1.75rem;
  }
}
.pricing-trust-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.pti {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.pti.g { color: #16a34a; background: rgba(34, 197, 94, 0.12); }
.pti.y { color: #d97706; background: rgba(245, 197, 24, 0.22); }
.pti.r { color: #e11d48; background: rgba(244, 63, 94, 0.12); }
.pricing-trust-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: #152033;
  margin-bottom: 0.12rem;
  line-height: 1.25;
}
.pricing-trust-item p {
  margin: 0;
  color: #94a3b8;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.35;
}

/* ===== FAQ ===== */
.faq { padding: 2.5rem 0 3rem; background: #fff; }
.faq-list { max-width: 740px; margin: 0 auto; display: grid; gap: 0.6rem; }
.faq-item {
  border: 1px solid var(--line); border-radius: 14px;
  background: #fff; padding: 0.15rem 1rem;
}
.faq-item summary {
  cursor: pointer; font-weight: 700; padding: 0.95rem 0; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-a { margin: 0 0 1rem; color: var(--ink-muted); font-size: 0.94rem; }

/* ===== CTA BAND ===== */
.cta {
  padding: 1rem 0 3.5rem;
}
.cta-wrap {
  border-radius: 28px;
}
.cta-band {
  background: #141820;
  color: #fff;
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.18);
  /* clip children even if ancestors animate */
  isolation: isolate;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
@media (min-width: 900px) {
  .cta-band {
    grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.4fr) minmax(230px, 0.95fr);
    align-items: stretch;
  }
}
.cta-media {
  position: relative;
  min-height: 200px;
  background: #eceff3;
  overflow: hidden;
}
@media (min-width: 900px) {
  .cta-media {
    min-height: 100%;
    border-radius: 28px 0 0 28px;
  }
}
.cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  min-height: 200px;
}
@media (min-width: 900px) {
  .cta-media img {
  position: absolute;
    inset: 0;
    min-height: 0;
  }
}
.cta-copy {
  padding: 1.85rem 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.65rem;
}
@media (min-width: 900px) {
  .cta-copy {
    padding: 2.1rem 1.75rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
}
.cta-eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cta-copy h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  letter-spacing: -0.03em;
  line-height: 1.22;
  font-weight: 800;
  color: #fff;
  max-width: 22ch;
}
.cta-hl { color: var(--gold); }
.cta-copy p {
  margin: 0;
  color: #aeb4c0;
  font-size: 0.92rem;
  line-height: 1.5;
  max-width: 36ch;
}
.cta-checks {
  margin: 0;
  padding: 1.6rem 1.5rem 1.75rem;
  display: grid;
  gap: 0.85rem;
  align-content: center;
  list-style: none;
}
@media (min-width: 900px) {
  .cta-checks { padding: 1.85rem 1.65rem; }
}
.cta-checks li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: #fff;
}
.cta-checks li::before { content: none; }
.cta-check {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--gold);
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.72rem;
}

/* ===== FOOTER ===== */
.site-footer {
  background:
    radial-gradient(ellipse 80% 50% at 10% 20%, rgba(245, 197, 24, 0.08), transparent 55%),
    radial-gradient(ellipse 70% 45% at 90% 80%, rgba(245, 197, 24, 0.06), transparent 50%),
    #fffefb;
  border-top: 1px solid #eef1f5;
  padding: 3rem 0 0;
  color: var(--ink-soft);
}
.footer-main {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.25rem;
}
@media (min-width: 1100px) {
  .footer-main {
    grid-template-columns: minmax(220px, 1.15fr) minmax(0, 2.6fr);
    gap: 0;
    align-items: stretch;
  }
  .footer-brand {
    padding-right: 1.5rem;
    border-right: 1px solid #e8ecf1;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .footer-brand .footer-trust {
    margin-top: auto;
  }
  .footer-cols {
    padding-left: 0;
    height: 100%;
  }
}
.footer-cols {
  display: grid;
  gap: 1.75rem;
}
@media (min-width: 700px) {
  .footer-cols {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    align-items: stretch;
  }
  .footer-cols .footer-col {
    padding: 0 1.25rem;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .footer-cols .footer-col:first-child {
    padding-left: 1.35rem;
  }
  .footer-cols .footer-col:last-child {
    padding-right: 0;
  }
  .footer-cols .footer-col:not(:first-child) {
    border-left: 1px solid #e8ecf1;
  }
  /* Spread Quick Links / Support — keep natural link height (no flex-grow flash on click) */
  .footer-cols .footer-col:not(.footer-contact) {
    justify-content: flex-start;
    gap: 0;
  }
  .footer-cols .footer-col:not(.footer-contact) > a {
    margin: 0 0 0.55rem;
    flex: 0 0 auto;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
  }
  .footer-cols .footer-col:not(.footer-contact) > a:last-of-type {
    margin-bottom: 0;
  }
  .footer-cols .footer-col:not(.footer-contact) > h4 {
    flex: 0 0 auto;
    margin-bottom: 0.85rem;
  }
}
.footer-brand .brand { margin-bottom: 0.85rem; }
.footer-brand .brand--logo-only .brand-logo {
  width: auto;
  height: 50px;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
  background: transparent;
}
.footer-brand .brand-text strong {
  letter-spacing: -0.02em;
}
.footer-brand .brand-text strong .brand-caro { color: #152033; }
.footer-brand .brand-text strong .brand-cushion { color: var(--gold-deep); }
.footer-blurb {
  margin: 0 0 1.1rem;
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.55;
  max-width: 22rem;
}
.socials {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}
.socials a {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #fff;
  border: 0;
  color: #334155;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  line-height: 1;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.1);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.socials a i { display: block; line-height: 1; }
.socials a.soc-fb { color: #1877f2; }
.socials a.soc-ig i {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.socials a.soc-yt { color: #ff0000; }
.socials a.soc-wa { color: #25d366; }
.socials a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.14);
}
.footer-trust {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: #fff6e8;
  border: 0;
  border-radius: 16px;
  padding: 0.95rem 1.1rem;
  max-width: 24rem;
}
.footer-trust-ico {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #ffe8c8;
  color: #f59e0b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.footer-trust-ico i { display: block; line-height: 1; }
.footer-trust strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 0.1rem;
  line-height: 1.25;
}
.footer-trust p {
  margin: 0;
  font-size: 0.7rem;
  color: #94a3b8;
  font-weight: 500;
}
.footer-col h4 {
  margin: 0 0 1rem;
  color: #152033;
  font-size: 1rem;
  font-weight: 800;
  position: relative;
  padding-bottom: 0.55rem;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 3px;
  border-radius: 99px;
  background: var(--gold);
}
.footer-col > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #64748b;
  min-height: 1.5rem;
}
.footer-col:not(.footer-contact) > a:last-child { margin-bottom: 0; }
.footer-col > a i {
  font-size: 0.62rem;
  color: #cbd5e1;
  flex-shrink: 0;
  transition: color 0.15s ease, transform 0.15s ease;
}
.footer-col:not(.footer-contact) > a:hover i {
  color: var(--gold-deep);
  transform: translateX(2px);
}
.footer-col > a:hover { color: var(--gold-deep); }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
  scroll-margin-top: calc(var(--nav-h) + 16px);
}
.footer-contact > h4 {
  margin-bottom: 0.85rem;
  flex: 0 0 auto;
}
.footer-contact > a,
.footer-contact > .footer-contact-item {
  margin: 0;
  justify-content: flex-start;
  flex: 1 1 auto;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
  min-height: 2.5rem;
}
.footer-contact-item:hover strong { color: var(--gold-deep); }
.fci {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #fff9e5;
  color: #f5b400;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}
.fci i,
.footer-contact .fci i,
.footer-contact-item .fci i {
  display: block;
  line-height: 1;
  color: #f5b400 !important;
  font-size: inherit;
}
.footer-contact-item strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}
.footer-contact-item small {
  display: block;
  margin-top: 0.12rem;
  font-size: 0.74rem;
  color: #94a3b8;
  font-weight: 500;
}
.footer-bottom-bar {
  border-top: 1px solid #eef1f5;
  background: #fff;
  padding: 1rem 0 1.1rem;
}
.footer-bottom {
  display: grid;
  gap: 1rem;
  align-items: center;
}
@media (min-width: 1100px) {
  .footer-bottom {
    grid-template-columns: minmax(210px, 0.9fr) minmax(0, 1.6fr) minmax(180px, 0.85fr);
    gap: 0;
  }
  .footer-bottom-left {
    padding-right: 1.1rem;
    border-right: 1px solid #e5e7eb;
  }
  .footer-bottom-center {
    padding: 0 1.1rem;
    display: flex;
    justify-content: center;
  }
  .footer-bottom-right {
    padding-left: 1.1rem;
    border-left: 1px solid #e5e7eb;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
}
.footer-copy {
  margin: 0;
  font-size: 0.72rem;
  color: #64748b;
  line-height: 1.4;
}
.footer-copy-main {
  display: block;
  white-space: nowrap;
}
.footer-copy-main strong {
  font-weight: 800;
  color: #334155;
}
.footer-copy-sub {
  display: block;
  margin-top: 0.12rem;
  color: #94a3b8;
  font-size: 0.68rem;
  white-space: nowrap;
}
.footer-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 0;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (min-width: 700px) {
  .footer-highlights {
    flex-wrap: nowrap;
    gap: 0;
    justify-content: space-between;
  }
  .fh-item:not(:first-child) {
    border-left: 1px solid #e5e7eb;
    padding-left: 0.9rem;
    margin-left: 0.15rem;
  }
  .fh-item:not(:last-child) { padding-right: 0.85rem; }
}
.fh-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}
.fh-ico {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #fff9e5;
  color: #f5b400;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}
.fh-ico i { display: block; line-height: 1; }
.fh-item strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  white-space: nowrap;
}
.fh-item small {
  display: block;
  margin-top: 0.05rem;
  font-size: 0.64rem;
  color: #94a3b8;
  font-weight: 500;
  white-space: nowrap;
}
.footer-slogan {
  margin: 0;
  font-family: "Caveat", cursive;
  font-style: normal;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e3a5f;
  position: relative;
  display: inline-block;
  padding-bottom: 0.45rem;
  white-space: nowrap;
  letter-spacing: 0.01em;
  line-height: 1.1;
  transform: rotate(-3.5deg);
  transform-origin: center bottom;
}
.footer-slogan::after {
  content: "";
  position: absolute;
  left: 4%;
  right: 2%;
  bottom: 0.05rem;
  height: 0.38rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12' preserveAspectRatio='none'%3E%3Cpath d='M2 8 C40 2, 80 11, 120 6 S180 2, 198 7' fill='none' stroke='%23F5C518' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  pointer-events: none;
}

/* Float / cookie — floating Download Android App removed (duplicate of Hero Google Play CTA) */
.app-download-bar,
.app-download-bar a { display: none !important; }
.float-actions {
  position: fixed; right: 1rem; bottom: 1rem; display: grid; gap: 0.55rem; z-index: 90;
}
  .fab {
  width: 48px; height: 48px; border-radius: 999px;
  display: grid; place-items: center; box-shadow: var(--shadow);
  border: 0; font-size: 1.05rem; line-height: 1;
}
.fab i { display: block; line-height: 1; }
.fab-top {
  background: #fff; color: var(--ink); opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.fab-top.is-visible { opacity: 1; pointer-events: auto; }
.fab-wa { background: #25d366; color: #fff; }
.cookie-bar {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 120;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 1rem; box-shadow: var(--shadow-lg);
  display: none; gap: 1rem; align-items: center; justify-content: space-between; flex-wrap: wrap;
}
.cookie-bar.is-visible { display: flex; }

.page-hero { padding: 2.5rem 0 1rem; background: var(--gold-soft); }
.page-hero h1 { margin: 0.35rem 0; letter-spacing: -0.03em; }
.prose { padding: 2rem 0 3rem; max-width: 46rem; }
.card-grid { display: grid; gap: 1rem; }
@media (min-width: 700px) { .card-grid.three { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .card-grid.three { grid-template-columns: repeat(3, 1fr); } }
.media-card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  overflow: hidden; box-shadow: var(--shadow);
}
.media-thumb {
  background: var(--gold-soft); color: var(--gold-deep);
  font-weight: 800; padding: 1.75rem 1.25rem;
}
.media-body { padding: 1.15rem 1.25rem 1.35rem; }
.media-body .tag { font-size: 0.75rem; font-weight: 700; color: var(--gold-deep); }
.media-body h3 { margin: 0.35rem 0; font-size: 1.05rem; }
.media-body p { margin: 0; color: var(--ink-muted); font-size: 0.92rem; }

  .reveal {
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }
/* Above-the-fold hero must paint immediately (LCP) — never wait for JS */
.hero .reveal {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 640px) {
  .device-lg { width: 190px; }
  .device-sm { width: 155px; }
}

/* Pricing CTA as button */
button.price-cta {
  cursor: pointer;
  font: inherit;
  appearance: none;
  -webkit-appearance: none;
}

/* Plan inquiry modal — fixed compact form (no inner scrollbar) */
body.inquiry-open { overflow: hidden; }
.inquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 0.75rem;
}
.inquiry-modal[hidden] { display: none !important; }
.inquiry-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  border: 0;
  cursor: pointer;
}
.inquiry-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 480px);
  max-height: none;
  overflow: visible;
  background: #fff;
  border-radius: 18px;
  padding: 1.15rem 1.15rem 1.1rem;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.28);
}
.inquiry-modal-x {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: #f1f5f9;
  color: #334155;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
}
.inquiry-modal-panel h2 {
  margin: 0 2rem 0.2rem 0;
  font-size: 1.2rem;
  font-weight: 800;
  color: #152033;
  line-height: 1.2;
}
.inquiry-modal-sub {
  margin: 0 0 0.75rem;
  color: #64748b;
  font-size: 0.82rem;
  line-height: 1.35;
}
.inquiry-hp {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.inquiry-grid {
  display: grid;
  gap: 0.55rem 0.65rem;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 0.55rem;
}
.inquiry-field {
  margin: 0 0 0.55rem;
}
.inquiry-grid .inquiry-field {
  margin: 0;
}
.inquiry-field label {
  display: block;
  margin: 0 0 0.22rem;
  font-size: 0.74rem;
  font-weight: 700;
  color: #475569;
  line-height: 1.2;
}
.inquiry-field label span { color: #dc2626; }
.inquiry-field input,
.inquiry-field textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 0.5rem 0.7rem;
  font: inherit;
  font-size: 0.88rem;
  color: #152033;
  background: #fff;
  line-height: 1.3;
}
.inquiry-field textarea {
  resize: none;
  min-height: 5.5rem;
  max-height: none;
  height: 5.5rem;
}
.inquiry-field--message {
  grid-column: 1 / -1;
}
.inquiry-field--math {
  grid-column: 1 / -1;
}
.inquiry-math-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-sizing: border-box;
  width: 100%;
  padding: 0.55rem 0.7rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
}
.inquiry-math-box:focus-within {
  border-color: #f5c518;
  outline: 2px solid rgba(245, 197, 24, 0.35);
  background: #fff;
}
.inquiry-math-q {
  flex: 1 1 auto;
  font-size: 0.92rem;
  font-weight: 700;
  color: #152033;
  line-height: 1.3;
  white-space: nowrap;
}
.inquiry-math-q strong {
  color: #0f172a;
  font-weight: 800;
}
.inquiry-math-box input {
  flex: 0 0 7.5rem;
  width: 7.5rem;
  margin: 0;
  text-align: center;
  font-weight: 700;
  background: #fff;
  border: 1.5px solid #dbe3ee;
  border-radius: 10px;
  padding: 0.55rem 0.5rem;
}
.inquiry-math-box input:focus {
  outline: none;
  border-color: #f5c518;
}
.inquiry-math-box input::-webkit-outer-spin-button,
.inquiry-math-box input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.inquiry-math-box input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}
.inquiry-field input[readonly] {
  background: #f8fafc;
  color: #334155;
  font-weight: 700;
}
.inquiry-field input:focus,
.inquiry-field textarea:focus {
  outline: 2px solid rgba(245, 197, 24, 0.45);
  border-color: #f5c518;
}
.inquiry-error {
  margin: 0 0 0.45rem;
  color: #b91c1c;
  font-size: 0.8rem;
  font-weight: 600;
}
.inquiry-success {
  margin: 0 0 0.45rem;
  color: #047857;
  font-size: 0.8rem;
  font-weight: 600;
}
.inquiry-submit {
  width: 100%;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.1rem;
  font-size: 0.9rem;
  margin-top: 0.15rem;
  position: relative;
}
.inquiry-submit-loader {
  display: none;
  align-items: center;
  gap: 0.45rem;
}
.inquiry-submit.is-loading {
  pointer-events: none;
  cursor: wait;
  opacity: 1;
}
.inquiry-submit.is-loading .inquiry-submit-label {
  display: none;
}
.inquiry-submit.is-loading .inquiry-submit-loader {
  display: inline-flex;
}
@media (max-width: 420px) {
  .inquiry-grid { grid-template-columns: 1fr; }
}
