:root {
  --bg: #ffffff;
  --navy: #0a1a3a;
  --navy2: #1e3a8a;
  --gold: #f4c430;
  --gold2: #d4af37;
  --red: #dc2626;
  --green: #25d366;
  --imsg: #007aff;

  --text: #0a1a3a;
  --muted: #6b7280;
  --muted2: #9ca3af;
  --border: #e5e7eb;

  --radius-sm: 0.5rem;
  --radius: 0.75rem;
  --radius-lg: 1rem;
  --pill: 999rem;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
  --shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.25);

  --container: 80rem;
  --pad: clamp(1rem, 2.5vw, 2rem);

  --h1: clamp(2.25rem, 4vw, 4rem);
  --h2: clamp(1.9rem, 2.6vw, 3.25rem);
  --p: clamp(1rem, 1.05vw, 1.125rem);
  --fine: 0.8125rem;
}

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

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  overflow-x: hidden;
  color: var(--text);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

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

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

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

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  background: #fff;
  color: #000;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-sm);
  transform: translateY(-200%);
  transition: transform 180ms ease;
  z-index: 50;
}
.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* Topbar + header */
.topbar {
  background: var(--gold);
  color: var(--navy);
  font-size: 0.875rem;
  font-weight: 700;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem var(--pad);
}
.topbar__msg {
  text-align: center;
  flex: 1;
}
.topbar__countdown {
  display: none;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.topbar__time {
  opacity: 0.75;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.25s ease;
}
.header--scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.13), 0 1px 4px rgba(0, 0, 0, 0.08);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem var(--pad);
}
.brand {
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(1.125rem, 1.3vw, 1.5rem);
  color: var(--navy);
  white-space: nowrap;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Language Switcher */
.langSwitch {
  display: flex;
  align-items: center;
  background: #f3f4f6;
  border-radius: 0.75rem;
  padding: 0.25rem;
  gap: 0.25rem;
}

.langSwitch__btn {
  border: none;
  background: transparent;
  border-radius: 0.25rem;
  padding: 0.3rem 0.65rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #6b7280;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease;
  line-height: 1.5;
}

.langSwitch__btn--active {
  background: var(--gold2);
  color: #fff;
}

.langSwitch__btn:not(.langSwitch__btn--active):hover {
  color: var(--navy);
}

.header__phone {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--gold2);
}

.icon {
  width: 1rem;
  height: 1rem;
  display: inline-block;
}
.icon--phone {
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C8.61 21 3 15.39 3 8.5c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E")
    center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C8.61 21 3 15.39 3 8.5c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E") center / contain
    no-repeat;
}
.icon--spark {
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l2.4 7.4H22l-6.2 4.5 2.4 7.4L12 17 5.8 21.3l2.4-7.4L2 9.4h7.6z'/%3E%3C/svg%3E")
    center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l2.4 7.4H22l-6.2 4.5 2.4 7.4L12 17 5.8 21.3l2.4-7.4L2 9.4h7.6z'/%3E%3C/svg%3E") center / contain
    no-repeat;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.75rem;
  padding: 0.625rem 1rem;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease, background 160ms ease,
    color 160ms ease;
  cursor: pointer;
  user-select: none;
}
.btn:active {
  transform: translateY(1px);
}
.btn--primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1);
}
.btn--primary:hover {
  filter: brightness(0.98);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.16), 0 6px 10px rgba(0, 0, 0, 0.12);
}
.btn--wa {
  background: var(--green);
  color: #fff;
}
.btn--imsg {
  background: var(--imsg);
  color: #fff;
}
.btn--gold {
  background: var(--gold);
  filter: drop-shadow(0 0 15px rgba(244, 196, 48, 0.45));
  color: var(--navy);
  box-shadow: 0 0 15px rgba(244, 196, 48, 0.5);
}
.btn--navy {
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn--lg {
  padding: 1rem 1.25rem;
  font-size: 1.125rem;
}
.btn--xl {
  padding: 1.05rem 1.4rem;
  font-size: 1.125rem;
}
.btn--md {
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(154deg, var(--navy) 0%, var(--navy2) 100%);
  color: #fff;
  overflow: clip;
}
.hero__grid {
  padding: clamp(1.5rem, 4vw, 4rem) var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: clamp(1.25rem, 3vw, 2.5rem);
}
.hero__copy {
  min-width: 0;
}
.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.pill--danger {
  background: rgba(251, 44, 54, 0.2);
  border: 1px solid rgba(251, 44, 54, 0.4);
  color: #fca5a5;
}
.pill--gold {
  background: rgba(244, 196, 48, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
}
.pill--wide {
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
}
.dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: var(--pill);
  background: rgba(251, 44, 54, 0.67);
}
.hero__h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: var(--h1);
  line-height: 1.1;
  margin: 0.75rem 0 0.75rem;
}
.accent {
  color: var(--gold);
}
.hero__sub {
  margin: 0 0 1.25rem;
  font-size: clamp(1.05rem, 1.2vw, 1.25rem);
  color: #e5e7eb;
  font-weight: 500;
}
.hero__media {
  display: flex;
  gap: 0.4rem;
  margin: 1.25rem 0;
}
.thumb {
  border-radius: var(--radius-lg);
  overflow: clip;
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  height: 180px;
}
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;  /* keep face in frame */
  display: block;
}
.thumb__cap {
  position: absolute;
  left: 0.5rem;
  right: 0.5rem;
  bottom: 0.5rem;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 0.25rem;
  padding: 0.35rem 0.5rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}
.thumb__tag {
  font-size: 0.625rem;
  font-weight: 800;
  color: var(--gold);
}
.thumb__meta {
  font-size: 0.5625rem;
  color: #fff;
}

.hero__banner {
  margin-top: 1.25rem;
  background: rgba(244, 196, 48, 0.1);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  opacity: 0.67;
}
.hero__bannerTitle {
  font-weight: 800;
  color: var(--gold);
  font-size: 1.125rem;
}
.hero__bannerSub {
  font-weight: 600;
  color: #fca5a5;
  font-size: 0.85rem;
}
.hero__rating {
  text-align: right;
}
.hero__ratingVal {
  font-weight: 800;
  color: var(--gold);
  font-size: 1.25rem;
  line-height: 1.2;
}
.hero__ratingSub {
  font-size: 0.625rem;
  color: #d1d5db;
}

.hero__stats {
  margin-top: 1.1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}
.hero__mobileCta {
  display: none;
}
.hero__mobileCta__main {
  width: 100%;
  text-align: center;
  justify-content: center;
}
.hero__mobileCta__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
}
.hero__mobileCta__row .btn {
  justify-content: center;
  text-align: center;
}
.stat {
  text-align: center;
}
.stat__val {
  font-weight: 800;
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1.2;
}
.stat__lbl {
  color: #d1d5db;
  font-size: 0.625rem;
}

.hero__fade {
  height: clamp(4rem, 8vw, 8rem);
  background: linear-gradient(
    to bottom,
    transparent 0%,
    #ffffff 100%
  );
  margin-top: -1px;
}

/* Lead form */
.lead {
  background: rgba(255, 255, 255, 0.98);
  color: var(--navy);
  border: 1.85px solid #d4af37;
  border-radius: 1rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  padding: clamp(1rem, 3vw, 1.75rem);
  min-width: 0;        /* prevent grid blowout */
  width: 100%;         /* always fill grid column */
}
.lead__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.7rem;
}
.lead__badge {
  background: rgba(220, 38, 38, 0.67);
  color: #fff;
  border-radius: var(--pill);
  padding: 0.4rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 800;
  white-space: nowrap;
}
.lead__mini {
  font-size: 0.6875rem;
  font-weight: 700;
  color: #dc2626;
  white-space: nowrap;
}
.lead__title {
  margin: 0.35rem 0 0.4rem;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 800;
  color: #0a1a3a;
  line-height: 1.3;
}
.lead__bullets {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.65;
  margin-bottom: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.form {
  display: grid;
  gap: 0.75rem;
}
.field input,
.field select {
  width: 100%;
  border: 1.85px solid #d1d5dc;
  border-radius: 0.75rem;
  padding: 0.875rem 1rem;
  font-size: 0.9375rem;
  outline: none;
  background: #fff;
  color: #0a1a3a;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.field input::placeholder {
  color: rgba(17, 24, 39, 0.5);
}
.field input:focus,
.field select:focus {
  border-color: #d4af37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
}
.field--select select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #6b7280 50%),
    linear-gradient(135deg, #6b7280 50%, transparent 50%);
  background-position: calc(100% - 1.25rem) calc(1.15rem), calc(100% - 0.95rem) calc(1.15rem);
  background-size: 8px 8px, 8px 8px;
  background-repeat: no-repeat;
}
/* Placeholder state (required + invalid = nothing selected yet) */
.field--select select:required:invalid { color: rgba(17, 24, 39, 0.5); }
.field--select select:required:valid   { color: #0a1a3a; }
/* Firefox: force option text color */
.field--select select option { color: #0a1a3a; }
.field--select select option[value=""] { color: rgba(17, 24, 39, 0.5); }

/* ── Field Validation States ─────────────────────────────────── */
.field--error input,
.field--error select {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12) !important;
  background: rgba(254, 242, 242, 0.6);
}
.upload--error {
  border-color: #ef4444 !important;
  background: rgba(254, 242, 242, 0.4) !important;
}
.field__error,
.upload__error {
  display: block;
  color: #dc2626;
  font-size: 0.74rem;
  font-weight: 500;
  margin-top: 0.3rem;
  padding-left: 0.2rem;
  line-height: 1.35;
  animation: fadeUp 0.15s ease;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Form Step Indicator (on white card) ─────────────────────── */
.form__stepBar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.form__stepDot {
  width: 1.625rem;
  height: 1.625rem;
  border-radius: 50%;
  background: #f3f4f6;
  border: 1.5px solid #d1d5dc;
  color: #9ca3af;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.form__stepDot--active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.form__stepDot--done {
  background: #16a34a;
  border-color: #16a34a;
  color: #fff;
}
.form__stepLine {
  flex: 1;
  height: 2px;
  background: #e5e7eb;
  border-radius: 1px;
}

/* ── Form Steps ──────────────────────────────────────────────── */
.form__step {
  display: grid;
  gap: 0.75rem;
}
.form__step[hidden] { display: none !important; }

/* Back button */
.form__back {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: none;
  color: #6b7280;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0 0 0.65rem 0;
  transition: color 0.15s ease;
  letter-spacing: 0.01em;
}
.form__back:hover { color: #0a1a3a; }

/* ── Form Success State ───────────────────────────────────────── */
.form__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: 2rem 0.5rem;
  animation: fadeUp 0.4s ease;
}
.form__successIcon { font-size: 2.5rem; }
.form__successTitle {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 800;
  color: #0a1a3a;
}
.form__successMsg {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.55;
  max-width: 22rem;
}

/* ── Form Error Message (API level) ──────────────────────────── */
.form__errorMsg {
  background: rgba(239, 68, 68, 0.07);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 0.625rem;
  padding: 0.65rem 0.9rem;
  font-size: 0.82rem;
  color: #b91c1c;
  line-height: 1.45;
  margin-bottom: 0.5rem;
}

.upload {
  border: 1.85px dashed #d4af37;
  border-radius: 0.75rem;
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
  cursor: pointer;
  position: relative;
  background: transparent;
  transition: background 160ms ease;
}
.upload:hover {
  background: rgba(212, 175, 55, 0.05);
}
.upload input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}
.upload__icon {
  width: 1.25rem;
  height: 1.25rem;
  background: #6b7280;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19.35 10.04A7.49 7.49 0 0012 4C9.11 4 6.6 5.64 5.35 8.04A5.994 5.994 0 000 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM14 13v4h-4v-4H7l5-5 5 5h-3z'/%3E%3C/svg%3E")
    center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19.35 10.04A7.49 7.49 0 0012 4C9.11 4 6.6 5.64 5.35 8.04A5.994 5.994 0 000 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM14 13v4h-4v-4H7l5-5 5 5h-3z'/%3E%3C/svg%3E") center / contain
    no-repeat;
}
.upload__title {
  font-weight: 700;
  font-size: 0.8125rem;
  color: #6b7280;
  margin-top: 0.1rem;
}
.upload__sub {
  font-size: 0.6875rem;
  color: #9ca3af;
}

.divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.5rem;
  color: #6a7282;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.divider::before,
.divider::after {
  content: "";
  height: 1px;
  background: #d1d5dc;
}
.divider span {
  background: #fff;
  padding: 0 0.4rem;
  white-space: nowrap;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
}
.form__row .btn {
  justify-content: center;
  border-radius: 0.75rem;
  padding: 0.825rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
}
/* Override WhatsApp + iMessage with Figma exact colors */
.form__row .btn--wa  { background: #25d366; color: #fff; }
.form__row .btn--imsg { background: #007aff; color: #fff; }
.form__fine {
  margin: 0.2rem 0 0;
  font-size: 0.6875rem;
  color: #6b7280;
  text-align: center;
  line-height: 1.4;
}
.form__miniStats {
  margin-top: 0;
  padding-top: 0.625rem;
  border-top: 1px solid #e5e7eb;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.25rem;
}
.miniStat {
  text-align: center;
}
.miniStat__val {
  font-size: 1rem;
  font-weight: 800;
  color: #0a1a3a;
  line-height: 1.5;
}
.miniStat__lbl {
  font-size: 0.625rem;
  color: #6b7280;
  line-height: 1.3;
}

/* Sections */
.section {
  padding: clamp(3.25rem, 5.2vw, 6rem) 0;
}
.section--white {
  background: #fff;
}
.section--navy {
  background: linear-gradient(154deg, var(--navy) 0%, var(--navy2) 100%);
  color: #fff;
}
.section--goldSoft {
  background: #f4c430;
  color: var(--navy);
}
.section--goldGrad {
  background: linear-gradient(146deg, var(--gold) 0%, var(--gold2) 100%);
  color: var(--navy);
}
.section--soft {
  background: #f8f9fb;
}

.eyebrow {
  font-weight: 800;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  color: var(--gold2);
  text-align: center;
  margin-bottom: 0.75rem;
}
.eyebrow--gold {
  color: var(--gold);
}
.eyebrow--navy {
  color: var(--navy);
}
.twoCol__copy .eyebrow {
  text-align: left;
}
.h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: var(--h2);
  line-height: 1.15;
  margin: 0 0 1rem;
  text-align: center;
}
.h2--light {
  text-align: left;
}
.h2--navy {
  color: var(--navy);
}
.p {
  font-size: var(--p);
  color: var(--muted);
  margin: 0 0 1rem;
}
.p--navy {
  color: var(--navy);
  opacity: 0.9;
}
.p--light {
  color: #d1d5db;
}
.leadp {
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.fine {
  font-size: var(--fine);
  color: var(--muted);
  margin: 0.75rem 0 0;
}
.fine--muted {
  color: var(--muted2);
}
.center {
  text-align: center;
}
.danger {
  color: #fca5a5;
}
.gold {
  color: var(--gold);
}

/* Comparison table */
.tableCard {
  margin-top: 2rem;
}
.compare {
  border-radius: var(--radius-lg);
  overflow: clip;
  border: 1px solid var(--border);
}
.compare__head {
  display: grid;
  grid-template-columns: 0.7fr 1.4fr 1.4fr 1.25fr;
  background: #f8f9fb;
}
.compare__th {
  padding: 1rem 1rem;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.compare__th:first-child {
  justify-content: flex-start;
  color: #111827;
}
.compare__th--gold {
  background: var(--gold);
}
.compare__row {
  display: grid;
  grid-template-columns: 0.7fr 1.4fr 1.4fr 1.25fr;
  border-top: 1px solid var(--border);
}
.compare__td {
  padding: 1rem;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #111827;
}
.compare__label {
  justify-content: center;
  font-weight: 600;
}
.compare__td--gold {
  background: rgba(244, 196, 48, 0.15);
  font-weight: 600;
}

.ctaStripe {
  margin-top: 1.5rem;
  background: var(--gold);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-align: center;
  font-family: Inter, sans-serif;
  font-weight: 800;
  font-size: clamp(1.25rem, 1.7vw, 1.6rem);
  box-shadow: var(--shadow);
}
.tableCta {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
}

/* Two column */
.twoCol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
}
.cardImg {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: clip;
  aspect-ratio: 4 / 3;
}
.cardImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cardImg__badge {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  background: rgba(244, 196, 48, 0.95);
  color: var(--navy);
  border-radius: var(--pill);
  padding: 0.45rem 0.75rem;
  font-weight: 800;
  font-size: 0.75rem;
}
.twoCol__copy {
  min-width: 0;
}
.featureList {
  margin: 1.25rem 0 1.25rem;
  display: grid;
  gap: 0.75rem;
}
.feature {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 0.85rem 0.9rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.feature__icon {
  font-size: 1.8rem;
  width: 2.25rem;
  text-align: center;
}
.feature__title {
  font-weight: 800;
}
.feature__sub {
  color: #d1d5db;
  font-size: 0.875rem;
}

/* Mid placeholder */
.centerStack {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  text-align: center;
}
.mockFrame {
  width: min(48rem, 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(10, 26, 58, 0.18);
  background: rgba(255, 255, 255, 0.55);
  overflow: clip;
  box-shadow: var(--shadow);
  margin: 1rem 0 0.5rem;
}
.mockFrame__bar {
  height: 2.25rem;
  background: rgba(10, 26, 58, 0.08);
}
.mockFrame__content {
  padding: 1.2rem;
  display: grid;
  gap: 0.75rem;
}
.mockFrame__badge {
  width: fit-content;
  margin: 0 auto;
  padding: 0.35rem 0.6rem;
  border-radius: var(--pill);
  background: rgba(10, 26, 58, 0.08);
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
}
.mockFrame__title {
  font-weight: 800;
  font-size: 1.25rem;
}
.mockFrame__lines > div {
  height: 0.8rem;
  border-radius: 0.35rem;
  background: rgba(10, 26, 58, 0.08);
  margin: 0.5rem 0;
}

/* Anniversary */
.annivCard {
  margin: 2rem auto 1.75rem;
  width: min(56rem, 100%);
  background: #fff;
  border: 4px solid var(--navy);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: clamp(1.25rem, 2.4vw, 2rem);
  display: grid;
  gap: 1.1rem;
}
.annivCard__title {
  font-weight: 800;
  font-size: clamp(1.25rem, 1.4vw, 1.5rem);
  text-align: center;
  color: var(--navy);
}
.checkList {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
  font-size: clamp(1rem, 1.1vw, 1.125rem);
}
.checkList li {
  display: flex;
  gap: 0.75rem;
  align-items: baseline;
}
.checkList li::before {
  content: "✓";
  width: 1.5rem;
  height: 1.5rem;
  display: inline-grid;
  place-items: center;
  border-radius: 0.5rem;
  background: rgba(10, 26, 58, 0.06);
  color: var(--navy);
  font-weight: 900;
}
.noteBox {
  background: #f8f9fb;
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
}
.noteBox__title {
  font-weight: 800;
}
.noteBox__sub {
  margin-top: 0.35rem;
  color: var(--red);
  font-weight: 700;
}
.annivCard__cta {
  width: 100%;
}

.offerTimer {
  width: min(56rem, 100%);
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: grid;
  gap: 0.75rem;
  justify-items: center;
}
.offerTimer__title {
  font-weight: 800;
  font-size: 1.125rem;
}
.offerTimer__fine {
  color: var(--red);
  font-weight: 700;
  text-align: center;
}
.timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.timer__box {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  width: 3.75rem;
  padding: 0.55rem 0.35rem;
  text-align: center;
}
.timer__num {
  font-weight: 800;
}
.timer__lbl {
  opacity: 0.7;
  font-size: 0.625rem;
  margin-top: 0.25rem;
}
.timer__sep {
  opacity: 0.5;
  font-weight: 800;
}

/* Stat cards */
/* Expertise section */
.expertiseSection__inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}

.expertiseSection__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.expertiseSection__heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin: 0;
}

.expertiseSection__body {
  max-width: 50rem;
  text-align: center;
  color: #6b7280;
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  line-height: 1.65;
  margin: 0;
}

.statCards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  width: 100%;
}
.statCard {
  background: #fff;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.statCard__val {
  color: var(--gold2);
  font-weight: 700;
  font-size: clamp(2.25rem, 3vw, 3rem);
  line-height: 1.1;
}
.statCard__txt {
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

/* Results */
.resultsGrid {
  margin: 2rem 0 1.75rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.resultCard {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: clip;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.resultCard__img {
  position: relative;
  background: var(--border);
}
.resultCard__img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.resultCard__badge {
  position: absolute;
  right: 1rem;
  top: 1rem;
  background: var(--gold);
  color: var(--navy);
  padding: 0.35rem 0.65rem;
  border-radius: var(--pill);
  font-weight: 800;
  font-size: 0.75rem;
}
.resultCard__body {
  padding: 1rem;
}
.resultCard__title {
  color: var(--navy);
  font-weight: 600;
}
.resultCard__sub {
  color: var(--muted);
  margin-top: 0.25rem;
}

/* Services */
.servicesGrid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.serviceCard {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.6rem;
  position: relative;
}
.serviceCard__tag {
  display: inline-block;
  background: var(--gold);
  border-radius: var(--pill);
  padding: 0.35rem 0.65rem;
  font-weight: 800;
  font-size: 0.75rem;
  color: var(--navy);
  margin-bottom: 0.8rem;
}
.serviceCard__title {
  font-weight: 800;
  color: var(--navy);
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}
.serviceCard__sub {
  color: var(--muted);
  margin-top: 0.4rem;
  font-size: 0.95rem;
}
.serviceCard--featured {
  border: 2px solid var(--gold2);
}

.completeLook {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
  justify-items: center;
}
.completeLook__title {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
}
.pillRow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.pillChip {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 0.85rem 1.05rem;
  font-size: 0.95rem;
  color: var(--navy);
}

/* Journey */
.journey {
  margin: 2.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  position: relative;
}
.journey::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 2.6rem;
  height: 4px;
  background: var(--gold2);
  z-index: 0;
}
.journey li {
  text-align: center;
  position: relative;
  z-index: 1;
  padding-top: 0.25rem;
}
.journey__num {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border-radius: var(--pill);
  background: var(--gold2);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--navy);
  font-size: 1.25rem;
}
.journey__title {
  font-weight: 800;
  color: var(--navy);
}
.journey__sub {
  color: var(--muted);
  margin-top: 0.25rem;
}

/* Reviews */
.reviewsSection__inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.reviewsSection__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.reviewsSection__heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin: 0;
}

.ratingPill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--gold2);
  color: var(--navy);
  border-radius: var(--pill);
  padding: 0.75rem 1.25rem;
  box-shadow: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.1);
  font-weight: 700;
  font-size: 1rem;
}

.ratingPill__stars {
  letter-spacing: 0.1em;
  font-size: 1rem;
}

.ratingPill__text {
  font-weight: 700;
}

.reviewGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

.reviewCard {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.1);
  padding: 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.reviewCard--featured {
  border: 2px solid var(--gold2);
}

.reviewCard__badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--pill);
  padding: 0.3rem 0.65rem;
  font-size: 0.6875rem;
  font-weight: 700;
  width: fit-content;
}

.reviewCard__stars {
  color: var(--gold2);
  letter-spacing: 0.08em;
  font-size: 0.9rem;
}

.reviewCard__quote {
  margin: 0;
  font-style: italic;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.5;
  flex: 1;
}

.reviewCard__who {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: auto;
}

.avatar {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border-radius: var(--pill);
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.875rem;
  font-weight: 700;
}

.who__name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.who__meta {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 0.1rem;
}

.reviewsSection__cta {
  text-align: center;
}

.reviewsSection__ctaBtn {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  font-weight: 700;
  padding: 1.1rem 2.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.1);
  transition: filter 150ms ease, transform 150ms ease;
}

.reviewsSection__ctaBtn:hover {
  filter: brightness(1.15);
  transform: translateY(-2px);
}

/* Talk to Us */
.talkSection__inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  text-align: center;
}

.talkSection__header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.talkSection__heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin: 0;
}

.talkSection__sub {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  color: #6b7280;
  margin: 0;
}

.talkSection__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  width: 100%;
}

.talkCard {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.1);
  text-decoration: none;
  color: #fff;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.talkCard:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.15), 0 6px 10px rgba(0,0,0,0.1);
}

.talkCard--wa  { background: var(--green); }
.talkCard--imsg { background: var(--imsg); }
.talkCard--call { background: var(--navy); }

.talkCard__icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
}

.talkCard__icon svg {
  width: 100%;
  height: 100%;
}

.talkCard__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.talkCard__desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  margin: 0;
}

.talkCard__btn {
  display: inline-block;
  background: #fff;
  padding: 0.875rem 1.25rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 0.5rem;
  width: 100%;
  text-align: center;
}

.talkCard--wa  .talkCard__btn { color: var(--green); }
.talkCard--imsg .talkCard__btn { color: var(--imsg); }
.talkCard--call .talkCard__btn { background: var(--gold); color: var(--navy); }

.talkSection__footer {
  font-size: 1rem;
  color: #6b7280;
  margin: 0;
}

/* FAQ */
.faq__section {
  background: #f8f9fb;
}

.faq__container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.faq__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.faq__heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin: 0;
}

.faq__subtext {
  font-size: 1rem;
  color: #6b7280;
  margin: 0;
}

.faq__waLink {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  transition: opacity 150ms ease;
}

.faq__waLink:hover {
  opacity: 0.75;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq__item {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq__q {
  width: 100%;
  border: none;
  background: transparent;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  transition: background 150ms ease;
}

.faq__q:hover {
  background: #fafafa;
}

.faq__icon {
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  transition: transform 200ms ease;
}

.faq__q[aria-expanded="true"] .faq__icon {
  transform: rotate(45deg);
}

.faq__a {
  padding: 0 1.5rem 1.5rem;
  color: #6b7280;
  font-size: 0.9375rem;
  line-height: 1.65;
}

.faq__stillBox {
  background: var(--gold);
  border-radius: 1rem;
  padding: clamp(1.25rem, 2vw, 1.5rem) 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.faq__stillTitle {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  text-align: center;
}

.faq__stillBtns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.faq__stillBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  transition: filter 150ms ease, transform 150ms ease;
}

.faq__stillBtn:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.faq__stillBtn--wa {
  background: var(--green);
}

.faq__stillBtn--navy {
  background: var(--navy);
}

/* Final CTA */
.final {
  position: relative;
  background: linear-gradient(154deg, var(--navy) 0%, var(--navy2) 100%);
  color: #fff;
  padding: clamp(3.25rem, 5vw, 6rem) 0;
  overflow: clip;
}
.final__bg {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  pointer-events: none;
}
.final__blob {
  position: absolute;
  filter: blur(64px);
  border-radius: 999rem;
  background: #fff;
}
.final__blob--a {
  width: 8rem;
  height: 8rem;
  left: 2rem;
  top: 2rem;
}
.final__blob--b {
  width: 10rem;
  height: 10rem;
  right: 2rem;
  bottom: 2rem;
}
.final__inner {
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 1.25rem;
}
.final__h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(2.25rem, 3vw, 3.75rem);
  line-height: 1.2;
  margin: 0;
}
.final__p {
  max-width: 56rem;
  color: #d1d5db;
  font-size: clamp(1rem, 1.15vw, 1.25rem);
  margin: 0;
}
.final__kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  width: min(42rem, 100%);
}
.kpi {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 0.85rem 0.75rem;
}
.kpi__val {
  color: var(--gold);
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1.2;
}
.kpi__lbl {
  color: #d1d5db;
  font-size: 0.8125rem;
}
.final__ctaRow {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0.75rem;
  width: min(44rem, 100%);
}
.final__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}
.chip {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--pill);
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
}
.final__call {
  background: rgba(244, 196, 48, 0.1);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.1rem 1.1rem;
  width: min(30rem, 100%);
}
.final__callTitle {
  font-size: 1.125rem;
}
.final__callNum a {
  color: var(--gold);
  font-weight: 800;
  font-size: 1.4rem;
}
.final__callFine {
  color: #d1d5db;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* Urgency Banner */
.urgencyBanner {
  background: linear-gradient(173deg, #dc2626 0%, #d4af37 100%);
  padding: clamp(2rem, 4vw, 2.5rem) 1.5rem;
  text-align: center;
}

.urgencyBanner__inner {
  max-width: var(--maxW);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.urgencyBanner__heading {
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin: 0;
}

.urgencyBanner__sub {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #fff;
  margin: 0;
  opacity: 0.95;
}

.urgencyBanner__btn {
  display: inline-block;
  background: #fff;
  color: #0a1a3a;
  font-size: clamp(0.9rem, 1.3vw, 1.125rem);
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  transition: transform 150ms ease, box-shadow 150ms ease;
  margin-top: 0.25rem;
}

.urgencyBanner__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
  background: #050f1e;
  color: #d1d5db;
}

.footer__body {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding-top: clamp(2.5rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 3vw, 2.5rem);
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer__logo {
  color: var(--gold);
  font-weight: 800;
  font-size: clamp(1.1rem, 1.3vw, 1.5rem);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.footer__desc {
  color: #d1d5db;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

.footer__stars {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer__starRow {
  color: var(--gold);
  letter-spacing: 0.1em;
  font-size: 0.875rem;
}

.footer__starScore {
  color: #d1d5db;
  font-size: 0.75rem;
}

.footer__colTitle {
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
}

.footer__contactList {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: #d1d5db;
}

.footer__contactList a {
  color: #d1d5db;
  transition: color 150ms ease;
}

.footer__contactList a:hover {
  color: var(--gold);
}

.footer__msgBtns {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.35rem;
}

.footer__msgBtn {
  padding: 0.45rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #d1d5db;
  transition: filter 150ms ease;
}

.footer__msgBtn:hover {
  filter: brightness(1.15);
}

.footer__msgBtn--wa {
  background: var(--green);
}

.footer__msgBtn--imsg {
  background: var(--imsg);
}

.footer__socialList {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  font-size: 0.875rem;
}

.footer__socialList a {
  color: #fff;
  transition: color 150ms ease;
}

.footer__socialList a:hover {
  color: var(--gold);
}

.footer__annivBadge {
  margin-top: 0.5rem;
  background: rgba(244, 196, 48, 0.1);
  border: 1px solid rgba(244, 196, 48, 0.3);
  border-radius: 0.75rem;
  padding: 0.75rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer__annivTitle {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
}

.footer__annivSub {
  font-size: 0.6875rem;
  color: #d1d5db;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__bottomInner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 1.75rem;
}

.footer__legal {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.8125rem;
  color: #9ca3af;
}

.footer__status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #9ca3af;
}

.footer__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: var(--pill);
  background: #00c950;
  opacity: 0.67;
  flex-shrink: 0;
}

/* Responsive */
@media (min-width: 52rem) {
  .topbar__countdown {
    display: inline-flex;
  }
  .header__phone {
    display: inline-flex;
  }
}

@media (max-width: 64rem) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .lead {
    order: 2;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
  }
  .hero__copy {
    order: 1;
  }
  .twoCol {
    grid-template-columns: 1fr;
  }
  .eyebrow--gold,
  .h2--light {
    text-align: center;
  }
  .statCards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .resultsGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .servicesGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .reviewGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .journey {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .journey::before {
    display: none;
  }
  .footer__body {
    grid-template-columns: 1fr 1fr;
  }
  .footer__col--brand {
    grid-column: 1 / -1;
  }
  .talkSection__cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 48rem) {
  /* Mobile CTA buttons inside hero copy */
  .hero__mobileCta {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin-top: 1.25rem;
  }

  /* Lead card: full-width, tighter padding, no max-width constraint */
  .lead {
    max-width: 100%;
    border-radius: 0.875rem;
    padding: 1rem;
  }

  /* Slightly smaller badge row on narrow screens */
  .lead__badge { font-size: 0.625rem; padding: 0.35rem 0.6rem; }
  .lead__mini  { font-size: 0.625rem; }
  .lead__title { font-size: 1.25rem; }
  .lead__bullets { font-size: 0.8125rem; margin-bottom: 0.875rem; }

  /* Tighter form grid */
  .form        { gap: 0.625rem; }
  .form__step  { gap: 0.625rem; }

  /* Slightly shorter input fields */
  .field input,
  .field select {
    padding: 0.75rem 0.875rem;
    font-size: 0.875rem;
  }

  /* Upload area more compact */
  .upload { padding: 0.875rem 0.75rem; }

  /* Step indicator dots */
  .form__stepDot {
    width: 1.375rem;
    height: 1.375rem;
    font-size: 0.65rem;
  }

  /* CTA button */
  .form .btn--gold.btn--lg {
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
  }

  /* Contact buttons row — stack if screen is very narrow */
  .form__row { gap: 0.5rem; }
  .form__row .btn { padding: 0.75rem 0.5rem; font-size: 0.8125rem; }

  /* Stats row */
  .miniStat__val { font-size: 0.9rem; }
  .form__miniStats { padding-top: 0.5rem; }
}

/* Stack WA/iMessage buttons on very small phones */
@media (max-width: 24rem) {
  .form__row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 42rem) {
  /* Header — hide both WA and Free Analysis buttons on mobile */
  .header__actions .btn--primary,
  .header__actions .btn--wa {
    display: none;
  }

  /* Topbar — stack msg + countdown vertically, show countdown */
  .topbar__inner {
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .topbar__msg {
    font-size: 0.8rem;
  }
  .topbar__countdown {
    display: inline-flex;
    justify-content: center;
    font-size: 0.75rem;
  }
  .topbar__label {
    display: none;   /* "Ends in:" label wastes space on small screens */
  }
  .hero__media {
    grid-template-columns: 1fr;
  }
  .hero__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .compare__head,
  .compare__row {
    grid-template-columns: 1fr;
  }
  .compare__th:first-child,
  .compare__label {
    justify-content: center;
  }
  .compare__th {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
  }
  .compare__head .compare__th:first-child {
    border-top: 0;
  }
  .compare__td {
    padding: 0.75rem 1rem;
  }
  .final__ctaRow {
    grid-template-columns: 1fr;
  }
  .final__kpis {
    grid-template-columns: 1fr;
  }
  .statCards {
    grid-template-columns: 1fr;
  }
  .resultsGrid {
    grid-template-columns: 1fr;
  }
  .servicesGrid {
    grid-template-columns: 1fr;
  }
  .journey {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .journey::before {
    display: none;
  }
  .reviewGrid {
    grid-template-columns: 1fr;
  }
  .footer__body {
    grid-template-columns: 1fr;
  }
  .footer__socialList {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer__bottomInner {
    flex-direction: column;
    align-items: flex-start;
  }
  .urgencyBanner__btn {
    width: 100%;
    text-align: center;
    padding: 1rem;
  }
  .faq__stillBtns {
    flex-direction: column;
    align-items: stretch;
  }
  .faq__stillBtn {
    width: 100%;
  }
}

/* Floating contact buttons */
.floatBtns {
  position: fixed;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 900;
}

.floatBtn {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.floatBtn:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.floatBtn--wa   { background: var(--green); }
.floatBtn--imsg { background: var(--imsg); }
.floatBtn--call { background: var(--gold); }

.floatBtn svg {
  pointer-events: none;
}

@media (max-width: 42rem) {
  .floatBtns {
    right: 0.75rem;
    gap: 0.5rem;
  }
  .floatBtn {
    width: 2.75rem;
    height: 2.75rem;
  }
  .floatBtn svg {
    width: 20px;
    height: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
