/* =====================================================
   Neonet Digital — Redesign Overlay
   Loaded AFTER styles.css. Layered overrides only.
   Brand kept: navy + teal. New accent: amber (high-vis).
   Background: white. Added: motion, carousel, banners.
   ===================================================== */

:root {
  /* Override design tokens, keep names so existing CSS still works */
  --bg: #FFFFFF;
  --bg-alt: #F8F6F1;          /* very subtle warm white for alternating sections */
  --paper: #FFFFFF;
  --navy: #16293D;
  --navy-deep: #0E1E2E;
  --teal: #4A9B93;
  --teal-light: #7BC0B9;
  --amber: #F4A261;           /* NEW accent — warm high-vis */
  --amber-deep: #E08A45;
  --rule: #E5E1D8;
  --hairline: #EFEAE0;

  --shadow-sm: 0 1px 2px rgba(15,30,46,0.04), 0 2px 8px rgba(15,30,46,0.04);
  --shadow-md: 0 8px 24px rgba(15,30,46,0.08), 0 2px 6px rgba(15,30,46,0.04);
  --shadow-lg: 0 24px 60px rgba(15,30,46,0.12), 0 4px 16px rgba(15,30,46,0.06);
  --shadow-amber: 0 8px 24px rgba(244,162,97,0.25);
}

body { background: var(--bg); }

/* ---------- Smooth motion baseline ---------- */
/* Smooth scroll lives on html only (set in styles.css). Applying it to every
   element fights native momentum scroll on iOS/Android and causes overshoot. */

@keyframes fadeUp {
  from { opacity: 0; transform: translate3d(0, 24px, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-8px); }
}
@keyframes pulseGlow {
  0%,100% { box-shadow: 0 0 0 0 rgba(74,155,147,0.4); }
  50%     { box-shadow: 0 0 0 12px rgba(74,155,147,0); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes slideTrack {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- Header polish ---------- */
.site-header {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-scrolled {
  border-bottom: 0;
  box-shadow: none;
}

.btn--primary {
  background: var(--teal);
  color: #fff;
  position: relative;
  overflow: hidden;        /* clip the hover shine inside the pill */
  box-shadow: 0 4px 14px rgba(74,155,147,0.22);
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
/* Inner shine sweep on hover only */
.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.28) 50%, transparent 100%);
  background-size: 200% 100%;
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  pointer-events: none;
}
.btn--primary:hover::before { transform: translateX(100%); }
.btn--primary:hover {
  background: var(--teal-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(74,155,147,0.35);
}

/* SCROLL-TRIGGERED MOVEMENT — gentle pop + arrow nudge, no colour-dependent halo */
.reveal.is-visible .btn--primary,
.btn--primary.is-visible {
  animation: btnPop 0.75s cubic-bezier(.34, 1.5, .5, 1) 0.4s both;
}
@keyframes btnPop {
  0%   { transform: scale(0.94) translateY(2px); }
  55%  { transform: scale(1.04) translateY(-2px); }
  100% { transform: scale(1)    translateY(0); }
}

/* Arrow inside the button gives a single nudge to the right after the pop lands */
.reveal.is-visible .btn--primary .btn-arrow,
.btn--primary.is-visible .btn-arrow {
  display: inline-block;
  animation: arrowNudge 0.7s cubic-bezier(.2,.7,.2,1) 1.1s 1 both;
}
@keyframes arrowNudge {
  0%   { transform: translateX(0); }
  45%  { transform: translateX(6px); }
  100% { transform: translateX(0); }
}

/* Dark-background CTAs (homepage big-CTA, safety-net, founder's promise) need a real shadow,
   not a translucent teal one which disappears on navy */
.big-cta .btn--primary,
.safety-net .btn--primary,
.stats-banner .btn--primary,
.promise .btn--primary {
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.42),
    0 2px 6px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.big-cta .btn--primary:hover,
.safety-net .btn--primary:hover,
.stats-banner .btn--primary:hover,
.promise .btn--primary:hover {
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.5),
    0 4px 10px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

@media (prefers-reduced-motion: reduce) {
  .reveal.is-visible .btn--primary,
  .btn--primary.is-visible,
  .reveal.is-visible .btn--primary .btn-arrow,
  .btn--primary.is-visible .btn-arrow { animation: none; }
}
.btn { transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease; }
.btn-arrow { display:inline-block; transition: transform 0.25s ease; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 70% 50% at 80% 20%, rgba(74,155,147,0.08), transparent 60%),
    radial-gradient(ellipse 50% 50% at 10% 90%, rgba(244,162,97,0.06), transparent 60%),
    var(--bg);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15,30,46,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,30,46,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, #000 30%, transparent 80%);
  pointer-events: none;
  opacity: 0.6;
}
.hero .container { position: relative; z-index: 1; }
.hero-headline em {
  background: linear-gradient(
    110deg,
    var(--teal) 0%,
    var(--teal) 30%,
    #B8E0DB 50%,
    var(--teal) 70%,
    var(--teal) 100%
  );
  background-size: 250% 100%;
  background-position: 0% 0%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: normal;
  font-weight: 600;
  animation: textShimmer 5s ease-in-out infinite;
}
@keyframes textShimmer {
  0%   { background-position: 100% 0%; }
  50%  { background-position: 0% 0%; }
  100% { background-position: 100% 0%; }
}
.hero-visual {
  animation: fadeUp 0.9s ease 0.2s both;
  position: relative;
}
.hero-visual::after {
  content: '';
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at 50% 50%, rgba(244,162,97,0.18) 0%, transparent 60%);
  z-index: -1;
  filter: blur(40px);
}
.hero-badge {
  animation: float 4s ease-in-out infinite;
  border-color: var(--teal-light);
  box-shadow: var(--shadow-md);
}
.trust-strip .dot {
  background: var(--teal);
  animation: pulseGlow 2.4s ease-in-out infinite;
}
.trust-strip span:nth-child(2) .dot { animation-delay: 0.4s; }
.trust-strip span:nth-child(3) .dot { animation-delay: 0.8s; background: var(--amber); }
.trust-strip span:nth-child(4) .dot { animation-delay: 1.2s; }

/* Homepage hero as a full image banner. */
.hero--banner {
  min-height: clamp(650px, 82vh, 820px);
  display: flex;
  align-items: center;
  padding: clamp(72px, 8vw, 116px) 0 clamp(56px, 7vw, 92px);
  background: var(--navy-deep);
  isolation: isolate;
}
.hero--banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7,16,25,0.9) 0%, rgba(10,23,35,0.82) 24%, rgba(12,25,38,0.46) 49%, rgba(12,25,38,0.1) 76%),
    linear-gradient(180deg, rgba(7,16,25,0.22) 0%, rgba(7,16,25,0.03) 42%, rgba(7,16,25,0.24) 100%);
  pointer-events: none;
  opacity: 1;
  mask-image: none;
  -webkit-mask-image: none;
}
.hero--banner::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(7,16,25,0.26));
  pointer-events: none;
}
.hero-banner-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  overflow: hidden;
}
.hero-banner-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 54% 50%;
  filter: saturate(1.02) contrast(1.03);
}
.hero--banner .container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero--banner .hero-grid {
  display: block;
}
.hero--banner .hero-copy {
  max-width: min(620px, 92vw);
}
.hero--banner .hero-copy .eyebrow {
  border-color: rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.92);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}
.hero--banner .hero-headline {
  max-width: min(620px, 100%);
  color: #fff;
  text-shadow: 0 3px 22px rgba(0,0,0,0.26);
}
.hero--banner .hero-headline em {
  background: linear-gradient(110deg, #62D0C4 0%, #E9FFFC 48%, #62D0C4 100%);
  background-size: 250% 100%;
  background-position: 0% 0%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero--banner .hero-sub {
  color: rgba(255,255,255,0.88);
  text-shadow: 0 2px 18px rgba(0,0,0,0.2);
}
.hero-sub--stack {
  display: grid;
  gap: 12px;
}
.hero-sub--stack p {
  margin: 0;
  color: inherit;
  line-height: inherit;
}
.hero--banner .trust-strip {
  max-width: 560px;
  border-top-color: rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.8);
}
.hero--banner .trust-strip .dot {
  box-shadow: 0 0 16px rgba(43,168,154,0.8);
}
.hero--banner .hero-badge {
  position: static;
  width: fit-content;
  max-width: 360px;
  margin-top: 20px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255,255,255,0.8);
  box-shadow: none;
  backdrop-filter: none;
  animation: none;
  text-shadow: 0 2px 16px rgba(0,0,0,0.24);
}
.hero--banner .hero-badge strong {
  color: #fff;
}

/* ---------- Credibility marquee ---------- */
.cred-bar {
  background: linear-gradient(90deg, var(--navy) 0%, #1e3450 50%, var(--navy) 100%);
  border: none;
  position: relative;
  overflow: hidden;
}
.cred-bar::before, .cred-bar::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.cred-bar::before { left: 0; background: linear-gradient(90deg, var(--navy), transparent); }
.cred-bar::after  { right: 0; background: linear-gradient(270deg, var(--navy), transparent); }
.cred-bar .cred-hl { color: var(--teal-light); font-weight: 600; }

/* ---------- PHONE NOTIFICATIONS BAND ---------- */
.phone-band {
  position: relative;
  background:
    linear-gradient(135deg, var(--navy) 0%, #1c324a 60%, var(--navy-deep) 100%);
  color: #fff;
  padding: clamp(56px, 6vw, 88px) 0;
  overflow: hidden;
}
.phone-band::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 80% 30%, rgba(74,155,147,0.18), transparent 65%),
    radial-gradient(ellipse 40% 50% at 15% 85%, rgba(74,155,147,0.08), transparent 65%);
  pointer-events: none;
}
.phone-band .container { position: relative; z-index: 1; }

.phone-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 880px) {
  .phone-grid { grid-template-columns: 1fr; gap: 40px; }
}

.phone-copy {
  text-align: center;
}
.phone-copy p {
  margin-left: auto;
  margin-right: auto;
}
.phone-copy h2 {
  color: #fff;
  margin: 14px 0 18px;
  background: linear-gradient(110deg, #fff 0%, #fff 30%, var(--teal-light) 50%, #fff 70%, #fff 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.phone-lead {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 44ch;
  margin: 0;
}

/* The phone */
.phone-visual {
  display: flex;
  justify-content: center;
}
.phone {
  position: relative;
  width: 290px;
  height: 600px;
  background: linear-gradient(165deg, #1A1F26 0%, #2A3140 100%);
  border-radius: 46px;
  padding: 12px;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.45),
    0 8px 24px rgba(0,0,0,0.25),
    inset 0 0 0 2px rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  isolation: isolate;
}
.phone-notch {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 26px;
  background: #000;
  border-radius: 14px;
  z-index: 5;
}
.phone-screen {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(180deg, #DCE7E5 0%, #F1EDE3 35%, #E8DFCC 100%);
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  padding: 60px 14px 14px;
}
.phone-statusbar {
  position: absolute;
  top: 22px;
  left: 28px;
  right: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  z-index: 4;
}
.phone-time { font-family: var(--sans, 'Inter'); letter-spacing: 0.02em; }
.phone-signal {
  display: inline-flex; gap: 2px; align-items: flex-end;
}
.phone-bar {
  width: 3px; background: var(--navy);
  border-radius: 1px;
}
.phone-signal .phone-bar:nth-child(1) { height: 4px; }
.phone-signal .phone-bar:nth-child(2) { height: 6px; }
.phone-signal .phone-bar:nth-child(3) { height: 8px; }
.phone-signal .phone-bar:nth-child(4) { height: 10px; }

.phone-date {
  text-align: center;
  color: rgba(15,30,46,0.6);
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.phone-messages {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.phone-message {
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  transform: translate3d(-12px, 0, 0);
  font-family: var(--sans, 'Inter');
}
.msg-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4px;
}
.msg-from {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(15,30,46,0.78);
  letter-spacing: 0.01em;
}
.msg-time {
  font-size: 0.66rem;
  color: rgba(15,30,46,0.45);
  font-weight: 500;
}
.msg-bubble {
  position: relative;
  align-self: flex-start;
  max-width: 92%;
  background: #ffffff;
  color: var(--navy);
  border-radius: 16px 16px 16px 4px;     /* iOS incoming-bubble shape, tail at bottom-left */
  padding: 9px 13px 10px;
  font-size: 0.84rem;
  line-height: 1.42;
  box-shadow: 0 1px 2px rgba(15,30,46,0.08);
  word-wrap: break-word;
}

.phone-grid.is-visible .phone-message {
  animation: msgSlideIn 0.5s cubic-bezier(.34, 1.45, .5, 1) forwards;
}
.phone-grid.is-visible .phone-message:nth-child(1) { animation-delay: 0.45s; }
.phone-grid.is-visible .phone-message:nth-child(2) { animation-delay: 1.30s; }
.phone-grid.is-visible .phone-message:nth-child(3) { animation-delay: 2.20s; }
.phone-grid.is-visible .phone-message:nth-child(4) { animation-delay: 3.10s; }
@keyframes msgSlideIn {
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .phone-grid.is-visible .phone-message {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ---------- TERRITORY BAND — scarcity-driven conversion section ---------- */
.territory-band {
  position: relative;
  background:
    linear-gradient(135deg, #0B1A2A 0%, #0F2A47 60%, #0A1626 100%);
  color: #fff;
  padding: clamp(40px, 4vw, 56px) 0;
  overflow: hidden;
  border-top: 1px solid rgba(74,155,147,0.25);
  border-bottom: 1px solid rgba(74,155,147,0.25);
}
.territory-band::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 80% 20%, rgba(74,155,147,0.18), transparent 65%),
    radial-gradient(ellipse 40% 50% at 15% 85%, rgba(74,155,147,0.10), transparent 65%);
  pointer-events: none;
}
.territory-band::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(74,155,147,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,155,147,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
  pointer-events: none;
  opacity: 0.6;
}
.territory-band .container { position: relative; z-index: 1; }

.territory-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 880px) {
  .territory-grid { grid-template-columns: 1fr; gap: 36px; }
  .territory-visual { order: 1; }
  .territory-copy   { order: 2; }
}

.territory-copy h2 {
  color: #fff;
  margin: 14px 0 18px;
  background: linear-gradient(110deg, #fff 0%, #fff 28%, var(--teal-light) 50%, #fff 72%, #fff 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShimmer 5s ease-in-out infinite;
}
.territory-lead {
  color: rgba(255,255,255,0.84);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 52ch;
  margin: 0 0 24px;
}

/* Three pillars beneath the lead */
.territory-pillars {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 14px;
}
.territory-pillars li {
  display: grid;
  grid-template-columns: 8px 1fr;
  gap: 16px;
  padding: 14px 18px;
  background: rgba(74,155,147,0.08);
  border: 1px solid rgba(74,155,147,0.22);
  border-radius: 12px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.territory-pillars li::before {
  content: '';
  background: linear-gradient(180deg, var(--teal-light), var(--teal));
  width: 4px;
  height: 70%;
  border-radius: 2px;
}
.territory-pillars strong {
  color: #fff;
  font-weight: 700;
  font-size: 0.96rem;
  display: block;
  margin-bottom: 2px;
}
.territory-pillars span {
  color: rgba(255,255,255,0.72);
  font-size: 0.86rem;
}

/* CTA cluster — strong button + scarcity microcopy */
.territory-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 8px;
}
.territory-cta small {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
  line-height: 1.5;
  max-width: 36ch;
  font-style: italic;
}

/* The territory image */
.territory-visual {
  margin: 0;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 32px 70px rgba(0,0,0,0.45),
    0 8px 24px rgba(0,0,0,0.25);
}
.territory-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(74,155,147,0.32);
}
.territory-visual img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.8s cubic-bezier(.2,.7,.2,1);
}
.territory-visual:hover img { transform: scale(1.02); }

/* ---------- HOMEPAGE WEBSITE SHOWCASE ---------- */
.home-website-showcase {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: clamp(64px, 7vw, 104px) 0;
  background:
    radial-gradient(ellipse 44% 60% at 84% 28%, rgba(74,155,147,0.22), transparent 68%),
    radial-gradient(ellipse 42% 56% at 10% 88%, rgba(244,162,97,0.16), transparent 66%),
    linear-gradient(135deg, #101924 0%, #172536 48%, #0A111B 100%);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.home-website-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, #000 0%, #000 64%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 64%, transparent 100%);
  pointer-events: none;
}
.home-website-showcase .container {
  position: relative;
  z-index: 1;
}
.home-website-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(36px, 5vw, 84px);
  align-items: center;
}
.home-website-copy h2 {
  max-width: 9.5ch;
  margin: 16px 0 22px;
  color: #fff;
  font-size: clamp(2.7rem, 6vw, 5.7rem);
  line-height: 0.95;
  letter-spacing: 0;
}
.home-website-copy p {
  max-width: 54ch;
  margin: 0 0 18px;
  color: rgba(255,255,255,0.78);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.7;
}
.home-website-copy .btn {
  margin-top: 14px;
}
.home-website-visual {
  position: relative;
  margin: 0;
  min-height: 0;
}
.home-website-visual::before {
  content: '';
  position: absolute;
  inset: 8% 2% 2% 8%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 34px;
  transform: rotate(-2deg);
  box-shadow: 0 34px 90px rgba(0,0,0,0.42);
}
.home-website-visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(640px, 100%);
  height: auto;
  margin-left: auto;
  filter: drop-shadow(0 28px 50px rgba(0,0,0,0.34));
  transform: rotate(1deg);
}
.home-website-caption {
  position: absolute;
  z-index: 2;
  right: clamp(8px, 2vw, 32px);
  bottom: clamp(10px, 2vw, 28px);
  width: min(340px, 66%);
  padding: 18px 20px;
  color: #fff;
  background: rgba(10,17,27,0.84);
  border: 1px solid rgba(123,192,185,0.32);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(0,0,0,0.32);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.home-website-caption span {
  display: block;
  margin-bottom: 6px;
  color: var(--teal-light);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.home-website-caption strong {
  display: block;
  font-size: clamp(0.96rem, 1.5vw, 1.12rem);
  line-height: 1.35;
}

@media (max-width: 920px) {
  .home-website-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .home-website-copy h2,
  .home-website-copy p {
    margin-left: auto;
    margin-right: auto;
  }
  .home-website-copy h2 {
    max-width: 11ch;
  }
  .home-website-visual img {
    margin-right: auto;
  }
}

@media (max-width: 560px) {
  .home-website-showcase {
    padding: clamp(48px, 12vw, 68px) 0;
  }
  .home-website-copy h2 {
    font-size: clamp(2.25rem, 12vw, 3.4rem);
    line-height: 1;
  }
  .home-website-copy .btn {
    width: 100%;
    justify-content: center;
  }
  .home-website-visual::before {
    border-radius: 22px;
  }
  .home-website-visual img {
    width: min(430px, 108%);
    max-width: 108%;
    margin-left: -4%;
    transform: rotate(0deg);
  }
  .home-website-caption {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin: -8px auto 0;
    text-align: left;
  }
}

/* ---------- INTERACTIVE AUSTRALIA MAP BAND ---------- */
.map-band {
  position: relative;
  background:
    linear-gradient(135deg, var(--navy) 0%, #1c324a 60%, var(--navy-deep) 100%);
  color: #fff;
  padding: clamp(56px, 6vw, 88px) 0;
  overflow: hidden;
}
.map-band::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 80% 30%, rgba(74,155,147,0.16), transparent 65%),
    radial-gradient(ellipse 40% 50% at 15% 85%, rgba(74,155,147,0.08), transparent 65%);
  pointer-events: none;
}
.map-band .container { position: relative; z-index: 1; }

.map-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
@media (max-width: 880px) {
  .map-grid { grid-template-columns: 1fr; gap: 36px; }
}

.map-copy h2 {
  color: #fff;
  margin: 14px 0 18px;
  background: linear-gradient(110deg, #fff 0%, #fff 30%, var(--teal-light) 50%, #fff 70%, #fff 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.map-copy .map-lead {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 44ch;
  margin: 0 0 24px;
}
.map-locations {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 10px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.map-locations li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.92);
  font-weight: 500;
}
.loc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px rgba(74,155,147,0.65);
  flex-shrink: 0;
}

/* The SVG map */
.aus-map {
  width: 100%;
  height: auto;
  max-width: 560px;
  display: block;
  margin: 0 auto;
}
.aus-shape {
  fill: rgba(255,255,255,0.05);
  stroke: rgba(255,255,255,0.32);
  stroke-width: 1.5;
  stroke-linejoin: round;
  stroke-linecap: round;
}
.aus-qld {
  fill: rgba(74,155,147,0.18);
  stroke: var(--teal);
  stroke-width: 2;
  stroke-linejoin: round;
}
/* QLD subtly breathes to draw the eye */
.map-grid.is-visible .aus-qld {
  animation: qldGlow 3.6s ease-in-out infinite;
}
@keyframes qldGlow {
  0%, 100% { fill: rgba(74,155,147,0.14); }
  50%      { fill: rgba(74,155,147,0.28); }
}

/* Pins start hidden; reveal sequentially when section enters view */
.map-pins .pin {
  opacity: 0;
  transform: scale(0.4);
  transform-box: fill-box;
  transform-origin: center;
  transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.34, 1.5, 0.5, 1);
}
.map-grid.is-visible .map-pins .pin {
  opacity: 1;
  transform: scale(1);
  transition-delay: var(--delay, 0s);
}
.pin-dot  { fill: #fff; }
.pin-ring {
  fill: var(--teal);
  fill-opacity: 0.5;
  transform-box: fill-box;
  transform-origin: center;
}
.map-grid.is-visible .pin-ring {
  animation: pinPulse 2s ease-out infinite;
  animation-delay: calc(var(--delay, 0s) + 0.6s);
}
@keyframes pinPulse {
  0%   { transform: scale(0.6); fill-opacity: 0.65; }
  80%  { transform: scale(2.6); fill-opacity: 0; }
  100% { transform: scale(2.6); fill-opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .map-grid.is-visible .map-pins .pin { transition-delay: 0s; }
  .map-grid.is-visible .pin-ring,
  .map-grid.is-visible .aus-qld { animation: none; }
}

/* ---------- LIVE TICKER (replaces stats banner) ---------- */
.live-ticker {
  position: relative;
  background:
    linear-gradient(135deg, var(--navy) 0%, #1c324a 60%, var(--navy-deep) 100%);
  color: #fff;
  padding: clamp(28px, 3vw, 40px) 0;
  overflow: hidden;
  border-top: 1px solid rgba(74,155,147,0.25);
  border-bottom: 1px solid rgba(74,155,147,0.25);
}
/* Subtle scan-line texture so it reads like a live monitor */
.live-ticker::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    180deg,
    transparent 0,
    transparent 2px,
    rgba(74,155,147,0.04) 2px,
    rgba(74,155,147,0.04) 3px
  );
  pointer-events: none;
}
/* Soft fades on left and right edges so labels never crash into the page edge */
.live-ticker::after {
  content: '';
  position: absolute; top: 0; bottom: 0; left: 0; right: 0;
  background:
    linear-gradient(90deg, var(--navy) 0%, transparent 6%, transparent 94%, var(--navy) 100%);
  pointer-events: none;
  z-index: 2;
}
.live-ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 36px;
  animation: liveTickerScroll 60s linear infinite;
  will-change: transform;
}
.live-ticker:hover .live-ticker-track { animation-play-state: paused; }
@keyframes liveTickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.live-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
  font-family: var(--sans, 'Inter', sans-serif);
  font-size: 0.94rem;
  font-weight: 500;
  letter-spacing: 0.015em;
  color: rgba(255,255,255,0.86);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.live-ticker-sep {
  color: rgba(74,155,147,0.5);
  font-size: 1.1rem;
  font-weight: 300;
  user-select: none;
}

.live-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  box-shadow:
    0 0 8px rgba(74,155,147,0.65),
    0 0 0 0 rgba(74,155,147,0.4);
  animation: liveDotPulse 2.4s ease-in-out infinite;
}
@keyframes liveDotPulse {
  0%, 100% {
    box-shadow: 0 0 6px rgba(74,155,147,0.5), 0 0 0 0 rgba(74,155,147,0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 14px rgba(74,155,147,1), 0 0 0 8px rgba(74,155,147,0);
    transform: scale(1.15);
  }
}

@media (prefers-reduced-motion: reduce) {
  .live-ticker-track { animation: none; }
  .live-dot { animation: none; }
}

/* ---------- Stats banner (legacy, kept in case we revert) ---------- */
.stats-banner {
  position: relative;
  padding: clamp(48px, 6vw, 72px) 0;
  background:
    linear-gradient(135deg, var(--navy) 0%, #1c324a 60%, var(--navy-deep) 100%);
  color: #fff;
  overflow: hidden;
}
.stats-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 60% at 20% 50%, rgba(244,162,97,0.18), transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 50%, rgba(74,155,147,0.18), transparent 70%);
  pointer-events: none;
}
.stats-banner .stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
@media (max-width: 760px) { .stats-banner .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
.stat {
  position: relative;
  padding: 8px 0;
}
.stat .stat-num {
  display: block;
  font-family: var(--serif, 'Newsreader', serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 500;
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, var(--amber) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}
.stat .stat-label {
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  font-weight: 600;
}
.stat::after {
  content: '';
  position: absolute;
  right: -12px; top: 30%;
  width: 1px; height: 40%;
  background: rgba(255,255,255,0.18);
}
.stat:last-child::after { display: none; }
@media (max-width: 760px) {
  .stat:nth-child(2)::after { display: none; }
}

/* ---------- Section base ---------- */
.section { background: var(--bg); }
.section--alt {
  background: var(--bg-alt);
  position: relative;
}
.section--alt::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0.4;
}
.section--alt::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  opacity: 0.4;
}

.section-head h2 strong {
  background: linear-gradient(
    110deg,
    var(--teal) 0%,
    var(--teal) 30%,
    #B8E0DB 50%,
    var(--teal) 70%,
    var(--teal) 100%
  );
  background-size: 250% 100%;
  background-position: 0% 0%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  animation: textShimmer 5s ease-in-out infinite;
}
.eyebrow--navy::before {
  background: var(--teal);
}

/* ---------- Honest pitch — heading + photo side by side ---------- */
.honest-pitch-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
  margin-bottom: clamp(40px, 4vw, 64px);
}
@media (max-width: 880px) {
  .honest-pitch-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
.honest-pitch-copy {
  margin: 0;
  text-align: center;
}
.honest-pitch-copy p {
  margin-left: auto;
  margin-right: auto;
}

.honest-pitch-visual {
  margin: 0;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 24px 60px rgba(15,30,46,0.16),
    0 6px 18px rgba(15,30,46,0.08);
}
.honest-pitch-visual::after {
  /* Subtle teal gradient frame, picks up the brand */
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(74,155,147,0.18);
}
.honest-pitch-visual img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.8s cubic-bezier(.2,.7,.2,1);
}
.honest-pitch-visual:hover img { transform: scale(1.02); }

/* ---------- How it works — heading + photo side by side ---------- */
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;     /* image on left, heading on right */
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
  margin-bottom: clamp(48px, 5vw, 72px);
}
@media (max-width: 880px) {
  .how-grid { grid-template-columns: 1fr; gap: 36px; }
  .how-visual { order: 2; }              /* image below heading on mobile */
  .how-copy   { order: 1; }
}
.how-copy { margin: 0; }

.how-visual {
  margin: 0;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 24px 60px rgba(15,30,46,0.16),
    0 6px 18px rgba(15,30,46,0.08);
}
.how-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(74,155,147,0.18);
}
.how-visual img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.8s cubic-bezier(.2,.7,.2,1);
}
.how-visual:hover img { transform: scale(1.02); }

/* How-it-works page hero image — sits below the centered title, contained width */
.how-hero-visual {
  margin: clamp(28px, 4vw, 48px) auto 0;
  max-width: 540px;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 24px 60px rgba(15,30,46,0.16),
    0 6px 18px rgba(15,30,46,0.08);
}
.how-hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(74,155,147,0.18);
}
.how-hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.8s cubic-bezier(.2,.7,.2,1);
}
.how-hero-visual:hover img { transform: scale(1.02); }

/* Services page hero image — wide landscape banner under the title */
.services-hero-visual {
  margin: clamp(28px, 4vw, 48px) auto 0;
  max-width: 920px;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 24px 60px rgba(15,30,46,0.16),
    0 6px 18px rgba(15,30,46,0.08);
}
.services-hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(74,155,147,0.18);
}
.services-hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.8s cubic-bezier(.2,.7,.2,1);
}
.services-hero-visual:hover img { transform: scale(1.02); }

/* ---------- The honest pitch numerals ---------- */
.numeral {
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}
.numeral::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 32px; height: 3px;
  background: var(--teal);
  border-radius: 3px;
}

.column {
  background: #fff;
  padding: 28px 28px 32px;
  border-radius: 18px;
  border: 1px solid var(--rule);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.column:hover {
  transform: translateY(-4px);
  border-color: var(--teal-light);
  box-shadow: var(--shadow-md);
}

/* ---------- Founder card ---------- */
.founder-copy {
  background: #fff;
  padding: clamp(32px, 4vw, 56px);
  border-radius: 22px;
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.founder-copy::before {
  content: '"';
  position: absolute;
  top: -12px; left: 28px;
  font-family: var(--serif, 'Newsreader', serif);
  font-size: 6rem;
  line-height: 1;
  color: var(--teal);
  opacity: 0.35;
}

/* ---------- Services CAROUSEL (replaces grid) ---------- */
.services-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 32px;
  padding: 12px 0 24px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.services-carousel-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: slideTrack 36s linear infinite;
}
.services-carousel:hover .services-carousel-track { animation-play-state: paused; }
.services-carousel .service-card {
  flex: 0 0 320px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: 28px 26px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.services-carousel .service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--amber));
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.services-carousel .service-card:hover::before { transform: translateX(0); }
.services-carousel .service-card:hover {
  transform: translateY(-6px);
  border-color: var(--teal-light);
  box-shadow: var(--shadow-md);
}
.services-carousel .service-card .svc-num {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--teal);
  background: rgba(74,155,147,0.1);
  padding: 5px 10px;
  border-radius: 999px;
}
.services-carousel .service-card h3 {
  margin: 16px 0 10px;
  color: var(--navy);
  font-family: var(--serif, 'Newsreader', serif);
}
.services-carousel .service-card p {
  color: var(--ink-soft, #5A5448);
  font-size: 0.96rem;
  line-height: 1.6;
}
.services-carousel .link-arrow {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-weight: 600;
}
.services-carousel .link-arrow:hover { color: var(--teal); }

/* Carousel control hint */
.carousel-hint {
  text-align: center;
  margin-top: 20px;
  color: var(--ink-soft, #5A5448);
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.55;
}
.carousel-hint::before, .carousel-hint::after {
  content: ''; display: inline-block;
  width: 30px; height: 1px;
  background: var(--rule);
  vertical-align: middle;
  margin: 0 12px;
}

/* ---------- Homepage proof / review carousel ---------- */
.review-carousel-section {
  position: relative;
  padding: clamp(72px, 9vw, 112px) 0;
  overflow: hidden;
  background:
    radial-gradient(900px 420px at 50% -120px, rgba(43,168,154,0.1), transparent 62%),
    var(--bg-alt);
}
.review-carousel-section .section-head {
  margin-bottom: clamp(30px, 4vw, 44px);
}
.review-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 8px 0 18px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.review-carousel-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: reviewSlide 42s linear infinite;
}
.review-carousel:hover .review-carousel-track {
  animation-play-state: paused;
}
.review-card {
  position: relative;
  flex: 0 0 350px;
  min-height: 218px;
  padding: 28px 26px 24px;
  border-radius: 16px;
  border: 1px solid rgba(23,40,59,0.12);
  background: rgba(255,255,255,0.92);
  box-shadow: 0 18px 40px rgba(15,30,46,0.08), 0 4px 12px rgba(15,30,46,0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.review-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--amber));
}
.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.18), transparent 44%),
    linear-gradient(135deg, var(--navy), var(--teal));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.28),
    0 10px 22px rgba(15,30,46,0.16);
}
.review-stars {
  display: inline-flex;
  align-self: center;
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.13em;
  color: #C48A13;
  white-space: nowrap;
}
.review-card p {
  margin: 18px 0 22px;
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  line-height: 1.35;
  color: var(--navy);
}
.review-meta {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #2A6F68;
}
@keyframes reviewSlide {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 11px)); }
}
@media (max-width: 720px) {
  .review-card {
    flex-basis: 292px;
    min-height: 210px;
    padding: 24px 22px 22px;
  }
  .review-carousel-track {
    gap: 16px;
    animation-duration: 34s;
  }
  @keyframes reviewSlide {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - 8px)); }
  }
}
@media (prefers-reduced-motion: reduce) {
  .review-carousel-track {
    animation: none;
  }
}

/* ---------- Why-list — premium hover, shimmering numerals + headlines ---------- */
.why-list { gap: 28px; }
.why-item {
  background: #fff;
  border-radius: 20px;
  padding: 32px 36px;
  border: 1px solid var(--rule);
  transition:
    transform 0.4s cubic-bezier(.2,.7,.2,1),
    border-color 0.3s ease,
    box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Side accent bar */
.why-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--teal-light), var(--teal), var(--navy));
  background-size: 100% 200%;
  background-position: 0% 0%;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s cubic-bezier(.2,.7,.2,1), background-position 1.4s ease;
}

/* Soft radial glow that fades in behind the card on hover */
.why-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 30% 50%, rgba(74,155,147,0.08), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.why-item:hover {
  transform: translateX(6px) translateY(-2px);
  border-color: var(--teal-light);
  box-shadow: 0 16px 40px rgba(74,155,147,0.18), 0 4px 14px rgba(15,30,46,0.06);
}
.why-item:hover::before { transform: scaleY(1); background-position: 0% 100%; }
.why-item:hover::after { opacity: 1; }

/* --- Shimmering numeral --- */
.why-item .numeral {
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  font-family: var(--serif, 'Newsreader', serif);
  font-weight: 500;
  line-height: 1;
  background: linear-gradient(
    110deg,
    var(--navy) 0%,
    var(--navy) 25%,
    var(--teal) 45%,
    #B8E0DB 55%,
    var(--teal) 65%,
    var(--navy) 85%,
    var(--navy) 100%
  );
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: numeralShimmer 6s ease-in-out infinite;
  display: inline-block;
}
.why-item .numeral::after {
  display: none;     /* remove the static teal underscore — shimmer carries the energy now */
}
@keyframes numeralShimmer {
  0%   { background-position: 100% 0%; }
  50%  { background-position: 0% 0%; }
  100% { background-position: 100% 0%; }
}

/* --- Headline gradient sweep — fires once on scroll-into-view --- */
.why-item h3 {
  position: relative;
  background: linear-gradient(
    110deg,
    var(--navy) 0%,
    var(--navy) 38%,
    var(--teal) 50%,
    var(--navy) 62%,
    var(--navy) 100%
  );
  background-size: 250% 100%;
  background-position: 100% 0%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.why-item.is-visible h3 {
  animation: whyHeadlineSweep 1.8s cubic-bezier(.2,.7,.2,1) 0.4s both;
}
@keyframes whyHeadlineSweep {
  0%   { background-position: 100% 0%; }
  100% { background-position: 0% 0%; }
}

/* ---------- Steps ---------- */
.step {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: 28px 24px 32px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-light);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}

/* Arrow connectors between steps (animate in on scroll) */
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -22px;
  top: 56px;            /* roughly aligns with the centre of .step-num */
  width: 14px;
  height: 14px;
  border-top: 2px solid var(--teal);
  border-right: 2px solid var(--teal);
  /* Initial hidden state: shifted left, invisible */
  opacity: 0;
  transform: translateY(-50%) rotate(45deg) translate(-14px, 14px);
  transition:
    opacity 0.6s ease,
    transform 0.7s cubic-bezier(.2,.7,.2,1),
    border-color 0.3s ease;
  z-index: 2;
}

/* Trigger sequential reveal once .steps container scrolls into view */
.steps.is-visible .step:nth-child(1)::after {
  opacity: 0.75;
  transform: translateY(-50%) rotate(45deg);
  transition-delay: 0.5s;
}
.steps.is-visible .step:nth-child(2)::after {
  opacity: 0.75;
  transform: translateY(-50%) rotate(45deg);
  transition-delay: 1.05s;
}

/* Hover: nudge forward and brighten (only after the reveal completes) */
.steps.is-visible .step:not(:last-child):hover::after,
.steps.is-visible .step:has(+ .step:hover)::after {
  opacity: 1;
  border-color: var(--teal-light);
  transform: translateY(-50%) rotate(45deg) translate(4px, -4px);
  transition-delay: 0s;
}

@media (max-width: 880px) {
  /* On mobile, point the arrow downward (steps are stacked) */
  .step:not(:last-child)::after {
    right: 50%;
    top: auto;
    bottom: -22px;
    transform: translateX(50%) rotate(135deg) translate(-14px, -14px);
  }
  .steps.is-visible .step:nth-child(1)::after,
  .steps.is-visible .step:nth-child(2)::after {
    transform: translateX(50%) rotate(135deg);
  }
  .steps.is-visible .step:not(:last-child):hover::after,
  .steps.is-visible .step:has(+ .step:hover)::after {
    transform: translateX(50%) rotate(135deg) translate(-4px, -4px);
  }
}

/* ---------- Results cards ---------- */
.result-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: 28px 26px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.result-card:hover {
  transform: translateY(-4px);
  border-color: var(--amber);
  box-shadow: var(--shadow-md);
}
.result-card .tag {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  background: var(--navy);
  padding: 5px 11px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.result-card:nth-child(2) .tag { background: var(--teal); }
.result-card:nth-child(3) .tag { background: var(--amber-deep); }

/* ---------- FAQ — refined card style with side accent ---------- */
.faq { max-width: 880px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--rule);
  border-top: 1px solid var(--rule);   /* override styles.css that only sets border-top */
  border-radius: 16px;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.faq-item:last-child { border-bottom: 1px solid var(--rule); } /* harmonise with override */

/* Gradient side accent — same language as .why-item (teal family, no amber) */
.faq-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--teal-light), var(--teal), var(--navy));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.45s cubic-bezier(.2,.7,.2,1);
}
.faq-item:hover::before,
.faq-item.is-open::before { transform: scaleY(1); }

.faq-item:hover {
  border-color: var(--teal-light);
  box-shadow: var(--shadow-sm);
  transform: translateX(2px);
}
.faq-item.is-open {
  border-color: var(--teal-light);
  box-shadow: var(--shadow-md);
}

/* Question button */
.faq-q {
  padding: 22px 72px 22px 28px;
  font-weight: 600;
  font-size: 1.06rem;
  color: var(--navy);
  transition: color 0.25s ease, padding 0.3s ease;
}
.faq-q:hover { color: var(--teal); }

/* Replace chevron with a proper pill icon */
.faq-q::after {
  content: '';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background:
    linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  box-shadow: 0 2px 8px rgba(74,155,147,0.25);
  /* The plus icon, drawn with crisp gradients on a transparent base */
  background-image:
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor),
    linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  background-size: 14px 2px, 2px 14px, 100% 100%;
  background-position: center, center, center;
  background-repeat: no-repeat;
  color: #fff;
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1), background 0.3s ease, box-shadow 0.3s ease;
}
.faq-item:hover .faq-q::after {
  transform: translateY(-50%) rotate(90deg);
  box-shadow: 0 4px 14px rgba(74,155,147,0.35);
}
.faq-item.is-open .faq-q::after {
  transform: translateY(-50%) rotate(135deg);
  background-image:
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor),
    linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
}

.faq-a-inner {
  padding: 4px 28px 26px;
  color: var(--ink-soft, #5A5448);
  font-size: 1rem;
  line-height: 1.7;
}

/* ---------- BIG CTA — animated background ---------- */
.big-cta {
  position: relative;
  background:
    linear-gradient(135deg, var(--navy) 0%, #1a3251 50%, var(--navy-deep) 100%);
  color: #fff;
  overflow: hidden;
}
.big-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 20% 30%, rgba(244,162,97,0.22), transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 70%, rgba(74,155,147,0.22), transparent 60%);
  animation: fadeIn 1.2s ease;
}
.big-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.big-cta .container { position: relative; z-index: 1; }
.big-cta h2 strong { color: var(--teal-light); }
.big-cta .btn--primary {
  background: var(--teal);
  color: #fff;
  font-weight: 700;
}
.big-cta .btn--primary:hover {
  background: var(--teal-light);
  color: #fff;
  box-shadow: 0 12px 32px rgba(74,155,147,0.45);
}

/* ---------- Reveal animations: stagger ---------- */
.reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Heading reveal — no text scaling, keeps large serif headings crisp */
.reveal h1,
.reveal h2 {
  transform-origin: 50% 100%;
}
.reveal.is-visible h1,
.reveal.is-visible h2 {
  animation: titleFadeIn 0.62s cubic-bezier(0.22, 0.61, 0.36, 1) 0.12s both;
}
/* Disable heading scroll reveal on services, results and industries pages */
.page-services .reveal.is-visible h1,
.page-services .reveal.is-visible h2,
.page-results .reveal.is-visible h1,
.page-results .reveal.is-visible h2,
.page-industries .reveal.is-visible h1,
.page-industries .reveal.is-visible h2 {
  animation: none;
}
@keyframes titleFadeIn {
  0%   { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Hero headline fades in without scaling so it stays crisp */
.hero-headline {
  transform-origin: 50% 100%;
  animation: titleFadeIn 0.68s cubic-bezier(0.22, 0.61, 0.36, 1) 0.18s both;
}

.hero--banner .hero-headline {
  opacity: 1;
  transform: none;
  animation: none;
}

/* Section dividers — thin gradient rules */
.section + .section { position: relative; }

/* ---------- Industries page cards ---------- */
.impact-copy {
  text-align: center;
}
.impact-copy p {
  max-width: 68ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.impact-copy p + p {
  margin-top: 18px;
}

.industry-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: 28px 26px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.industry-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--amber));
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.industry-card:hover::before { transform: translateX(0); }
.industry-card:hover {
  transform: translateY(-4px);
  border-color: var(--teal-light);
  box-shadow: var(--shadow-md);
}
.industry-card .trade {
  background: rgba(74,155,147,0.1);
  color: var(--teal);
}

/* ---------- Services page individual blocks ---------- */
.service-block { position: relative; }
.service-block:nth-of-type(odd) { background: var(--bg-alt); }
/* Drop the 1px divider line between the first two service-blocks (Facebook ads → Google Ads) */
.service-block:nth-of-type(2) { border-top: 0; }

/* ---------- Services jump-nav — content-width navy PILL with animated teal underline ---------- */
.services-nav {
  background: transparent;
  border: none;
  box-shadow: none;
  position: sticky;
  top: 72px;
  z-index: 50;
  padding: 16px 16px;
  display: flex;
  justify-content: center;
  overflow-x: visible;       /* let the inner pill handle scroll */
}
.services-nav::before,
.services-nav::after { display: none; }

.services-nav-inner {
  display: inline-flex;
  width: auto;
  max-width: 100%;
  margin: 0;
  padding: 14px 30px;
  gap: 32px;
  white-space: nowrap;
  /* White pill with bold teal border + teal-tinted lift shadow */
  background: #fff;
  border: 2px solid var(--teal);
  border-radius: 999px;
  box-shadow:
    0 12px 32px rgba(74,155,147,0.28),
    0 4px 10px rgba(74,155,147,0.18);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
}
/* Hide scrollbar on the pill */
.services-nav-inner::-webkit-scrollbar { display: none; }
.services-nav-inner { scrollbar-width: none; }

.services-nav a {
  position: relative;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 4px 0;
  flex-shrink: 0;
  transition: color 0.25s ease;
  background: none !important;
  opacity: 0.75;
}
.services-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -4px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1);
}
.services-nav a:hover {
  color: var(--teal);
  opacity: 1;
  background: none !important;
}
.services-nav a:hover::after { transform: scaleX(1); }

/* Keep the service explanation cards sticky, but parked below the sticky jump bar. */
.page-services .service-block .aside {
  top: 178px;
  z-index: 2;
}

/* ---------- Free-trial form polish ---------- */
.form-row input,
.form-row textarea,
.form-row select {
  border: 1px solid var(--rule);
  background: #fff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(74,155,147,0.15);
  outline: none;
}

/* ---------- Legal pages (privacy/terms) ---------- */
.legal-body h2 { color: var(--navy); }
.legal-body a { color: var(--teal); }
.legal-body a:hover { color: var(--navy); }

/* ---------- Result cards on results page (matches homepage) ---------- */
.result-card { transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; }

/* ---------- Footer ---------- */
.site-footer {
  background:
    linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), var(--teal), transparent);
  opacity: 0.6;
}

/* =====================================================
   FREE TRIAL PAGE — high-conversion, attention-grabbing
   ===================================================== */

/* ---------- Offer hero — full-bleed gradient wash + shimmer/shake title ---------- */
.offer-hero {
  position: relative;
  background:
    radial-gradient(ellipse 70% 60% at 80% 0%, rgba(74,155,147,0.12), transparent 65%),
    radial-gradient(ellipse 50% 60% at 10% 100%, rgba(244,162,97,0.08), transparent 60%),
    var(--bg);
  overflow: hidden;
  padding-top: clamp(72px, 8vw, 120px);
  padding-bottom: clamp(56px, 6vw, 88px);
}
.offer-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15,30,46,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,30,46,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
  pointer-events: none;
  opacity: 0.5;
}
.offer-hero .container { position: relative; z-index: 1; }

/* Hero h1 — builder's marker crossout with sketched arrow */
.offer-hero h1 {
  color: var(--navy);
  background: none;
  -webkit-text-fill-color: currentColor;
  font-weight: 700;
  transform-origin: 50% 100%;
  /* Initial state: hidden, suspended above its resting position */
  opacity: 0;
  transform: translateY(-110px);
  will-change: transform, opacity;
}
.hero-price-cross {
  position: relative;
  display: inline-block;
  color: var(--navy);
  -webkit-text-fill-color: currentColor;
  white-space: nowrap;
  isolation: isolate;
}
.hero-price-cross::before,
.hero-price-cross::after {
  content: "";
  position: absolute;
  left: -0.1em;
  right: -0.1em;
  border-radius: 999px 72% 999px 64%;
  transform: scaleX(0) rotate(-5deg);
  transform-origin: left center;
  pointer-events: none;
  z-index: 2;
}
.hero-price-cross::before {
  top: 50%;
  height: 0.13em;
  background:
    linear-gradient(90deg, rgba(224,38,38,0.18), rgba(224,38,38,0.88) 18%, rgba(224,38,38,0.96) 72%, rgba(224,38,38,0.38)),
    repeating-linear-gradient(98deg, rgba(255,255,255,0.32) 0 3px, transparent 3px 8px);
  box-shadow: 0 0.035em 0 rgba(22,41,61,0.08);
}
.hero-price-cross::after {
  top: 60%;
  height: 0.06em;
  opacity: 0.7;
  background: rgba(190,18,60,0.92);
  transform: scaleX(0) rotate(2deg);
}
.hero-free-pop {
  position: relative;
  display: inline-block;
  color: var(--teal);
  -webkit-text-fill-color: currentColor;
  white-space: nowrap;
  transform-origin: center bottom;
}
.hero-free-pop::after {
  content: "";
  position: absolute;
  left: -0.04em;
  right: -0.04em;
  bottom: 0.04em;
  height: 0.08em;
  border-radius: 999px;
  background: rgba(43,168,154,0.32);
  transform: scaleX(0);
  transform-origin: left center;
}
.offer-hero h1.has-dropped .hero-price-cross::before {
  animation: heroPriceStrike 0.56s cubic-bezier(.22,.9,.28,1) 0.64s forwards;
}
.offer-hero h1.has-dropped .hero-price-cross::after {
  animation: heroPriceStrikeAlt 0.46s cubic-bezier(.22,.9,.28,1) 0.78s forwards;
}
.offer-hero h1.has-dropped .hero-free-pop {
  animation: heroFreePop 0.48s cubic-bezier(.2,.86,.34,1.2) 0.98s both;
}
.offer-hero h1.has-dropped .hero-free-pop::after {
  animation: heroFreeUnderline 0.38s ease-out 1.12s forwards;
}
/* Trigger: JS adds .has-dropped when section enters view */
.offer-hero h1.has-dropped {
  animation:
    textDrop 0.72s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
.offer-hero--website {
  background: #FFFFFF !important;
  background-image: none !important;
  text-align: center;
}
.offer-hero--website::before,
.offer-hero--website::after {
  display: none !important;
}
.offer-hero--website h1 {
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}
.website-offer-preview {
  position: relative;
  width: min(560px, 92vw);
  margin: clamp(34px, 5vw, 56px) auto -2px;
  isolation: isolate;
}
.website-offer-preview::before {
  display: none;
}
.website-offer-preview img {
  display: block;
  width: 100%;
  height: auto;
  filter: none;
}
.website-offer-preview figcaption {
  max-width: 46ch;
  margin: 10px auto 0;
  color: rgba(90,84,72,0.76);
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.55;
  text-align: center;
}
@media (max-width: 640px) {
  .website-offer-preview {
    width: min(470px, 100%);
    margin-top: 30px;
  }
}
@keyframes textDrop {
  0%   { opacity: 0; transform: translateY(-54px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes offerHeroShimmer {
  0%   { background-position: 100% 0%; }
  50%  { background-position: 0% 0%; }
  100% { background-position: 100% 0%; }
}
@keyframes heroPriceStrike {
  0% { transform: scaleX(0) rotate(-5deg); }
  72% { transform: scaleX(1.04) rotate(-5deg); }
  100% { transform: scaleX(1) rotate(-5deg); }
}
@keyframes heroPriceStrikeAlt {
  0% { transform: scaleX(0) rotate(2deg); }
  100% { transform: scaleX(0.94) rotate(2deg); }
}
@keyframes heroFreePop {
  0% { transform: translateY(0.12em) scale(0.96); filter: brightness(1); }
  65% { transform: translateY(-0.03em) scale(1.05); filter: brightness(1.08); }
  100% { transform: translateY(0) scale(1); filter: brightness(1); }
}
@keyframes heroFreeUnderline {
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

/* Mobile: shorter drop, gentler squash */
@media (max-width: 768px) {
  .offer-hero h1 { transform: translateY(-60px); }
  @keyframes textDrop {
    0%   { opacity: 0; transform: translateY(-34px); }
    100% { opacity: 1; transform: translateY(0); }
  }
}

/* Reduced motion: 200ms fade-in, no drop, no particles */
@media (prefers-reduced-motion: reduce) {
  .offer-hero h1 {
    transform: none;
    transition: opacity 0.2s ease;
  }
  .offer-hero h1.has-dropped {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .offer-hero h1.has-dropped .hero-price-cross::before {
    animation: none;
    transform: scaleX(1) rotate(-5deg);
  }
  .offer-hero h1.has-dropped .hero-price-cross::after {
    animation: none;
    transform: scaleX(0.94) rotate(2deg);
  }
  .offer-hero h1.has-dropped .hero-free-pop,
  .offer-hero h1.has-dropped .hero-free-pop::after {
    animation: none;
    transform: scaleX(1);
  }
}

/* Lead offer hero: highlight delivery first, not a crossed-out package price. */
.page-leads .offer-hero--leads {
  text-align: center;
}
.page-leads .offer-hero--leads h1 {
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}
.page-leads .offer-hero--leads .lead {
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
  color: var(--ink-soft);
  font-size: clamp(1.04rem, 1.2vw, 1.16rem);
  line-height: 1.68;
}
.page-leads #claim {
  scroll-margin-top: 92px;
}
.page-leads .lead-sticky-cta,
.page-home .lead-sticky-cta {
  position: fixed;
  right: clamp(16px, 3vw, 36px);
  bottom: clamp(16px, 3vw, 30px);
  z-index: 900;
  display: grid;
  grid-template-columns: minmax(70px, 0.82fr) minmax(142px, 1.2fr) auto;
  grid-template-areas:
    "kicker headline note";
  align-items: center;
  justify-items: stretch;
  gap: 0 18px;
  width: min(430px, calc(100vw - 32px));
  min-height: 118px;
  padding: 18px 22px;
  border: 1px solid rgba(242,178,61,0.42);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(242,178,61,0.22), rgba(255,255,255,0.98) 34%, rgba(43,168,154,0.17)),
    #fff;
  color: var(--navy);
  text-align: center;
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.96),
    0 18px 38px rgba(15,30,46,0.2),
    0 4px 12px rgba(15,30,46,0.13);
  filter: drop-shadow(0 10px 18px rgba(15,30,46,0.1));
  transform: rotate(1deg);
  animation: valueSignalFloat 3.2s ease-in-out infinite;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease), opacity 0.3s ease;
}
.page-leads .lead-sticky-cta::before,
.page-home .lead-sticky-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 5px solid var(--amber);
  border-radius: inherit;
  pointer-events: none;
}
.page-leads .lead-sticky-cta:hover,
.page-leads .lead-sticky-cta:focus-visible,
.page-home .lead-sticky-cta:hover,
.page-home .lead-sticky-cta:focus-visible {
  border-color: rgba(43,168,154,0.46);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.98),
    0 24px 44px rgba(15,30,46,0.24),
    0 7px 16px rgba(15,30,46,0.14);
  transform: translateY(-3px) rotate(0deg);
}
.page-leads .lead-sticky-cta:focus-visible,
.page-home .lead-sticky-cta:focus-visible {
  outline: 3px solid rgba(43,168,154,0.42);
  outline-offset: 4px;
}
.lead-sticky-kicker,
.lead-sticky-note {
  display: block;
  font-family: var(--sans);
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}
.lead-sticky-kicker {
  grid-area: kicker;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 18px;
  border-right: 1px solid rgba(43,168,154,0.28);
  color: #8B6712;
  font-size: 0.68rem;
  text-align: center;
}
.lead-sticky-cta strong {
  grid-area: headline;
  position: relative;
  display: block;
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(2.08rem, 2.2vw, 2.42rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-align: center;
}
.lead-sticky-cta strong span {
  display: block;
  margin-bottom: 7px;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}
.lead-sticky-cta strong em {
  display: block;
  margin-top: 8px;
  color: #2A6F68;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}
.lead-sticky-note {
  grid-area: note;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 18px;
  border-left: 1px solid rgba(242,178,61,0.3);
  color: var(--teal);
  font-size: 1.6rem;
  letter-spacing: 0;
}
.hero-lead-count,
.hero-pay-pop {
  position: relative;
  display: inline-block;
  isolation: isolate;
}
.hero-lead-count {
  color: var(--navy);
}
.hero-lead-count::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -0.08em;
  right: -0.08em;
  bottom: 0.08em;
  height: 0.3em;
  border-radius: 999px 68% 999px 72%;
  background:
    linear-gradient(90deg, rgba(242,178,61,0.08), rgba(242,178,61,0.62), rgba(43,168,154,0.32)),
    repeating-linear-gradient(98deg, rgba(255,255,255,0.24) 0 3px, transparent 3px 9px);
  transform: rotate(-2deg) scaleX(0);
  transform-origin: left center;
}
.hero-pay-pop {
  color: var(--teal);
}
.hero-pay-pop::after {
  content: "";
  position: absolute;
  left: -0.03em;
  right: -0.03em;
  bottom: 0.03em;
  height: 0.08em;
  border-radius: 999px;
  background: rgba(43,168,154,0.3);
  transform: scaleX(0);
  transform-origin: left center;
}
.offer-hero h1.has-dropped .hero-lead-count::before {
  animation: leadHeroMarker 0.62s cubic-bezier(.22,.9,.28,1) 0.64s forwards;
}
.offer-hero h1.has-dropped .hero-pay-pop {
  animation: heroFreePop 0.48s cubic-bezier(.2,.86,.34,1.2) 0.92s both;
}
.offer-hero h1.has-dropped .hero-pay-pop::after {
  animation: heroFreeUnderline 0.38s ease-out 1.08s forwards;
}
@keyframes leadHeroMarker {
  72% { transform: rotate(-2deg) scaleX(1.05); }
  100% { transform: rotate(-2deg) scaleX(1); }
}
.lead-hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin: clamp(30px, 4vw, 42px) auto 0;
}
.lead-hero-proof span {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  border: 1px solid rgba(23,40,59,0.13);
  border-radius: 14px;
  background: rgba(255,255,255,0.86);
  box-shadow: 0 12px 26px rgba(15,30,46,0.07);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.35;
  text-transform: uppercase;
  color: var(--navy);
}
.lead-hero-proof span:nth-child(2) {
  border-color: rgba(242,178,61,0.36);
  background: linear-gradient(135deg, rgba(242,178,61,0.18), rgba(255,255,255,0.9));
}
@media (max-width: 720px) {
  .page-leads {
    padding-bottom: calc(82px + env(safe-area-inset-bottom));
  }
  .page-leads .lead-sticky-cta {
    left: 50%;
    right: auto;
    bottom: max(14px, env(safe-area-inset-bottom));
    width: 33vw;
    min-width: 130px;
    max-width: 170px;
    grid-template-columns: minmax(28px, 0.82fr) minmax(54px, 1.2fr) auto;
    grid-template-areas: "kicker headline note";
    gap: 0 8px;
    min-height: 80px;
    padding: 12px 10px;
    transform: translateX(-50%) rotate(1deg);
    animation: valueSignalFloatCentered 3.2s ease-in-out infinite;
  }
  .page-leads .lead-sticky-cta:hover,
  .page-leads .lead-sticky-cta:focus-visible {
    transform: translateX(-50%) translateY(-3px) rotate(0deg);
  }
  .lead-sticky-kicker {
    display: flex;
    align-self: stretch;
    align-items: center;
    justify-content: center;
    padding-right: 8px;
    padding-bottom: 0;
    border-right: 1px solid rgba(43,168,154,0.28);
    border-bottom: 0;
    font-size: 0.5rem;
    text-align: center;
  }
  .lead-sticky-cta strong {
    margin: 0;
    font-size: clamp(1.1rem, 4.5vw, 1.4rem);
    text-align: center;
  }
  .lead-sticky-cta strong span {
    margin-bottom: 4px;
    font-size: 0.5rem;
  }
  .lead-sticky-cta strong em {
    margin-top: 4px;
    font-size: 0.48rem;
  }
  .lead-sticky-note {
    align-self: stretch;
    padding-left: 8px;
    border-left: 1px solid rgba(242,178,61,0.3);
    font-size: 1.1rem;
  }
  .page-leads .offer-hero--leads h1 {
    max-width: 15ch;
  }
  .lead-hero-proof {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
  .lead-hero-proof span {
    min-height: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-lead-count::before,
  .hero-pay-pop::after {
    transform: scaleX(1);
  }
  .offer-hero h1.has-dropped .hero-lead-count::before,
  .offer-hero h1.has-dropped .hero-pay-pop,
  .offer-hero h1.has-dropped .hero-pay-pop::after {
    animation: none;
  }
}

/* ---- Construction particle burst + dust cloud ---- */
.drop-particles {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  contain: layout paint;
}
.drop-particle {
  --start-x: 0px;
  --mid-x: 0px;
  --peak-y: -22px;
  --end-x: 0px;
  position: absolute;
  left: 50%;
  top: 0;
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(0,0,0,0.18);
  will-change: transform, opacity;
  animation: particleFly 0.85s cubic-bezier(0.2, 0.6, 0.4, 1) both;
}
@keyframes particleFly {
  0%   { transform: translate(var(--start-x), -8px) scale(1.05); opacity: 1; }
  25%  { transform: translate(var(--mid-x), var(--peak-y)) scale(1);    opacity: 0.95; }
  100% { transform: translate(var(--end-x), 64px) scale(0.4);            opacity: 0; }
}
.drop-cloud {
  position: absolute;
  left: 50%;
  top: 0;
  width: 180px;
  height: 30px;
  /* Darker concrete dust so it reads on the white hero */
  background: radial-gradient(ellipse, rgba(74,70,63,0.55) 0%, rgba(107,98,86,0.25) 40%, rgba(107,98,86,0) 75%);
  border-radius: 50%;
  transform: translateX(-50%) scale(0.4);
  opacity: 0;
  will-change: transform, opacity;
  animation: dustCloud 1s ease-out forwards;
}
@keyframes dustCloud {
  0%   { transform: translateX(-50%) scale(0.3); opacity: 0; }
  18%  { transform: translateX(-50%) scale(1.2); opacity: 0.75; }
  100% { transform: translateX(-50%) scale(2.4) translateY(6px); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .drop-particles, .drop-particle, .drop-cloud { display: none !important; }
}
@keyframes offerHeroShake {
  0%, 87%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  88%   { transform: translate3d(-3px, 0, 0) rotate(-0.4deg); }
  89.5% { transform: translate3d(3px, 0, 0) rotate(0.4deg); }
  91%   { transform: translate3d(-2px, 0, 0) rotate(-0.3deg); }
  92.5% { transform: translate3d(2px, 0, 0) rotate(0.3deg); }
  94%   { transform: translate3d(-1px, 0, 0) rotate(-0.15deg); }
  95.5% { transform: translate3d(1px, 0, 0) rotate(0.15deg); }
  97%   { transform: translate3d(0, 0, 0) rotate(0deg); }
}

/* Offer bullets — FAQ-style cards with hex side-bar */
.offer-bullets {
  display: grid;
  gap: 10px;
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
}
.offer-bullets li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 14px 18px 14px 20px;
  transition:
    transform 0.35s cubic-bezier(.2,.7,.2,1),
    border-color 0.3s ease,
    box-shadow 0.35s ease;
  overflow: hidden;
}
.offer-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--teal-light), var(--teal), var(--navy));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.45s cubic-bezier(.2,.7,.2,1);
}
.offer-bullets li:hover::before { transform: scaleY(1); }
.offer-bullets li:hover {
  transform: translateX(4px);
  border-color: var(--teal-light);
  box-shadow: 0 8px 22px rgba(74,155,147,0.16);
}
.offer-bullets .check {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 700;
  flex: 0 0 26px;
  margin-top: 1px;
  box-shadow: 0 2px 6px rgba(74,155,147,0.3);
}

/* Stagger reveal of each bullet on page load */
.offer-bullets li {
  opacity: 0;
  transform: translate3d(-12px, 0, 0);
  animation: bulletFadeIn 0.6s cubic-bezier(.2,.7,.2,1) both;
}
.offer-bullets li:nth-child(1) { animation-delay: 0.5s; }
.offer-bullets li:nth-child(2) { animation-delay: 0.65s; }
.offer-bullets li:nth-child(3) { animation-delay: 0.8s; }
.offer-bullets li:nth-child(4) { animation-delay: 0.95s; }
.offer-bullets li:nth-child(5) { animation-delay: 1.1s; }
@keyframes bulletFadeIn {
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

/* Hero CTA — stronger resting shadow only, pulse handled globally on scroll */
.offer-hero .btn--primary {
  box-shadow: 0 10px 28px rgba(74,155,147,0.32);
}

/* ---------- "Here's exactly what we build for you" — collage with nailed-down cards ---------- */
.included-grid {
  gap: 22px;                    /* even spacing across the grid */
  perspective: 1400px;
  padding: 32px 8px 16px;
}
.included-item {
  position: relative;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 28px 24px 22px;       /* extra top padding to clear the nail */
  display: flex;
  gap: 14px;
  align-items: flex-start;
  overflow: visible;             /* allow nail to poke out the top */
  opacity: 0;
  /* Drop shadow gives them a "tacked to the wall" feel */
  box-shadow: 0 6px 14px rgba(15,30,46,0.08), 0 1px 3px rgba(15,30,46,0.05);
  transition:
    opacity 0.6s ease,
    transform 1s cubic-bezier(0.34, 1.32, 0.5, 1),
    border-color 0.3s ease,
    box-shadow 0.35s ease;
}

/* Side gradient bar (still here, hidden behind the card chrome) */
.included-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--teal-light), var(--teal), var(--navy));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.45s cubic-bezier(.2,.7,.2,1);
  border-radius: 14px 0 0 14px;
}

/* THE NAIL — metallic phillips-head screw, hammered into place when card lands */
.included-item::after {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background:
    /* Phillips cross + metallic head */
    linear-gradient(transparent 44%, rgba(0,0,0,0.55) 44%, rgba(0,0,0,0.55) 56%, transparent 56%),
    linear-gradient(90deg, transparent 44%, rgba(0,0,0,0.55) 44%, rgba(0,0,0,0.55) 56%, transparent 56%),
    radial-gradient(circle at 32% 28%, #DCD8D0 0%, #98948A 40%, #4A463F 80%, #2A2620 100%);
  background-size: 60% 60%, 60% 60%, 100% 100%;
  background-position: center, center, center;
  background-repeat: no-repeat;
  /* Initial: above the card, scaled down, blurry — about to be driven in */
  opacity: 0;
  transform: translateX(-50%) translateY(-26px) scale(0.4);
  filter: blur(2px);
  box-shadow:
    0 0 0 0 rgba(74,155,147,0),
    0 2px 4px rgba(0,0,0,0),
    0 0 0 1px rgba(0,0,0,0),
    inset 0 -1px 1px rgba(0,0,0,0),
    inset 1px 1px 1px rgba(255,255,255,0);
  z-index: 10;
  pointer-events: none;
}

/* Trigger the hammer animation when the grid scrolls into view */
.included-grid.is-visible .included-item::after {
  animation: hammerNail 0.55s cubic-bezier(0.6, -0.2, 0.4, 1.3) forwards;
}
.included-grid.is-visible .included-item:nth-child(1)::after { animation-delay: 0.55s; }
.included-grid.is-visible .included-item:nth-child(2)::after { animation-delay: 0.68s; }
.included-grid.is-visible .included-item:nth-child(3)::after { animation-delay: 0.80s; }
.included-grid.is-visible .included-item:nth-child(4)::after { animation-delay: 0.92s; }
.included-grid.is-visible .included-item:nth-child(5)::after { animation-delay: 1.04s; }
.included-grid.is-visible .included-item:nth-child(6)::after { animation-delay: 1.16s; }

@keyframes hammerNail {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(-26px) scale(0.4);
    filter: blur(2px);
    box-shadow:
      0 0 0 0 rgba(74,155,147,0),
      0 0 0 0 rgba(0,0,0,0),
      0 0 0 0 rgba(0,0,0,0),
      inset 0 0 0 0 rgba(0,0,0,0),
      inset 0 0 0 0 rgba(255,255,255,0);
  }
  55% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1.35);
    filter: blur(0);
    box-shadow:
      0 0 0 0 rgba(74,155,147,0.7),
      0 3px 5px rgba(0,0,0,0.45),
      0 0 0 1px rgba(0,0,0,0.18),
      inset 0 -1px 1px rgba(0,0,0,0.35),
      inset 1px 1px 1px rgba(255,255,255,0.4);
  }
  72% {
    transform: translateX(-50%) translateY(0) scale(0.9);
    box-shadow:
      0 0 0 6px rgba(74,155,147,0.45),
      0 2px 4px rgba(0,0,0,0.45),
      0 0 0 1px rgba(0,0,0,0.18),
      inset 0 -1px 1px rgba(0,0,0,0.35),
      inset 1px 1px 1px rgba(255,255,255,0.4);
  }
  88% {
    transform: translateX(-50%) translateY(0) scale(1.05);
    box-shadow:
      0 0 0 14px rgba(74,155,147,0.15),
      0 2px 4px rgba(0,0,0,0.45),
      0 0 0 1px rgba(0,0,0,0.18),
      inset 0 -1px 1px rgba(0,0,0,0.35),
      inset 1px 1px 1px rgba(255,255,255,0.4);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
    filter: blur(0);
    box-shadow:
      0 0 0 22px rgba(74,155,147,0),
      0 2px 4px rgba(0,0,0,0.45),
      0 0 0 1px rgba(0,0,0,0.18),
      inset 0 -1px 1px rgba(0,0,0,0.35),
      inset 1px 1px 1px rgba(255,255,255,0.4);
  }
}

/* Card jolt — tiny dip when the nail "hits" */
@keyframes cardImpact {
  0%, 100% { /* settled position set by nth-child rules below */ }
  50%      { /* impact frame defined per-card */ }
}

.included-item .check {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.94rem; font-weight: 700;
  flex: 0 0 32px;
  box-shadow: 0 3px 10px rgba(74,155,147,0.32);
}
.included-item h4 { color: var(--navy); }

/* === Scattered starting positions — papers tossed onto a corkboard === */
.included-item:nth-child(1) { transform: translate(-46px,  72px) rotate(-9deg)  scale(0.92); }
.included-item:nth-child(2) { transform: translate( 38px, -48px) rotate( 6deg)  scale(0.93); }
.included-item:nth-child(3) { transform: translate( 58px,  68px) rotate(-4deg)  scale(0.94); }
.included-item:nth-child(4) { transform: translate(-62px, -56px) rotate( 8deg)  scale(0.91); }
.included-item:nth-child(5) { transform: translate( 42px,  56px) rotate(-7deg)  scale(0.93); }
.included-item:nth-child(6) { transform: translate(-32px, -68px) rotate( 5deg)  scale(0.94); }

/* === Settled positions — evenly placed in grid cells, each with its own slight tilt === */
.included-grid.is-visible .included-item:nth-child(1) { transform: rotate(-2.5deg); z-index: 3; }
.included-grid.is-visible .included-item:nth-child(2) { transform: rotate( 1.6deg); z-index: 5; }
.included-grid.is-visible .included-item:nth-child(3) { transform: rotate(-1.2deg); z-index: 4; }
.included-grid.is-visible .included-item:nth-child(4) { transform: rotate( 2.4deg); z-index: 2; }
.included-grid.is-visible .included-item:nth-child(5) { transform: rotate(-1.8deg); z-index: 6; }
.included-grid.is-visible .included-item:nth-child(6) { transform: rotate( 2.2deg); z-index: 3; }
.included-grid.is-visible .included-item { opacity: 1; }

/* Stagger the fall-in */
.included-grid.is-visible .included-item:nth-child(1) { transition-delay: 0.05s; }
.included-grid.is-visible .included-item:nth-child(2) { transition-delay: 0.18s; }
.included-grid.is-visible .included-item:nth-child(3) { transition-delay: 0.30s; }
.included-grid.is-visible .included-item:nth-child(4) { transition-delay: 0.42s; }
.included-grid.is-visible .included-item:nth-child(5) { transition-delay: 0.54s; }
.included-grid.is-visible .included-item:nth-child(6) { transition-delay: 0.66s; }

/* Hover: card straightens (as if pulled forward) and rises */
.included-grid.is-visible .included-item:hover {
  transform: translate(0, -4px) rotate(0deg) !important;
  z-index: 20 !important;
  border-color: var(--teal-light);
  box-shadow:
    0 18px 36px rgba(15,30,46,0.18),
    0 4px 12px rgba(15,30,46,0.08);
}
.included-grid.is-visible .included-item:hover::before { transform: scaleY(1); }

/* ---------- Founder's promise card — soft glow behind the navy ---------- */
.promise {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  isolation: isolate;          /* creates a stacking context so z-index:-1 stays inside */
}
.promise::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;                 /* sit BEHIND the text/content */
  background:
    radial-gradient(ellipse 50% 60% at 20% 30%, rgba(74,155,147,0.22), transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 70%, rgba(74,155,147,0.10), transparent 60%);
  pointer-events: none;
  animation: promiseShift 12s ease-in-out infinite;
}
.promise > * { position: relative; z-index: 1; }
@keyframes promiseShift {
  0%,100% { transform: translate(0,0); }
  50%     { transform: translate(-10px, 6px); }
}

/* ---------- Fit cols (this is for you / this isn't for you) ---------- */
.fit-col {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: 28px 28px 30px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}
.fit-col::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light), var(--teal));
  background-size: 200% 100%;
  animation: ctaGlow 6s ease-in-out infinite;
}
.fit-col.negative::before {
  background: linear-gradient(90deg, #C2BDB1, #8E8879, #C2BDB1);
}
.fit-col:hover {
  border-color: var(--teal-light);
  box-shadow: 0 12px 28px rgba(15,30,46,0.08);
  transform: translateY(-2px);
}
.fit-col li {
  transition: color 0.25s ease, padding 0.25s ease;
  padding: 4px 0;
}
.fit-col li:hover { padding-left: 6px; color: var(--navy); }

/* ---------- Form card — stronger presence + animated gradient border ---------- */
.form-card {
  position: relative;
  background: #fff;
  border-radius: 22px;
  padding: clamp(32px, 4vw, 48px);
  border: 1px solid var(--rule);
  box-shadow:
    0 24px 60px rgba(15,30,46,0.10),
    0 4px 16px rgba(15,30,46,0.04);
}
.form-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light), var(--navy), var(--teal));
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: formBorderShift 8s ease-in-out infinite;
  pointer-events: none;
  opacity: 0.5;
}
.form-card:focus-within::before { opacity: 1; }
@keyframes formBorderShift {
  0%,100% { background-position: 0% 50%; }
  50%     { background-position: 100% 50%; }
}

/* Submit button: same pill style as other CTAs, centered in its row */
.form-submit {
  align-items: center;
  text-align: center;
  gap: 22px;
}
.form-submit .btn--primary {
  width: auto;
  box-shadow: 0 10px 28px rgba(74,155,147,0.32);
}
.form-submit .btn--primary::after { display: none; } /* drop any leftover constant halo */
.form-submit small { max-width: 42ch; line-height: 1.6; }
.form-submit .btn--primary::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--teal), var(--teal-light), var(--teal));
  background-size: 200% 200%;
  z-index: -1;
  opacity: 0.55;
  filter: blur(14px);
  animation: ctaGlow 4s ease-in-out infinite;
}
.form-submit .btn--primary:hover::after { opacity: 1; }
.submit-label-mobile { display: none; }

@media (max-width: 640px) {
  .form-submit .btn--primary {
    width: 100%;
    justify-content: center;
    padding-inline: 20px;
  }

  .submit-label-full { display: none; }
  .submit-label-mobile { display: inline; }
}

/* ---------- Safety net section — bold last-chance pop ---------- */
.safety-net {
  position: relative;
  background:
    linear-gradient(135deg, var(--navy) 0%, #1c324a 60%, var(--navy-deep) 100%);
  color: #fff;
  overflow: hidden;
}
.safety-net::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 60% at 20% 50%, rgba(74,155,147,0.22), transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 50%, rgba(244,162,97,0.14), transparent 70%);
  pointer-events: none;
  animation: promiseShift 14s ease-in-out infinite;
}
.safety-net::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.safety-net .container { position: relative; z-index: 1; }
.safety-net-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 7px 13px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 999px;
  background: rgba(255,255,255,0.11);
  color: var(--teal-light);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.25;
  text-transform: uppercase;
}
.safety-net h2 {
  color: #fff;
  -webkit-text-fill-color: currentColor;
  background: none;
  animation: none;
}
.safety-net p { color: rgba(255,255,255,0.86); }
.safety-net .safety-net-promise {
  max-width: 52ch;
  margin-bottom: 18px;
}
.safety-net .safety-net-stripe {
  max-width: 50ch;
  margin: 0 auto 30px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 16px;
  background: rgba(255,255,255,0.09);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.11);
  font-size: 0.98rem;
}
.safety-net .safety-net-stripe-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.safety-net .safety-net-stripe strong {
  color: #fff;
}
.safety-net .safety-net-stripe p {
  margin-bottom: 0;
  font-size: inherit;
}
.stripe-trust-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  gap: 7px;
  padding: 6px 11px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 8px 20px rgba(8, 15, 29, 0.16);
}
.stripe-trust-powered {
  color: #53627C;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
}
.stripe-trust-wordmark {
  color: #635BFF;
  font-family: var(--sans);
  font-size: 1.12rem;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1;
}
.safety-net .btn--primary {
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 32px rgba(74,155,147,0.5);
}
.safety-net .btn--primary:hover {
  background: var(--teal-light);
  box-shadow: 0 14px 38px rgba(74,155,147,0.65);
}

/* ---------- Mobile tweaks ---------- */
@media (max-width: 720px) {
  .services-carousel .service-card { flex-basis: 280px; padding: 24px 22px; }
  .services-carousel-track { animation-duration: 28s; }
  .stats-banner .stats-grid { gap: 24px; }
}

/* =====================================================
   MOBILE POLISH PASS — beautiful on small screens
   ===================================================== */

/* ---------- 768px and below: tablet + mobile ---------- */
@media (max-width: 768px) {
  /* Tighter section padding so vertical rhythm doesn't feel cavernous */
  .section { padding: clamp(36px, 7vw, 56px) 0 !important; }

  /* Hero — image becomes part of the flow, not dominant */
  .hero { padding-top: 24px !important; padding-bottom: 32px !important; }
  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .hero-headline {
    font-size: clamp(2rem, 7vw, 2.6rem) !important;
    line-height: 1.1 !important;
  }
  .hero-sub {
    font-size: 1rem !important;
    line-height: 1.55 !important;
  }
  .hero-visual {
    max-width: 88%;
    margin: 0 auto;
  }
  .hero-visual img {
    max-height: 380px;
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  .hero-badge {
    font-size: 0.85rem;
    padding: 10px 14px;
  }
  .trust-strip {
    gap: 8px 14px !important;
    font-size: 0.82rem !important;
  }
  .hero-ctas { flex-wrap: wrap; gap: 10px; }
  .hero-ctas .btn--lg { width: 100%; justify-content: center; }
  .hero-ctas .btn--ghost { width: 100%; justify-content: center; }

  /* Section headings stay readable at smaller scale */
  h1 { font-size: clamp(1.8rem, 6vw, 2.4rem) !important; line-height: 1.15 !important; }
  h2 { font-size: clamp(1.5rem, 5vw, 2rem) !important; line-height: 1.2 !important; }
  h3 { font-size: clamp(1.1rem, 4vw, 1.3rem) !important; }

  /* Honest-pitch image stacks below heading, capped height */
  .honest-pitch-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
  .honest-pitch-visual { max-width: 92%; margin: 0 auto; }
  .honest-pitch-visual img { max-height: 480px; object-fit: cover; }

  /* Three columns under honest pitch — already responsive, just tighten */
  .columns-3 { gap: 18px !important; }
  .column { padding: 22px 22px 26px !important; }

  /* Phone notification band — phone shrinks to fit nicely */
  .phone-grid { gap: 28px !important; }
  .phone {
    width: 240px !important;
    height: 500px !important;
    border-radius: 38px !important;
  }
  .phone-screen {
    border-radius: 30px !important;
    padding: 50px 12px 14px !important;
  }
  .phone-notch { width: 80px !important; height: 22px !important; }
  .msg-bubble { font-size: 0.78rem; padding: 8px 11px 9px; }
  .msg-from { font-size: 0.66rem; }
  .msg-time { font-size: 0.62rem; }

  /* Founder card — tighter padding */
  .founder-copy {
    padding: clamp(22px, 5vw, 32px) !important;
    border-radius: 16px;
  }
  .founder-copy::before {
    font-size: 4rem;
    top: -6px;
    left: 14px;
  }
  .founder-copy p { font-size: 0.98rem !important; line-height: 1.6; }

  /* Services carousel — smaller cards, faster loop */
  .services-carousel .service-card { flex-basis: 260px; padding: 22px 20px; }
  .services-carousel-track { gap: 16px; animation-duration: 26s; }

  /* Territory band — image stacks above copy, contained */
  .territory-band { padding: clamp(40px, 6vw, 56px) 0 !important; }
  .territory-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
  .territory-visual { max-width: 100%; }
  .territory-visual img { max-height: 320px; object-fit: cover; }
  .territory-copy h2 { font-size: 1.5rem !important; }
  .territory-lead { font-size: 0.96rem !important; }
  .territory-cta { flex-direction: column; align-items: stretch; gap: 14px; }
  .territory-cta .btn--lg { width: 100%; justify-content: center; }
  .territory-cta small { text-align: center; max-width: none; }

  /* Why-us list — tighter cards, smaller numerals */
  .why-list { gap: 18px !important; }
  .why-item { padding: 24px 24px !important; border-radius: 14px; }
  .why-item .numeral { font-size: 2rem !important; }
  .why-item h3 { margin-bottom: 8px; }

  /* Steps — tighter padding, no perspective issues */
  .steps { gap: 18px !important; }
  .step { padding: 24px 20px 26px !important; }
  .step-num { width: 48px !important; height: 48px !important; font-size: 1.1rem !important; margin-bottom: 14px; }
  /* Hide the dotted connecting path on mobile (already hidden by base, just confirming) */
  .steps--centered::before { display: none !important; }
  /* Arrows on mobile need to size down */
  .step:not(:last-child)::after {
    width: 11px !important; height: 11px !important;
  }

  /* Result cards on results page */
  .result-card { padding: 22px 22px !important; }

  /* FAQ — tighter spacing */
  .faq-item { margin-bottom: 10px !important; border-radius: 14px; }
  .faq-q { padding: 18px 60px 18px 22px !important; font-size: 0.98rem !important; }
  .faq-q::after { width: 30px !important; height: 30px !important; right: 14px !important; }
  .faq-a-inner { padding: 4px 22px 22px !important; font-size: 0.94rem; }

  /* Big CTA — smaller heading, full-width button */
  .big-cta { padding: clamp(48px, 8vw, 72px) 0 !important; }
  .big-cta h2 { font-size: clamp(1.5rem, 5vw, 2rem) !important; }
  .big-cta p { font-size: 0.96rem !important; }
  .big-cta .btn--lg { width: 100%; max-width: 360px; justify-content: center; }

  /* How-it-works hero image — bigger and impactful, still fits in mobile viewport */
  .how-hero-visual {
    width: auto !important;
    max-width: clamp(300px, 82vw, 380px) !important;   /* scales with viewport, fully fits */
    margin: 24px auto 0 !important;
    padding: 0 !important;
    display: block !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 18px 40px rgba(15,30,46,0.16), 0 4px 12px rgba(15,30,46,0.08) !important;
  }
  .how-hero-visual::after { display: none !important; }
  .how-hero-visual img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: none !important;
    display: block !important;
  }

  /* Services hero image */
  .services-hero-visual { max-width: 100% !important; }
  .services-hero-visual img { max-height: 280px !important; object-fit: cover; }

  /* Cred bar — smaller font, faster scroll */
  .cred-bar .cred-track { font-size: 0.78rem !important; gap: 24px !important; }

  /* Free trial offer hero — heading scaling */
  .offer-hero { padding-top: 56px !important; padding-bottom: 40px !important; }
  .offer-hero h1 {
    font-size: clamp(1.7rem, 6.5vw, 2.4rem) !important;
    line-height: 1.15 !important;
  }
  .offer-hero .lead { font-size: 1rem !important; }
  .offer-bullets li { padding: 12px 14px 12px 16px !important; font-size: 0.92rem; }
  .offer-bullets .check { width: 22px !important; height: 22px !important; flex: 0 0 22px !important; font-size: 0.7rem !important; }

  /* Form card */
  .form-card { padding: clamp(22px, 5vw, 32px) !important; border-radius: 16px; }

  /* Promise card */
  .promise { padding: clamp(28px, 5vw, 40px) !important; border-radius: 18px; }
  .promise h2 { font-size: 1.5rem !important; }
  .promise p { font-size: 0.98rem !important; }

  /* Industry cards */
  .industry-grid { gap: 14px !important; }
  .industry-card { padding: 22px 20px !important; border-radius: 14px; }

  /* Service block on services.html */
  .service-block { padding: 48px 0 !important; }
  .service-inner { gap: 28px !important; }
  .aside { padding: 22px 22px !important; border-radius: 14px; }

  /* Buttons — slightly smaller default */
  .btn { padding: 13px 20px !important; font-size: 0.94rem; }
  .btn--lg { padding: 15px 24px !important; font-size: 1rem; }

  /* Container side padding tightens on small screens */
  .container { padding-left: 18px !important; padding-right: 18px !important; }

  /* Footer */
  .site-footer { padding-top: 48px !important; padding-bottom: 32px !important; }
  .footer-brand p { font-size: 0.88rem; }
}

/* Mobile drawer — match the desktop heading font treatment */
.mobile-drawer a {
  font-family: var(--serif, "Newsreader", Georgia, serif) !important;
  font-size: clamp(1.7rem, 6vw, 2rem) !important;
  font-weight: 500 !important;
  line-height: 1.15 !important;
  font-variation-settings: "opsz" 42 !important;
  letter-spacing: -0.01em !important;
}

/* ---------- 480px and below: small phones ---------- */
@media (max-width: 480px) {
  .hero-headline { font-size: clamp(1.7rem, 8vw, 2.2rem) !important; }
  h1 { font-size: clamp(1.6rem, 7vw, 2rem) !important; }
  h2 { font-size: clamp(1.35rem, 5.5vw, 1.7rem) !important; }

  /* Phone shrinks further */
  .phone { width: 220px !important; height: 460px !important; }
  .phone-screen { padding: 46px 10px 12px !important; }

  /* Services cards smaller */
  .services-carousel .service-card { flex-basis: 240px; padding: 20px 18px; }

  /* Territory image keeps detail visible */
  .territory-visual img { max-height: 240px; }

  /* Why-us numerals scale down a touch more */
  .why-item .numeral { font-size: 1.8rem !important; }

  /* Card paddings tighter */
  .why-item, .step, .column, .industry-card, .result-card { padding: 20px 18px !important; }
}

/* ============================================================
   OFFERS SECTION — two-up cards (homepage CTA)
   ============================================================ */
.offers-section {
  position: relative;
  background:
    radial-gradient(1100px 540px at 50% -120px, rgba(43,168,154,0.10), transparent 60%),
    var(--bg);
  padding: clamp(72px, 9vw, 120px) 0;
  overflow: hidden;
}
.offers-section .section-head { margin-bottom: clamp(36px, 5vw, 56px); }
.offers-section .offers-scarcity {
  color: var(--navy);
}

.offers-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(172px, 210px) minmax(0, 1fr);
  gap: clamp(18px, 2vw, 26px);
  align-items: stretch;
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 42px;
}
.offers-grid--single {
  grid-template-columns: minmax(0, 620px);
  justify-content: center;
  max-width: 680px;
}

.offer-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 18px 40px rgba(15,30,46,0.08), 0 4px 12px rgba(15,30,46,0.04);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  overflow: hidden;
  height: 100%;
  text-align: center;
}
.offer-card--featured-value,
.offer-card--featured-leads {
  overflow: visible;
  z-index: 2;
}
.offer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(43,168,154,0.04) 0%, rgba(43,168,154,0) 60%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 50px rgba(15,30,46,0.12), 0 6px 18px rgba(15,30,46,0.06);
  border-color: rgba(43,168,154,0.35);
}
.offer-card:hover::before { opacity: 1; }

.offer-card .offer-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(43,168,154,0.08);
  border: 1px solid rgba(43,168,154,0.25);
  padding: 6px 12px;
  border-radius: 999px;
  align-self: center;
  text-align: center;
}
.offer-card .offer-value {
  display: block;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: -0.005em;
  text-align: center;
}
.offer-card h3 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 1.85rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 0;
}
.offer-card-centered-title {
  text-align: center;
  align-self: center;
  width: 100%;
}
.offer-card > p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}
.offer-card .offer-breakdown-intro {
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--navy);
  margin-top: -4px;
}
.offer-card-centered-copy,
.offer-card .offer-breakdown-intro {
  text-align: center;
  align-self: center;
  width: 100%;
}
.offer-card-centered-copy {
  max-width: 40ch;
  margin-left: auto;
  margin-right: auto;
}
.offer-card .offer-breakdown-intro {
  margin-left: auto;
  margin-right: auto;
}
.offer-features {
  list-style: none;
  padding: 0;
  margin: 6px 0 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.offer-features li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 36ch;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.45;
  text-align: center;
}
.offer-features .check {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.package-receipt {
  position: relative;
  display: grid;
  gap: 0;
  margin: 2px 0 12px;
  padding: 14px 16px 12px;
  border: 1px solid rgba(23, 40, 59, 0.12);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(248,252,251,0.92)),
    repeating-linear-gradient(0deg, rgba(23,40,59,0.035) 0 1px, transparent 1px 34px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
  overflow: hidden;
  text-align: left;
}
.package-receipt::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), rgba(43,168,154,0.15));
}
.package-receipt-head,
.package-line,
.package-total,
.package-free {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: baseline;
}
.package-receipt-head {
  padding: 2px 0 9px;
  border-bottom: 1px solid rgba(23, 40, 59, 0.1);
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2A6F68;
}
.package-line {
  min-height: 34px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(23, 40, 59, 0.075);
  font-size: 0.86rem;
  line-height: 1.28;
  color: var(--ink);
}
.package-line:last-child { border-bottom: 0; }
.package-line span {
  min-width: 0;
  color: var(--ink-soft);
}
.package-line strong {
  position: relative;
  display: inline-block;
  min-width: 58px;
  text-align: right;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--navy);
}
.package-line strong::before,
.package-line strong::after {
  content: "";
  position: absolute;
  left: -6%;
  right: -6%;
  top: 51%;
  height: 2px;
  border-radius: 999px;
  background: #C53030;
  transform: rotate(-5deg) scaleX(0);
  transform-origin: left center;
}
.package-line strong::after {
  top: 60%;
  height: 1.5px;
  opacity: 0.55;
  transform: rotate(4deg) scaleX(0);
}
.offer-card.is-visible .package-line strong::before {
  animation: packagePriceStrike 0.62s cubic-bezier(.24,.82,.35,1) forwards;
  animation-delay: var(--strike-delay);
}
.offer-card.is-visible .package-line strong::after {
  animation: packagePriceStrikeAlt 0.62s cubic-bezier(.24,.82,.35,1) forwards;
  animation-delay: calc(var(--strike-delay) + 0.08s);
}
@keyframes packagePriceStrike {
  to { transform: rotate(-5deg) scaleX(1); }
}
@keyframes packagePriceStrikeAlt {
  to { transform: rotate(4deg) scaleX(1); }
}
.package-total {
  margin: 6px -4px 0;
  padding: 12px 4px 2px;
  border-top: 1px solid rgba(23, 40, 59, 0.18);
  font-family: var(--sans);
}
.package-total span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2A6F68;
}
.package-total strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  color: var(--navy);
}
.package-free {
  display: block;
  margin: 10px -8px -4px;
  padding: 12px 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(43,168,154,0.12), rgba(43,168,154,0.04));
  border: 1px solid rgba(43,168,154,0.28);
  font-family: var(--sans);
}
.package-free-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: baseline;
}
.package-free-row span {
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2A6F68;
}
.package-free-row strong {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--teal);
}
.management-discount--package {
  margin-top: 10px;
  padding: 10px 10px;
  background: rgba(255,255,255,0.7);
}
.management-discount--package .management-discount-price strong {
  font-size: 1.08rem;
}
.offer-guarantee {
  position: relative;
  margin: -2px 0 12px;
  padding: 16px 16px 15px;
  border-radius: 14px;
  border: 1px solid rgba(43,168,154,0.24);
  background:
    linear-gradient(135deg, rgba(22,41,61,0.055), rgba(43,168,154,0.08)),
    #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.85);
  text-align: center;
}
.offer-guarantee::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  border-radius: 14px 14px 0 0;
  background: linear-gradient(90deg, var(--navy), var(--teal));
}
.offer-guarantee-kicker {
  display: block;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2A6F68;
  margin-bottom: 8px;
}
.territory-meter {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  gap: 8px;
  align-items: center;
  max-width: 340px;
  margin: 0 auto 10px;
  color: var(--navy);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.territory-meter span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(43,168,154,0.22);
}
.territory-meter span:last-child {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}
.territory-meter b {
  display: block;
  height: 2px;
  min-width: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(43,168,154,0.25), var(--teal));
}
.offer-card .offer-guarantee p {
  margin: 0;
  color: var(--navy);
  font-size: 0.92rem;
  line-height: 1.5;
  font-weight: 650;
}
.offer-card.offer-card--featured-leads .offer-guarantee {
  margin-top: auto;
}
.offer-card.offer-card--featured-leads .btn {
  margin-top: 0;
}
.lead-math {
  position: relative;
  display: grid;
  gap: 0;
  margin: 2px 0 12px;
  padding: 14px 16px 12px;
  border: 1px solid rgba(23, 40, 59, 0.12);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(248,252,251,0.92)),
    repeating-linear-gradient(0deg, rgba(23,40,59,0.035) 0 1px, transparent 1px 34px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
  overflow: hidden;
  text-align: left;
}
.lead-math::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), rgba(43,168,154,0.75));
}
.lead-math-head,
.lead-math-line,
.lead-math-total {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: baseline;
}
.lead-math-head {
  padding: 2px 0 9px;
  border-bottom: 1px solid rgba(23, 40, 59, 0.1);
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2A6F68;
}
.lead-math-line {
  min-height: 34px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(23, 40, 59, 0.075);
  font-size: 0.86rem;
  line-height: 1.28;
  color: var(--ink-soft);
}
.lead-math-line strong {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 850;
  color: var(--navy);
  white-space: nowrap;
}
.lead-math-total {
  margin: 8px -8px -4px;
  padding: 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(242,178,61,0.15), rgba(43,168,154,0.08));
  border: 1px solid rgba(242,178,61,0.32);
  font-family: var(--sans);
}
.lead-math-total span {
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7A5B12;
}
.lead-math-total strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 750;
  line-height: 1;
  color: var(--navy);
  white-space: nowrap;
}
@media (prefers-reduced-motion: reduce) {
  .package-line strong::before { transform: rotate(-5deg) scaleX(1); }
  .package-line strong::after { transform: rotate(4deg) scaleX(1); }
}
.offer-card .btn {
  margin-top: auto;
  align-self: stretch;
  justify-content: center;
}
.offer-bridge {
  position: sticky;
  top: 110px;
  z-index: 1;
  align-self: start;
  margin-top: clamp(96px, 12vw, 148px);
  padding: 20px 18px 18px;
  min-height: 176px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  color: var(--navy);
}
.offer-bridge::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(43,168,154,0.24);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(43,168,154,0.16), transparent 48%),
    rgba(255,255,255,0.76);
  box-shadow: 0 18px 42px rgba(15,30,46,0.08);
  z-index: -1;
}
.offer-bridge::after {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(43,168,154,0.38), transparent);
  transform: translateX(-50%);
  z-index: -2;
}
.offer-bridge-kicker {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  font-weight: 650;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.offer-bridge-line {
  width: 58px;
  height: 6px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(224,38,38,0.1), rgba(224,38,38,0.9), rgba(224,38,38,0.18)),
    repeating-linear-gradient(98deg, rgba(255,255,255,0.34) 0 3px, transparent 3px 8px);
  transform: rotate(-3deg) scaleX(0);
  transform-origin: left center;
}
.offer-bridge-copy {
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 750;
  line-height: 1.35;
  color: var(--ink-soft);
  max-width: 18ch;
}
.offer-bridge-arrow {
  width: 78px;
  max-width: 86%;
  height: auto;
  fill: none;
  stroke: var(--teal);
  stroke-width: 4.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 170;
  stroke-dashoffset: 170;
  filter: drop-shadow(0 2px 0 rgba(255,255,255,0.8));
  margin-top: 0;
  transform: translateX(6px) translateY(2px) rotate(2deg);
}
.offer-bridge.is-visible .offer-bridge-line {
  animation: offerBridgeMarker 0.52s cubic-bezier(.22,.9,.28,1) 0.12s forwards;
}
.offer-bridge.is-visible .offer-bridge-arrow {
  animation: offerBridgeArrow 0.8s cubic-bezier(.2,.78,.34,1) 0.34s forwards;
}
@keyframes offerBridgeMarker {
  72% { transform: rotate(-3deg) scaleX(1.08); }
  100% { transform: rotate(-3deg) scaleX(1); }
}
@keyframes offerBridgeArrow {
  to { stroke-dashoffset: 0; }
}
.offers-footnote {
  text-align: center;
  margin: clamp(46px, 5vw, 68px) auto 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}

@media (max-width: 1040px) {
  .offers-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    gap: 22px;
  }
  .offer-card--featured-leads {
    margin-top: 38px;
  }
  .offer-bridge {
    position: relative;
    top: auto;
    min-height: 0;
    margin: 0 auto;
    padding: 18px 22px;
    width: min(100%, 460px);
  }
  .offer-bridge::before {
    border-radius: 18px;
    inset: 0;
  }
  .offer-bridge::after {
    display: none;
  }
  .offer-bridge-arrow {
    margin-top: 2px;
    transform: translateY(4px) rotate(92deg);
    width: 78px;
  }
}

@media (max-width: 480px) {
  .offer-card { padding: 24px 20px; }
  .offer-card h3 { font-size: 1.35rem; }
  .package-receipt { padding: 13px 13px 11px; }
  .package-receipt-head { font-size: 0.55rem; }
  .package-line {
    gap: 10px;
    font-size: 0.8rem;
  }
  .package-line strong {
    min-width: 52px;
    font-size: 0.84rem;
  }
  .package-total span { font-size: 0.62rem; }
  .package-total strong { font-size: 1.18rem; }
  .package-free { margin-left: -5px; margin-right: -5px; }
  .package-free-row span { font-size: 0.62rem; }
  .package-free-row strong { font-size: 0.9rem; }
  .management-discount--package {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .management-discount--package .management-discount-price {
    justify-content: flex-start;
  }
  .lead-math { padding: 13px 13px 11px; }
  .lead-math-head { font-size: 0.55rem; }
  .lead-math-line {
    gap: 10px;
    font-size: 0.8rem;
  }
  .lead-math-line strong { font-size: 0.84rem; }
  .lead-math-total span { font-size: 0.62rem; }
  .lead-math-total strong { font-size: 1.18rem; }
}

/* Creative crossed-value marker for the homepage free-website offer */
.value-signal {
  position: absolute;
  top: -52px;
  right: 20px;
  z-index: 8;
  width: 214px;
  height: 122px;
  pointer-events: none;
  filter: drop-shadow(0 14px 22px rgba(15, 30, 46, 0.12));
}
.value-signal-card {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 158px;
  padding: 13px 17px 15px;
  border: 1px solid rgba(23, 40, 59, 0.24);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,252,251,0.98)),
    #fff;
  color: #17283B;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.92), 0 14px 32px rgba(15,30,46,0.14);
  transform: rotate(1.5deg);
  animation: valueSignalFloat 3.2s ease-in-out infinite;
}
.value-signal-card::before,
.value-signal-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.value-signal-card::before {
  inset: 0;
  border-radius: inherit;
  border-top: 4px solid #2BA89A;
}
.value-signal-card::after {
  left: 18px;
  right: 18px;
  bottom: 9px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(43,168,154,0.36), transparent);
}
.value-signal-kicker,
.value-signal-note {
  display: block;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}
.value-signal-kicker { color: #2A6F68; }
.value-signal-price {
  position: relative;
  display: inline-block;
  margin: 4px 0 0;
  font-family: var(--serif);
  font-size: 2.05rem;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.01em;
}
.value-signal-price::before,
.value-signal-price::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  top: 50%;
  height: 3px;
  border-radius: 999px;
  background: #C53030;
  --strike-angle: -6deg;
  transform: rotate(var(--strike-angle)) scaleX(0);
  transform-origin: left center;
  animation: valueSignalStrike 3.2s ease-in-out infinite;
}
.value-signal-price::after {
  top: 58%;
  height: 2px;
  opacity: 0.58;
  --strike-angle: 4deg;
  animation-delay: 0.16s;
}
.value-signal-note {
  color: #5E6B76;
  font-size: 0.57rem;
  letter-spacing: 0.1em;
}
.value-signal-arrow {
  position: absolute;
  color: #17283B;
  overflow: visible;
}
.value-signal-arrow path {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 210;
  stroke-dashoffset: 210;
  animation: valueSignalDraw 3.2s ease-in-out infinite;
}
.value-signal-arrow--one {
  right: 112px;
  top: 40px;
  width: 104px;
  height: 78px;
  transform: rotate(-8deg);
}
.value-signal-arrow--two {
  right: 5px;
  top: 66px;
  width: 78px;
  height: 58px;
  color: #2BA89A;
  transform: rotate(4deg);
}
.value-signal-arrow--two path { animation-delay: 0.28s; }

.value-signal--lead .value-signal-card::before {
  border-top-color: var(--amber);
}
.value-signal--lead .value-signal-kicker {
  color: #7A5B12;
}
.value-signal--lead .value-signal-price::before,
.value-signal--lead .value-signal-price::after {
  display: none;
}
.value-signal--lead .value-signal-arrow--one {
  color: #17283B;
}
.value-signal--lead .value-signal-arrow--two {
  color: var(--amber-deep);
}

@keyframes valueSignalFloat {
  0%, 100% { transform: rotate(1.5deg) translateY(0); }
  45% { transform: rotate(-0.75deg) translateY(-5px); }
  70% { transform: rotate(2deg) translateY(-1px); }
}
@keyframes valueSignalFloatCentered {
  0%, 100% { transform: translateX(-50%) rotate(1.5deg) translateY(0); }
  45% { transform: translateX(-50%) rotate(-0.75deg) translateY(-5px); }
  70% { transform: translateX(-50%) rotate(2deg) translateY(-1px); }
}
/* ============ WEBSITE OFFER STICKY CTA ============ */
.page-website {
  padding-bottom: calc(160px + env(safe-area-inset-bottom));
}
.website-sticky-cta {
  position: fixed;
  right: clamp(16px, 3vw, 36px);
  bottom: clamp(16px, 3vw, 30px);
  z-index: 900;
  min-width: 158px;
  padding: 13px 17px 22px;
  border: 1px solid rgba(23,40,59,0.24);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,252,251,0.98)),
    #fff;
  color: #17283B;
  text-align: center;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.92), 0 14px 32px rgba(15,30,46,0.14);
  transform: rotate(1.5deg);
  animation: valueSignalFloat 3.2s ease-in-out infinite;
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease), opacity 0.4s ease;
  opacity: 0;
  pointer-events: none;
}
.website-sticky-cta.is-ready {
  opacity: 1;
  pointer-events: auto;
}
.website-sticky-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border-top: 4px solid #2BA89A;
  pointer-events: none;
}
.website-sticky-cta::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 9px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(43,168,154,0.36), transparent);
  pointer-events: none;
}
.website-sticky-cta:hover,
.website-sticky-cta:focus-visible {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.98), 0 20px 40px rgba(15,30,46,0.2);
  transform: translateY(-3px) rotate(0deg);
}
.website-sticky-cta:focus-visible {
  outline: 3px solid rgba(43,168,154,0.42);
  outline-offset: 4px;
}
.lead-sticky-cta.is-hidden,
.website-sticky-cta.is-hidden,
.website-sticky-cta.is-ready.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.website-sticky-price {
  display: block;
  margin: 6px 0 6px;
  overflow: hidden;
  height: 2.05rem;
}
.value-signal-card--flip {
  min-width: 178px;
  padding-bottom: 18px;
}
.wsp-inner {
  display: flex;
  flex-direction: column;
  animation: departureBoardFlip 5s ease-in-out infinite;
}
.wsp-inner span {
  flex-shrink: 0;
  height: 2.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 2.05rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
}
.wsp-inner span:nth-child(2) {
  color: #2BA89A;
  font-style: italic;
}
@keyframes departureBoardFlip {
  0%    { transform: translateY(0); }
  40%   { transform: translateY(0); animation-timing-function: cubic-bezier(0.55, 0, 0.45, 1); }
  50%   { transform: translateY(-2.05rem); }
  85%   { transform: translateY(-2.05rem); animation-timing-function: cubic-bezier(0.55, 0, 0.45, 1); }
  95%, 100% { transform: translateY(-4.1rem); }
}

/* Mobile — centered middle third */
@media (max-width: 720px) {
  .page-website {
    padding-bottom: calc(120px + env(safe-area-inset-bottom));
  }
  .website-sticky-cta {
    left: 50%;
    right: auto;
    bottom: max(14px, env(safe-area-inset-bottom));
    transform: translateX(-50%) rotate(1.5deg);
    animation: valueSignalFloatCentered 3.2s ease-in-out infinite;
  }
  .website-sticky-cta:hover,
  .website-sticky-cta:focus-visible {
    transform: translateX(-50%) translateY(-3px) rotate(0deg);
  }
}

/* ============ HOMEPAGE — DUAL STICKY ============ */
.page-home {
  padding-bottom: calc(160px + env(safe-area-inset-bottom));
}
/* Website sticky bottom-left on homepage */
.page-home .website-sticky-cta {
  left: clamp(16px, 3vw, 36px);
  right: auto;
  transform: rotate(-1.5deg);
  opacity: 0;
  pointer-events: none;
}
.page-home .website-sticky-cta.is-ready {
  opacity: 1;
  pointer-events: auto;
}
.page-home .website-sticky-cta.is-ready.is-hidden {
  opacity: 0;
  pointer-events: none;
}
/* Mobile — bottom-left */
@media (max-width: 720px) {
  .page-home .website-sticky-cta {
    left: 10px;
    right: auto;
    width: 48vw;
    min-width: 172px;
    max-width: 218px;
    padding: 12px 14px 20px;
    transform: rotate(-1.5deg);
    animation: valueSignalFloat 3.2s ease-in-out infinite;
  }

  .page-home .wsp-inner span {
    font-size: clamp(1.48rem, 7vw, 1.82rem);
    letter-spacing: 0;
  }
}

@keyframes valueSignalStrike {
  0%, 13% { transform: rotate(var(--strike-angle)) scaleX(0); }
  30%, 76% { transform: rotate(var(--strike-angle)) scaleX(1); }
  100% { transform: rotate(var(--strike-angle)) scaleX(0); }
}
@keyframes valueSignalDraw {
  0%, 20% { stroke-dashoffset: 210; opacity: 0; }
  36%, 78% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .value-signal-card,
  .value-signal-price::before,
  .value-signal-price::after,
  .value-signal-arrow path {
    animation: none;
  }
  .value-signal-price::before,
  .value-signal-price::after {
    transform: rotate(var(--strike-angle)) scaleX(1);
  }
  .value-signal-arrow path { stroke-dashoffset: 0; opacity: 1; }
}

@media (max-width: 820px) {
  .offers-grid { padding-top: 52px; }
  .value-signal {
    top: -55px;
    right: 12px;
    width: 174px;
    height: 112px;
  }
  .value-signal-card {
    min-width: 136px;
    padding: 11px 13px 13px;
  }
  .value-signal-price { font-size: 1.72rem; }
  .value-signal-kicker { font-size: 0.55rem; }
  .value-signal-note { font-size: 0.52rem; }
  .value-signal-arrow--one {
    right: 91px;
    top: 35px;
    width: 86px;
    height: 66px;
  }
  .value-signal-arrow--two {
    display: none;
  }
}

.value-stack-section .value-signal--landing {
  position: relative;
  top: auto;
  right: auto;
  display: block;
  width: 214px;
  height: 118px;
  margin: 20px auto 0;
  text-align: left;
}
.value-stack-section .value-signal--landing .value-signal-card {
  left: 50%;
  right: auto;
  transform: translateX(-50%) rotate(1.5deg);
  animation: valueSignalLandingFloat 3.2s ease-in-out infinite;
}
.value-stack-section .value-signal--landing .value-signal-arrow--one {
  right: 124px;
  top: 40px;
  width: 92px;
  height: 70px;
  transform: rotate(-18deg);
}
.value-stack-section .value-signal--landing .value-signal-arrow--two {
  right: -1px;
  top: 56px;
  width: 78px;
  height: 58px;
  display: block;
}
@keyframes valueSignalLandingFloat {
  0%, 100% { transform: translateX(-50%) rotate(1.5deg) translateY(0); }
  45% { transform: translateX(-50%) rotate(-0.75deg) translateY(-5px); }
  70% { transform: translateX(-50%) rotate(2deg) translateY(-1px); }
}

@media (max-width: 820px) {
  .value-stack-section .value-signal--landing {
    width: 174px;
    height: 106px;
    margin-top: 18px;
  }
  .value-stack-section .value-signal--landing .value-signal-arrow--one {
    right: 99px;
    top: 35px;
    width: 78px;
    height: 60px;
  }
  .value-stack-section .value-signal--landing .value-signal-arrow--two {
    display: none;
  }
}

/* ============================================================
   VALUE STACK — anchored pricing reveal for the free package
   ============================================================ */
.value-stack-section {
  position: relative;
  padding: clamp(72px, 9vw, 110px) 0;
  background:
    radial-gradient(900px 480px at 50% 0%, rgba(15,30,46,0.04), transparent 60%),
    var(--bg);
}
.value-stack {
  position: relative;
  max-width: 640px;
  margin: 36px auto 0;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: clamp(28px, 4vw, 44px) clamp(24px, 4vw, 40px) clamp(24px, 3vw, 36px);
  box-shadow: 0 20px 44px rgba(15,30,46,0.10), 0 4px 12px rgba(15,30,46,0.05);
  overflow: hidden;
}
.value-stack--offer-receipt {
  border-color: rgba(23, 40, 59, 0.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.95), rgba(248,252,251,0.95)),
    repeating-linear-gradient(0deg, rgba(23,40,59,0.03) 0 1px, transparent 1px 36px);
  box-shadow: 0 18px 40px rgba(15,30,46,0.08), 0 4px 12px rgba(15,30,46,0.04);
}
.value-stack--offer-receipt::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), rgba(43,168,154,0.14));
}
.value-stack::before {
  content: "INVOICE · LINE BY LINE";
  position: absolute;
  top: 14px;
  right: 18px;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(15,30,46,0.35);
}
.value-stack--offer-receipt::before {
  content: "VALUE BREAKDOWN";
  color: rgba(42,111,104,0.58);
}
.value-stack-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.value-stack-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(15,30,46,0.12);
  font-family: var(--sans);
}
.value-stack-list li:last-child { border-bottom: 0; }
.value-stack-list .value-label {
  font-size: 0.98rem;
  color: var(--ink);
  font-weight: 500;
}
.value-stack-list .value-sub {
  display: block;
  font-size: 0.78rem;
  color: var(--ink-soft);
  font-weight: 400;
  margin-top: 2px;
  letter-spacing: 0.005em;
}
.value-stack-list .value-price {
  position: relative;
  display: inline-block;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: -0.005em;
  white-space: nowrap;
}
.value-stack-list .value-price::before,
.value-stack-list .value-price::after,
.value-total-price::before,
.value-total-price::after {
  content: "";
  position: absolute;
  left: -7%;
  right: -7%;
  top: 52%;
  height: 2.5px;
  border-radius: 999px;
  background: #C53030;
  transform: rotate(-5deg) scaleX(0);
  transform-origin: left center;
}
.value-stack-list .value-price::after,
.value-total-price::after {
  top: 61%;
  height: 2px;
  opacity: 0.56;
  transform: rotate(4deg) scaleX(0);
}
.value-stack.is-visible .value-stack-list li:nth-child(1) .value-price::before { animation: valueStackStrike 0.62s cubic-bezier(.24,.82,.35,1) 0.15s forwards; }
.value-stack.is-visible .value-stack-list li:nth-child(1) .value-price::after { animation: valueStackStrikeAlt 0.62s cubic-bezier(.24,.82,.35,1) 0.23s forwards; }
.value-stack.is-visible .value-stack-list li:nth-child(2) .value-price::before { animation: valueStackStrike 0.62s cubic-bezier(.24,.82,.35,1) 0.28s forwards; }
.value-stack.is-visible .value-stack-list li:nth-child(2) .value-price::after { animation: valueStackStrikeAlt 0.62s cubic-bezier(.24,.82,.35,1) 0.36s forwards; }
.value-stack.is-visible .value-stack-list li:nth-child(3) .value-price::before { animation: valueStackStrike 0.62s cubic-bezier(.24,.82,.35,1) 0.41s forwards; }
.value-stack.is-visible .value-stack-list li:nth-child(3) .value-price::after { animation: valueStackStrikeAlt 0.62s cubic-bezier(.24,.82,.35,1) 0.49s forwards; }
.value-stack.is-visible .value-stack-list li:nth-child(4) .value-price::before { animation: valueStackStrike 0.62s cubic-bezier(.24,.82,.35,1) 0.54s forwards; }
.value-stack.is-visible .value-stack-list li:nth-child(4) .value-price::after { animation: valueStackStrikeAlt 0.62s cubic-bezier(.24,.82,.35,1) 0.62s forwards; }
.value-stack.is-visible .value-stack-list li:nth-child(5) .value-price::before { animation: valueStackStrike 0.62s cubic-bezier(.24,.82,.35,1) 0.67s forwards; }
.value-stack.is-visible .value-stack-list li:nth-child(5) .value-price::after { animation: valueStackStrikeAlt 0.62s cubic-bezier(.24,.82,.35,1) 0.75s forwards; }
.value-stack.is-visible .value-stack-list li:nth-child(6) .value-price::before { animation: valueStackStrike 0.62s cubic-bezier(.24,.82,.35,1) 0.8s forwards; }
.value-stack.is-visible .value-stack-list li:nth-child(6) .value-price::after { animation: valueStackStrikeAlt 0.62s cubic-bezier(.24,.82,.35,1) 0.88s forwards; }
.value-stack.is-visible .value-stack-list li:nth-child(7) .value-price::before { animation: valueStackStrike 0.62s cubic-bezier(.24,.82,.35,1) 0.93s forwards; }
.value-stack.is-visible .value-stack-list li:nth-child(7) .value-price::after { animation: valueStackStrikeAlt 0.62s cubic-bezier(.24,.82,.35,1) 1.01s forwards; }
.value-stack.is-visible .value-stack-list li:nth-child(8) .value-price::before { animation: valueStackStrike 0.62s cubic-bezier(.24,.82,.35,1) 1.06s forwards; }
.value-stack.is-visible .value-stack-list li:nth-child(8) .value-price::after { animation: valueStackStrikeAlt 0.62s cubic-bezier(.24,.82,.35,1) 1.14s forwards; }
.value-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 18px 0 14px;
  margin-top: 4px;
  border-top: 2px solid rgba(15,30,46,0.18);
}
.value-total-label {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.value-total-price {
  position: relative;
  display: inline-block;
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 500;
  color: var(--ink-soft);
  white-space: nowrap;
}
.value-total-price::before {
  height: 3px;
}
.value-total-price::after {
  height: 2.5px;
}
.value-stack.is-visible .value-total-price::before {
  animation: valueStackStrike 0.72s cubic-bezier(.24,.82,.35,1) 1.28s forwards;
}
.value-stack.is-visible .value-total-price::after {
  animation: valueStackStrikeAlt 0.72s cubic-bezier(.24,.82,.35,1) 1.38s forwards;
}
@keyframes valueStackStrike {
  to { transform: rotate(-5deg) scaleX(1); }
}
@keyframes valueStackStrikeAlt {
  to { transform: rotate(4deg) scaleX(1); }
}
.value-final {
  position: relative;
  margin: 22px -16px 0;
  padding: 22px 24px 24px;
  background: linear-gradient(135deg, rgba(43,168,154,0.10), rgba(43,168,154,0.04));
  border: 1px solid rgba(43,168,154,0.28);
  border-radius: 14px;
}
.value-stack--offer-receipt .value-final {
  margin-left: -8px;
  margin-right: -8px;
  background: linear-gradient(135deg, rgba(43,168,154,0.12), rgba(43,168,154,0.04));
  border-radius: 12px;
}
.value-final::before {
  content: "GROWTH PACKAGE COST";
  position: absolute;
  top: -10px;
  left: 22px;
  background: var(--teal);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 5px 12px 4px;
  border-radius: 999px;
  text-transform: uppercase;
}
.value-final-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.value-final-label {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  font-weight: 600;
}
.value-final-price {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 3.2rem);
  font-weight: 500;
  color: var(--teal);
  letter-spacing: -0.02em;
  line-height: 1;
}
.value-final-price--free {
  font-family: var(--sans);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 900;
  letter-spacing: 0.08em;
}
.value-final-price .value-final-currency {
  font-size: 0.55em;
  margin-right: 2px;
  vertical-align: 0.35em;
  color: var(--teal);
  font-weight: 600;
}
.management-discount {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 14px;
  align-items: baseline;
  margin: 16px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(43,168,154,0.28);
  border-radius: 12px;
  background: rgba(255,255,255,0.64);
}
.management-discount-label,
.management-discount-note {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2A6F68;
}
.management-discount-price {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  justify-content: flex-end;
  font-family: var(--sans);
  white-space: nowrap;
}
.management-discount-old {
  position: relative;
  display: inline-block;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 800;
}
.management-discount-old::before,
.management-discount-old::after {
  content: "";
  position: absolute;
  left: -7%;
  right: -7%;
  top: 52%;
  height: 2px;
  border-radius: 999px;
  background: #C53030;
  transform: rotate(-6deg);
}
.management-discount-old::after {
  top: 61%;
  height: 1.5px;
  opacity: 0.56;
  transform: rotate(4deg);
}
.management-discount-price strong {
  color: var(--teal);
  font-size: 1.22rem;
  font-weight: 900;
}
.management-discount-note {
  grid-column: 1 / -1;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
}
.value-final-note {
  margin: 12px 0 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
@media (prefers-reduced-motion: reduce) {
  .value-stack-list .value-price::before,
  .value-total-price::before {
    transform: rotate(-5deg) scaleX(1);
  }
  .value-stack-list .value-price::after,
  .value-total-price::after {
    transform: rotate(4deg) scaleX(1);
  }
}
.value-stack .btn {
  display: flex;
  justify-content: center;
  margin: 22px auto 0;
}
.value-savings-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 14px auto 0;
  background: rgba(197,48,48,0.08);
  border: 1px solid rgba(197,48,48,0.25);
  color: #9B2929;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 999px;
  text-transform: uppercase;
}

/* Compact inline strikethrough value (for offer card subtitle) */
.value-inline-old {
  color: var(--ink-soft);
  margin-right: 8px;
}
.value-inline-new {
  color: var(--teal);
  font-weight: 700;
}
.value-inline-usually {
  display: inline-block;
  margin-left: 6px;
  color: var(--ink-soft);
  font-weight: 650;
}

@media (max-width: 540px) {
  .value-stack { padding: 28px 20px 24px; }
  .value-stack-list .value-price { font-size: 1.1rem; }
  .value-total-price { font-size: 1.5rem; }
  .value-final { margin: 22px -10px 0; padding: 20px 18px 20px; }
  .value-final-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .value-final-label {
    text-align: left;
  }
  .value-final-price--free {
    margin-left: auto;
    text-align: right;
    font-size: clamp(1.85rem, 8vw, 2.35rem);
  }
  .management-discount {
    grid-template-columns: 1fr;
    gap: 7px;
  }
  .management-discount-price {
    justify-content: flex-start;
  }
}

/* ============================================================
   REDEVELOPMENT OFFER RECEIPT — shared offer-page receipt styling
   ============================================================ */
.lead-value-section {
  background:
    radial-gradient(900px 460px at 50% 0%, rgba(242,178,61,0.11), transparent 62%),
    radial-gradient(760px 420px at 82% 85%, rgba(43,168,154,0.08), transparent 68%),
    var(--bg);
}
.lead-receipt {
  position: relative;
  max-width: 720px;
  margin: 36px auto 0;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(23,40,59,0.13);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.97), rgba(248,252,251,0.95)),
    repeating-linear-gradient(0deg, rgba(23,40,59,0.03) 0 1px, transparent 1px 38px);
  box-shadow: 0 20px 44px rgba(15,30,46,0.1), 0 4px 12px rgba(15,30,46,0.05);
  overflow: hidden;
}
.lead-receipt::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--amber), var(--teal), rgba(43,168,154,0.16));
}
.lead-receipt::after {
  content: "PERFORMANCE RECEIPT";
  position: absolute;
  top: 16px;
  right: clamp(18px, 3vw, 30px);
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 850;
  color: rgba(23,40,59,0.35);
}
.lead-receipt-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: end;
  padding: 0 0 12px;
  margin: 0 0 10px;
  border-bottom: 1px dashed rgba(23,40,59,0.16);
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #2A6F68;
}
.lead-receipt-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.lead-receipt-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 82px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(23,40,59,0.12);
}
.lead-receipt-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.28), transparent 48%),
    linear-gradient(135deg, var(--navy), var(--teal));
  box-shadow: 0 10px 22px rgba(15,30,46,0.13);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 900;
}
.lead-receipt-list strong {
  display: block;
}
.lead-receipt-list strong {
  margin-bottom: 3px;
  color: var(--navy);
  font-family: var(--sans);
  font-size: 1rem;
}
.lead-receipt-list div span {
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.45;
}
.lead-receipt-list em {
  min-width: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border: 1px solid rgba(43,168,154,0.28);
  border-radius: 999px;
  background: rgba(43,168,154,0.1);
  font-family: var(--sans);
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
  color: #2A6F68;
}
.lead-receipt-list li:last-child em {
  border-color: rgba(242,178,61,0.42);
  background: rgba(242,178,61,0.18);
  color: #7A5B12;
}
.lead-return {
  margin: 22px 0 0;
  padding: 14px 16px 12px;
  border: 1px solid rgba(242,178,61,0.32);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(242,178,61,0.15), rgba(43,168,154,0.08));
}
.lead-return-line,
.lead-return-total {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: baseline;
  font-family: var(--sans);
}
.lead-return-line {
  padding: 9px 0;
  border-bottom: 1px solid rgba(23,40,59,0.1);
  color: var(--ink-soft);
  font-size: 0.9rem;
}
.lead-return-line strong {
  color: var(--navy);
  font-size: 0.96rem;
  font-weight: 900;
  white-space: nowrap;
}
.lead-return-total {
  margin-top: 11px;
  align-items: center;
}
.lead-return-total span {
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
  color: #7A5B12;
}
.lead-return-total strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1;
  white-space: nowrap;
}
.lead-fee {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px 24px;
  align-items: center;
  margin: 24px -10px 0;
  padding: 20px 22px;
  border: 1px solid rgba(43,168,154,0.34);
  border-radius: 14px;
  background:
    radial-gradient(circle at 92% 14%, rgba(242,178,61,0.18), transparent 34%),
    linear-gradient(135deg, rgba(43,168,154,0.16), rgba(255,255,255,0.72));
}
.lead-fee div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}
.lead-fee span {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
  color: #2A6F68;
}
.lead-fee strong {
  font-family: var(--sans);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 950;
  line-height: 1;
  color: var(--teal);
}
.lead-fee p {
  max-width: 24ch;
  margin: 0;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.45;
}
.lead-receipt .btn {
  display: flex;
  justify-content: center;
  margin: 24px auto 0;
}
@media (max-width: 640px) {
  .lead-receipt {
    padding: 26px 20px 24px;
  }
  .lead-receipt::after {
    display: none;
  }
  .lead-receipt-list li {
    grid-template-columns: 38px minmax(0, 1fr);
    min-height: 0;
  }
  .lead-receipt-number {
    width: 38px;
    height: 38px;
  }
  .lead-receipt-list em {
    grid-column: 2;
    justify-self: start;
  }
  .lead-return {
    padding-left: 13px;
    padding-right: 13px;
  }
  .lead-return-line,
  .lead-return-total,
  .lead-fee {
    grid-template-columns: 1fr;
  }
  .lead-return-total {
    gap: 6px;
  }
  .lead-fee {
    margin-left: -4px;
    margin-right: -4px;
    padding: 18px;
  }
  .lead-fee div {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
  .lead-fee p {
    max-width: none;
  }
}

/* ============================================================
   VALUE WOBBLE BADGE — wobbling "real value" sticker with arrow
   pointing at the free-website value stack
   ============================================================ */
.value-wobble {
  position: absolute;
  z-index: 6;
  pointer-events: none;
  display: block;
}
.value-wobble-badge {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FFE25A 0%, #F4A741 100%);
  color: #1A1A1A;
  padding: 14px 22px 16px;
  border-radius: 14px;
  border: 3px solid #1A1A1A;
  font-family: var(--sans);
  text-align: center;
  box-shadow: 4px 4px 0 rgba(15,30,46,0.85), 0 12px 28px rgba(0,0,0,0.18);
  transform-origin: 50% 50%;
  animation: valueWobble 2.4s cubic-bezier(.45,.05,.55,.95) infinite;
  min-width: 140px;
}
.wobble-label {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: #4A2F00;
}
.wobble-old {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: #8C1F1F;
  text-decoration: line-through;
  text-decoration-color: #8C1F1F;
  text-decoration-thickness: 3px;
  line-height: 1;
}
.wobble-divider {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 6px 0 2px;
  color: #4A2F00;
}
.wobble-new {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: #1A1A1A;
  letter-spacing: -0.02em;
}
.value-wobble-arrow {
  position: absolute;
  width: 110px;
  height: 90px;
  color: #1A1A1A;
  /* positioning is set per context below */
}
.value-wobble-arrow path {
  stroke: currentColor;
  stroke-width: 3.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@keyframes valueWobble {
  0%   { transform: rotate(-6deg) translateX(-3px); }
  50%  { transform: rotate(6deg) translateX(3px); }
  100% { transform: rotate(-6deg) translateX(-3px); }
}

/* ---- Position on free-website value stack (above the invoice card) ---- */
.value-stack-section .value-wobble {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 18px auto 0;
  width: auto;
  max-width: 360px;
}
.value-stack-section .value-wobble-arrow {
  position: absolute;
  width: 90px;
  height: 90px;
  top: 100%;
  left: 50%;
  transform: translateX(-30%) rotate(8deg);
  margin-top: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .value-wobble-badge { animation: none; transform: rotate(-4deg); }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .wobble-old { font-size: 1.1rem; }
  .wobble-new { font-size: 1.7rem; }
  .value-stack-section .value-wobble-arrow { display: none; }
}

@media (max-width: 480px) {
  .wobble-label { font-size: 0.58rem; }
  .wobble-old { font-size: 1rem; }
  .wobble-divider { font-size: 0.54rem; }
  .wobble-new { font-size: 1.5rem; }
}

@media (max-width: 900px) {
  .hero--banner {
    min-height: auto;
    padding-top: clamp(68px, 12vw, 92px) !important;
    padding-bottom: clamp(46px, 10vw, 68px) !important;
  }
  .hero--banner::before {
    background:
      linear-gradient(90deg, rgba(7,16,25,0.9) 0%, rgba(7,16,25,0.78) 58%, rgba(7,16,25,0.28) 100%),
      linear-gradient(180deg, rgba(7,16,25,0.24) 0%, rgba(7,16,25,0.1) 44%, rgba(7,16,25,0.42) 100%);
  }
  .hero-banner-media img {
    object-position: 47% 50%;
  }
  .hero--banner .hero-copy {
    max-width: min(560px, 100%);
  }
  .hero--banner .hero-headline {
    max-width: 38ch;
  }
}

@media (max-width: 560px) {
  .hero--banner::before {
    background:
      linear-gradient(90deg, rgba(7,16,25,0.94) 0%, rgba(7,16,25,0.84) 58%, rgba(7,16,25,0.24) 100%),
      linear-gradient(180deg, rgba(7,16,25,0.22) 0%, rgba(7,16,25,0.08) 44%, rgba(7,16,25,0.46) 100%);
  }
  .hero-banner-media img {
    object-position: 45% 50%;
    transform: none;
  }
  .hero--banner .hero-sub {
    max-width: 38ch;
  }
  .hero--banner .trust-strip {
    max-width: 34ch;
  }
}

@media (max-width: 390px) {
  .hero-banner-media img {
    object-position: 43% 50%;
    transform: none;
  }
}

/* ============================================================
   GLOBAL HEADING POLISH — cleaner spacing and sharper titles
   ============================================================ */
.eyebrow {
  margin-bottom: clamp(20px, 2vw, 28px);
}
.section-head .eyebrow,
.hero-copy .eyebrow,
.founder-copy .eyebrow,
.offer-hero .eyebrow,
.promise .eyebrow,
.legal-body .eyebrow,
.service-block .eyebrow {
  margin-bottom: clamp(20px, 2vw, 28px) !important;
}
h1,
h2,
h3 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
  font-synthesis: none;
}
