@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Inter:wght@400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
body {
  font-family: 'Inter', sans-serif;
  background: #2C1F14;
  color: #F5EFE0;
  overflow-x: hidden;
}

:root {
  --cream:   #F5EFE0;
  --brown:   #2C1F14;
  --teal:    #4A9BAF;
  --teal-dk: #3A7D8E;
  --rust:    #A85C2E;
  --muted:   rgba(245,239,224,0.6);
  --font-d:  'Oswald', sans-serif;
  --font-b:  'Inter', sans-serif;
}

/* ── Fixed background layers ── */
#particle-canvas {
  position: fixed; inset: 0;
  z-index: 0; pointer-events: none;
}

.gradient-bg {
  position: fixed; inset: 0;
  z-index: 0; pointer-events: none;
  overflow: hidden;
}
.g-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.55;
  will-change: transform;
}
.g-orb-1 {
  width: 60vw; height: 60vw;
  top: -20vw; left: -15vw;
  background: radial-gradient(circle, #A85C2E 0%, transparent 70%);
}
.g-orb-2 {
  width: 50vw; height: 50vw;
  bottom: -15vw; right: -10vw;
  background: radial-gradient(circle, #4A9BAF 0%, transparent 70%);
}
.g-orb-3 {
  width: 40vw; height: 40vw;
  top: 40%; left: 30%;
  background: radial-gradient(circle, rgba(74,155,175,0.4) 0%, transparent 70%);
  opacity: 0.3;
}

/* ── Loader ── */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--brown);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
  transition: opacity 0.6s ease;
}
#loader.hidden { opacity: 0; pointer-events: none; }
.loader-logo { width: 80px; height: 80px; object-fit: contain; border-radius: 50%; }
.loader-bar-wrap { width: 200px; height: 2px; background: rgba(245,239,224,0.12); border-radius: 2px; }
.loader-bar { height: 100%; width: 0%; background: var(--teal); border-radius: 2px; transition: width 0.15s linear; }
.loader-pct { font-family: var(--font-d); font-size: 0.75rem; letter-spacing: 0.14em; color: var(--muted); }

/* ── Announce bar ── */
.announce-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 600;
  background: var(--teal); color: white;
  text-align: center; padding: 7px 1rem;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.03em;
  min-height: 32px; overflow: hidden;
}
.announce-msg { position: absolute; width: 100%; left: 0; top: 50%; transform: translateY(-50%); opacity: 0; transition: opacity 0.5s; }
.announce-msg.active { opacity: 1; }

/* ── Header ── */
.site-header {
  position: fixed; top: 32px; left: 0; right: 0; z-index: 500;
  padding: 0 2.5rem; height: 62px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(44,31,20,0.75);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(245,239,224,0.07);
}
.header-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.header-brand img { height: 36px; width: 36px; object-fit: contain; border-radius: 50%; }
.header-brand span { font-family: var(--font-d); font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--cream); }
.header-nav { display: flex; align-items: center; gap: 1.75rem; list-style: none; }
.header-nav a { color: rgba(245,239,224,0.6); font-size: 0.85rem; font-weight: 500; text-decoration: none; transition: color 0.2s; }
.header-nav a:hover { color: var(--cream); }
.header-cta {
  background: var(--teal) !important; color: white !important;
  padding: 8px 18px; border-radius: 4px;
  font-size: 0.8rem !important; font-weight: 600 !important;
  letter-spacing: 0.05em; text-transform: uppercase;
  transition: background 0.2s !important;
}
.header-cta:hover { background: var(--teal-dk) !important; }

/* ── Page content wrapper ── */
.site-content { position: relative; z-index: 2; }

/* ── Panels (full-screen sections) ── */
.panel {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.panel-inner {
  width: 100%;
  will-change: transform;
}

/* Side alignment */
.panel.align-left  .panel-inner { padding-left: 6vw; padding-right: 52vw; }
.panel.align-right .panel-inner { padding-left: 52vw; padding-right: 6vw; }
.panel.align-center .panel-inner { padding: 0 10vw; text-align: center; display: flex; flex-direction: column; align-items: center; }

/* Panel inner content max-width */
.panel.align-left .panel-inner,
.panel.align-right .panel-inner { max-width: none; }
.panel.align-center .panel-inner { max-width: 800px; margin: 0 auto; }

/* ── Hero ── */
.panel-hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.hero-label {
  font-family: var(--font-d); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 1.5rem; opacity: 0;
}
.hero-heading {
  font-family: var(--font-d); font-size: clamp(3.5rem, 9vw, 9.5rem);
  font-weight: 700; text-transform: uppercase; line-height: 0.92;
  letter-spacing: -0.01em; color: var(--cream);
  max-width: 1000px; opacity: 0;
}
.hero-heading em { color: var(--teal); font-style: normal; }
.hero-tagline {
  margin-top: 2rem; font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: var(--muted); max-width: 460px; line-height: 1.7;
  opacity: 0;
}

/* ── Section typography ── */
.section-label {
  display: block; font-family: var(--font-d);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 0.9rem;
}
.section-heading {
  font-family: var(--font-d); font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 700; text-transform: uppercase; line-height: 1.0;
  color: var(--cream); margin-bottom: 1.1rem;
}
.section-heading em { color: var(--teal); font-style: normal; }
.section-body { font-size: clamp(0.9rem, 1.4vw, 1.05rem); color: var(--muted); line-height: 1.78; margin-bottom: 1.25rem; }
.section-note { font-size: 0.82rem; color: rgba(245,239,224,0.35); font-style: italic; }

/* ── Compare table ── */
.compare-table { width: 100%; border-collapse: collapse; margin-top: 1.5rem; }
.compare-table th, .compare-table td { padding: 10px 16px; font-size: 0.88rem; border-bottom: 1px solid rgba(245,239,224,0.07); text-align: left; }
.compare-table th { font-family: var(--font-d); font-size: 0.75rem; letter-spacing: 0.09em; text-transform: uppercase; color: rgba(245,239,224,0.35); font-weight: 600; }
.compare-table td { color: var(--muted); }
.compare-table td.bpd { color: var(--teal); font-weight: 600; }
.compare-table tr:last-child td { border-bottom: none; }

/* ── Services list ── */
.services-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.services-list li { display: flex; align-items: flex-start; gap: 14px; }
.svc-icon-sm { font-size: 1.25rem; flex-shrink: 0; margin-top: 1px; }
.services-list li div strong { display: block; font-size: 0.95rem; color: var(--cream); margin-bottom: 0.2rem; }
.services-list li div span { font-size: 0.85rem; color: var(--muted); line-height: 1.55; }

/* ── How steps ── */
.how-steps { list-style: none; display: flex; flex-direction: column; gap: 1.6rem; margin-top: 1.6rem; }
.how-step { display: flex; gap: 1.1rem; align-items: flex-start; }
.how-num {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: rgba(74,155,175,0.12); border: 1.5px solid rgba(74,155,175,0.4);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-size: 1rem; font-weight: 700; color: var(--teal);
}
.how-text h4 { font-family: var(--font-d); font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--cream); margin-bottom: 0.3rem; }
.how-text p { font-size: 0.87rem; color: var(--muted); line-height: 1.65; }

/* ── Stats ── */
.panel-stats { position: relative; }
.stats-overlay {
  position: absolute; inset: 0; z-index: 0;
  background: rgba(44,31,20,0.85); pointer-events: none;
  opacity: 0; transition: opacity 0.4s;
}
.panel-stats.overlay-on .stats-overlay { opacity: 1; }
.stats-grid { position: relative; z-index: 1; display: flex; gap: 3.5rem; justify-content: center; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-number { font-family: var(--font-d); font-size: clamp(3.5rem, 7vw, 6rem); font-weight: 700; line-height: 1; color: var(--teal); }
.stat-suffix { font-family: var(--font-d); font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 600; color: var(--teal); margin-left: 3px; }
.stat-label { display: block; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 0.6rem; }

/* ── Buttons ── */
.btn-teal {
  background: var(--teal); color: white;
  border: 1.5px solid transparent;
  height: 50px; padding: 0 30px; border-radius: 4px;
  font-family: var(--font-d); font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; justify-content: center;
  line-height: 1; box-sizing: border-box;
  -webkit-appearance: none; appearance: none;
  transition: background 0.2s, transform 0.1s;
}
.btn-teal:hover { background: var(--teal-dk); transform: translateY(-2px); }
.btn-ghost {
  background: transparent; color: var(--cream);
  border: 1.5px solid rgba(245,239,224,0.28);
  height: 50px; padding: 0 30px; border-radius: 4px;
  font-family: var(--font-d); font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; justify-content: center;
  line-height: 1; box-sizing: border-box;
  -webkit-appearance: none; appearance: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--cream); color: var(--cream); }

/* ── CTA section ── */
.panel-cta .section-heading { font-size: clamp(2.2rem, 5vw, 4.5rem); }
.cta-btns { display: flex; gap: 1rem; justify-content: center; align-items: center; flex-wrap: nowrap; margin: 2rem 0 1.5rem; }
.cta-btns .btn-teal,
.cta-btns .btn-ghost {
  margin: 0;
  flex-shrink: 0;
  align-self: center;
}
.cta-contact { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; }
.cta-contact a { color: rgba(245,239,224,0.45); font-size: 0.88rem; text-decoration: none; transition: color 0.2s; }
.cta-contact a:hover { color: var(--cream); }

/* ── Marquee ── */
.marquee-wrap {
  position: fixed; z-index: 3; top: 50%; transform: translateY(-50%);
  width: 100%; overflow: hidden; opacity: 0; pointer-events: none;
  white-space: nowrap;
}
.marquee-text {
  display: inline-block;
  font-family: var(--font-d); font-size: 12vw; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.02em;
  color: var(--teal); opacity: 0.08;
  white-space: nowrap;
}

/* ── Footer ── */
footer {
  position: relative; z-index: 2;
  background: #160D07;
  padding: 4rem 2.5rem 2rem;
  border-top: 1px solid rgba(245,239,224,0.06);
}
.footer-grid {
  max-width: 1080px; margin: 0 auto 3rem;
  display: grid; grid-template-columns: 2fr 1fr 1.2fr; gap: 3rem;
}
.footer-brand img { height: 48px; display: block; margin-bottom: 1rem; border-radius: 50%; }
.footer-tagline { font-family: var(--font-d); font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--cream); margin-bottom: 0.4rem; }
.footer-loc { font-size: 0.8rem; color: rgba(245,239,224,0.35); }
.footer-col h4 { font-family: var(--font-d); font-size: 0.73rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(245,239,224,0.4); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col a { font-size: 0.84rem; color: rgba(245,239,224,0.45); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--teal); }
.footer-contact p { font-size: 0.84rem; color: rgba(245,239,224,0.45); margin-bottom: 0.4rem; }
.footer-contact a { color: var(--teal); }
.footer-bottom {
  max-width: 1080px; margin: 0 auto; padding-top: 1.75rem;
  border-top: 1px solid rgba(245,239,224,0.05);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem;
}
.footer-bottom p { font-size: 0.74rem; color: rgba(245,239,224,0.2); }

/* ── Popup ── */
#popupOverlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(12,7,3,0.9);
  display: flex; align-items: center; justify-content: center; padding: 1rem;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
#popupOverlay.open { opacity: 1; pointer-events: all; }
.popup-card {
  background: #F5EFE0; border-radius: 12px;
  padding: 3rem 2.5rem 2.5rem; max-width: 460px; width: 100%;
  text-align: center; position: relative;
  transform: translateY(24px); transition: transform 0.35s;
  color: #2C1F14;
}
#popupOverlay.open .popup-card { transform: translateY(0); }
.popup-x { position: absolute; top: 14px; right: 18px; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: rgba(44,31,20,0.45); line-height: 1; }
.popup-logo { width: 68px; margin: 0 auto 1.25rem; display: block; border-radius: 50%; }
.popup-card h2 { font-family: var(--font-d); font-size: 1.7rem; text-transform: uppercase; color: #2C1F14; line-height: 1.1; margin-bottom: 0.7rem; }
.popup-card > p { font-size: 0.9rem; color: #6B5744; margin-bottom: 1.75rem; line-height: 1.65; }
.popup-form { display: flex; flex-direction: column; gap: 0.7rem; }
.popup-form input { width: 100%; padding: 12px 15px; border: 2px solid rgba(44,31,20,0.12); border-radius: 4px; font-size: 0.92rem; font-family: var(--font-b); background: #FFFDF8; color: #2C1F14; outline: none; transition: border-color 0.2s; }
.popup-form input:focus { border-color: #4A9BAF; }
.popup-form input::placeholder { color: rgba(44,31,20,0.35); }
.popup-submit { width: 100%; padding: 14px; background: #4A9BAF; color: white; border: none; border-radius: 4px; font-family: var(--font-d); font-size: 0.95rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; margin-top: 0.25rem; transition: background 0.2s; }
.popup-submit:hover { background: #3A7D8E; }
.popup-no { display: block; margin-top: 1rem; font-size: 0.77rem; color: rgba(44,31,20,0.35); cursor: pointer; background: none; border: none; font-family: var(--font-b); text-decoration: underline; }
.popup-success { display: none; }
.popup-success.show { display: block; }
.popup-success h3 { font-family: var(--font-d); font-size: 1.55rem; color: #4A9BAF; margin-bottom: 0.75rem; text-transform: uppercase; }
.popup-success p { font-size: 0.9rem; color: #6B5744; line-height: 1.65; }

/* ── Background section word (old — hidden, replaced by overlay) ── */
.panel-word { display: none; }


/* ── Cursor trail ── */
#cursor-trail {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 999;
}

/* ── Stat callouts ── */
.stat-callout {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 38vw; max-width: 460px;
  pointer-events: none; z-index: 1;
  display: flex; flex-direction: column; gap: 1.5rem;
  padding: 2rem;
}
.callout-left  { left: 5vw; }
.callout-right { right: 5vw; }

.callout-agency, .callout-bpd {
  display: flex; flex-direction: column; gap: 0.4rem;
}
.callout-num {
  font-family: var(--font-d);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700; line-height: 1;
  color: rgba(245,239,224,0.15);
}
.callout-agency .callout-num { color: rgba(245,239,224,0.12); }
.callout-bpd .callout-num { color: var(--teal); }
.callout-word { font-size: clamp(2rem, 4vw, 3.5rem); }
.callout-plus { font-size: 0.55em; opacity: 0.7; }
.callout-desc {
  font-size: clamp(0.75rem, 1.1vw, 0.9rem);
  color: rgba(245,239,224,0.35);
  text-transform: uppercase; letter-spacing: 0.1em;
  font-family: var(--font-d);
}
.callout-bpd .callout-desc { color: rgba(74,155,175,0.65); }
.callout-line {
  width: 40px; height: 1px;
  background: rgba(245,239,224,0.12);
}

/* ── Pricing (website-first offer) ── */
.offer-vs {
  display: flex; align-items: center; gap: 2rem;
  margin: 1.75rem 0; flex-wrap: wrap;
}
.offer-vs-agency, .offer-vs-bpd {
  display: flex; flex-direction: column; gap: 0.3rem; flex: 1;
}
.offer-vs-divider {
  font-family: var(--font-d); font-size: 1.5rem; font-weight: 700;
  color: rgba(245,239,224,0.2); flex-shrink: 0;
}
.vs-label {
  font-family: var(--font-d); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(245,239,224,0.4);
}
.offer-vs-agency .vs-price {
  font-family: var(--font-d); font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700; color: rgba(245,239,224,0.25); line-height: 1.1;
}
.offer-vs-bpd .vs-price {
  font-family: var(--font-d); font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700; color: var(--cream); line-height: 1.1;
}
.vs-note { font-size: 0.8rem; color: var(--teal); font-weight: 600; }
.offer-vs-agency .vs-note { color: rgba(245,239,224,0.3); }

.offer-detail {
  display: flex; gap: 1.5rem; margin-bottom: 1.75rem; flex-wrap: wrap;
}
.offer-deal, .offer-includes { flex: 1; min-width: 200px; }
.offer-deal-badge {
  display: block; width: fit-content;
  background: rgba(74,155,175,0.15);
  border: 1px solid rgba(74,155,175,0.3);
  border-radius: 20px; padding: 3px 12px;
  font-family: var(--font-d); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 0.75rem;
}
.offer-deal p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; margin-bottom: 0.75rem; }
.offer-deal p strong { color: var(--cream); }
.offer-includes-title {
  font-family: var(--font-d); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 0.75rem;
}
.offer-list { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }
.offer-list li { font-size: 0.84rem; color: var(--muted); }
.offer-list li::before { content: '✓ '; color: var(--teal); font-weight: 700; }

.offer-cta-row { margin-top: 1rem; }
.offer-cta-row .btn-teal { font-size: 0.85rem; padding: 0 24px; width: fit-content; }
.offer-cta-row .section-note { margin-top: 1.1rem; display: block; }

/* ── Pricing compact (fit one viewport) ── */
.panel-pricing { padding-top: 90px; padding-bottom: 50px; }
.panel-pricing .section-heading { font-size: clamp(1.8rem, 3.2vw, 3rem); margin-bottom: 0.6rem; }
.panel-pricing .offer-vs { margin: 0.75rem 0; }
.panel-pricing .offer-detail { margin-bottom: 0.85rem; gap: 1.1rem; }
.panel-pricing .offer-deal p { font-size: 0.84rem; margin-bottom: 0.5rem; }

/* Agency cons list — strike-through style */
.offer-list.agency-cons li { color: rgba(245,239,224,0.5); }
.offer-list.agency-cons li::before { content: '✕ '; color: rgba(168,92,46,0.8); font-weight: 700; }

/* ══════════════════════════════════════════════
   KINETIC POLISH — animations & pulses
   ══════════════════════════════════════════════ */

/* ── Button shimmer sweep ── */
@keyframes btn-shimmer {
  0%   { background-position: -250% center; }
  100% { background-position: 250% center; }
}
.btn-teal {
  background: linear-gradient(
    105deg,
    var(--teal-dk) 0%,
    var(--teal)    38%,
    #7DD4E8        50%,
    var(--teal)    62%,
    var(--teal-dk) 100%
  );
  background-size: 250% 100%;
  animation: btn-shimmer 2.8s linear infinite;
}
.btn-teal:hover {
  animation: none;
  background: var(--teal-dk);
}

/* ── Button pulse ring ── */
.btn-teal {
  overflow: visible;
  position: relative;
}
.btn-teal::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 6px;
  border: 2px solid var(--teal);
  opacity: 0;
  pointer-events: none;
  animation: btn-ring 2.2s ease-out infinite;
}
@keyframes btn-ring {
  0%   { transform: scale(1);    opacity: 0.65; }
  100% { transform: scale(1.45); opacity: 0;    }
}

/* ── CTA section buttons float ── */
@keyframes btn-float {
  0%, 100% { transform: translateY(0px);  }
  50%       { transform: translateY(-5px); }
}
.panel-cta .btn-teal  { animation: btn-shimmer 2.8s linear infinite, btn-float 2.6s ease-in-out infinite; }
.panel-cta .btn-ghost { animation: btn-float 2.6s ease-in-out 0.5s infinite; }
.panel-cta .btn-teal:hover,
.panel-cta .btn-ghost:hover { animation: none; transform: translateY(-2px); }

/* ── Hero "DIGITAL" teal word glow ── */
@keyframes hero-glow {
  0%, 100% { text-shadow: 0 0 25px rgba(74,155,175,0.35); }
  50%       { text-shadow: 0 0 55px rgba(74,155,175,0.85), 0 0 100px rgba(74,155,175,0.3); }
}
.hero-heading em { animation: hero-glow 3.2s ease-in-out infinite; }

/* ── Section label breathe ── */
@keyframes label-breathe {
  0%, 100% { opacity: 1;   letter-spacing: 0.18em; }
  50%       { opacity: 0.55; letter-spacing: 0.22em; }
}
.section-label { animation: label-breathe 3.5s ease-in-out infinite; }

/* ── Stat numbers glow ── */
@keyframes stat-glow {
  0%, 100% { text-shadow: 0 0 20px rgba(74,155,175,0.25); }
  50%       { text-shadow: 0 0 45px rgba(74,155,175,0.75), 0 0 80px rgba(74,155,175,0.25); }
}
.stat-number { animation: stat-glow 2.4s ease-in-out infinite; }
.stat-suffix { animation: stat-glow 2.4s ease-in-out 0.4s infinite; }

/* ── How-step circles heartbeat ── */
@keyframes circle-ping {
  0%   { box-shadow: 0 0 0 0   rgba(74,155,175,0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(74,155,175,0);   }
  100% { box-shadow: 0 0 0 0   rgba(74,155,175,0);   }
}
.how-num { animation: circle-ping 2s ease-out infinite; }
.how-step:nth-child(2) .how-num { animation-delay: 0.4s; }
.how-step:nth-child(3) .how-num { animation-delay: 0.8s; }
.how-step:nth-child(4) .how-num { animation-delay: 1.2s; }

/* ── Announce bar pulse glow ── */
@keyframes bar-glow {
  0%, 100% { box-shadow: none; }
  50%       { box-shadow: 0 2px 18px rgba(74,155,175,0.5); }
}
.announce-bar { animation: bar-glow 4s ease-in-out infinite; }

/* ── Mobile ── */
@media (max-width: 767px) {
  .header-nav { display: none; }

  /* Sections: let content height drive the page, not min-height */
  .panel { min-height: auto; padding: 60px 0 40px; }
  .panel-hero { min-height: 100vh; }

  .panel.align-left .panel-inner,
  .panel.align-right .panel-inner { padding: 1.5rem 1.25rem; }
  .panel.align-center .panel-inner { padding: 1.5rem 1.25rem; }

  .stats-grid { gap: 1.5rem; }
  .stat-callout { display: none; }
  .offer-vs { flex-direction: column; gap: 0.75rem; }
  .offer-detail { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Tighten up typography spacing on small screens */
  .section-heading { margin-bottom: 0.75rem; }
  .how-steps { gap: 1.1rem; margin-top: 1rem; }
  .services-list { gap: 0.75rem; margin-top: 1rem; }
  .compare-table th, .compare-table td { padding: 7px 10px; font-size: 0.82rem; }
}
