/* =========================================================
   RingBack — design tokens
   ========================================================= */
:root {
  --ink-navy: #16233F;
  --navy-mid: #1F3A5F;
  --navy-soft: #2C4A73;
  --amber: #E8792E;
  --amber-dark: #C6631E;
  --amber-light: #FBDCC1;
  --paper: #FAF7F1;
  --paper-alt: #F1EBDE;
  --ink: #1A1A1A;
  --ink-soft: #55606E;
  --line: #DAD2BF;
  --line-dark: rgba(255,255,255,0.14);
  --success: #2F8F5B;
  --white: #FFFFFF;

  --font-display: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Public Sans', 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'IBM Plex Mono', 'SF Mono', monospace;

  --radius-s: 8px;
  --radius-m: 14px;
  --radius-l: 22px;
  --shadow-card: 0 1px 2px rgba(22,35,63,0.06), 0 10px 30px -14px rgba(22,35,63,0.18);
  --shadow-lift: 0 20px 45px -18px rgba(22,35,63,0.35);
  --container: 1140px;
}

/* =========================================================
   Reset
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); color: var(--ink-navy); letter-spacing: -0.01em; }
p { margin: 0; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px;
}

.section-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }

@media (max-width: 720px) {
  .section { padding: 64px 0; }
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  white-space: nowrap;
}
.btn-amber {
  background: var(--amber);
  color: var(--white);
  box-shadow: 0 10px 24px -10px rgba(232,121,46,0.55);
}
.btn-amber:hover { background: var(--amber-dark); transform: translateY(-1px); }
.btn-amber:active { transform: translateY(0); }
.btn-large { padding: 18px 34px; font-size: 1.05rem; }
.btn-small { padding: 10px 20px; font-size: 0.9rem; }

/* =========================================================
   Top trust bar
   ========================================================= */
.top-bar {
  background: var(--ink-navy);
  color: rgba(255,255,255,0.8);
}
.top-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 9px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.82rem;
}
.top-bar-text a {
  color: var(--amber);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.top-bar-text a:hover { color: var(--amber-light); }
.top-bar-badge { display: flex; align-items: center; line-height: 0; flex-shrink: 0; }
.top-bar-badge img { width: auto; height: 20px; opacity: 0.92; }
.top-bar-badge:hover img { opacity: 1; }

@media (max-width: 640px) {
  .top-bar-inner { justify-content: flex-start; gap: 10px 16px; padding: 8px 20px; }
  .top-bar-text { flex-basis: 100%; }
}

/* =========================================================
   Nav
   ========================================================= */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250,247,241,0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--ink-navy);
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-mark {
  flex-shrink: 0;
  overflow: visible;
}
.logo-ring-wave {
  transform-origin: 17px 8px;
  animation: logoRingPulse 2.4s ease-in-out infinite;
}
.logo-ring-wave-2 { animation-delay: 0.3s; opacity: 0.55; }
@keyframes logoRingPulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}
.logo-accent { color: var(--amber); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy-mid);
}
.nav-links a:not(.btn):hover { color: var(--amber-dark); }
.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
}
.nav-toggle span {
  height: 2px;
  width: 100%;
  background: var(--ink-navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 20px;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: max-height 0.3s ease, visibility 0s linear 0.3s;
  }
  .nav-links.open {
    max-height: 420px;
    visibility: visible;
    transition: max-height 0.3s ease, visibility 0s linear 0s;
  }
  .nav-links a:not(.btn) { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav-cta { margin: 16px 0 0; text-align: center; }
}

/* =========================================================
   Eyebrow / section head
   ========================================================= */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin: 0 0 16px;
}
.eyebrow-dark { color: var(--amber-dark); }

.section-head { max-width: 640px; margin: 0 0 48px; }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; line-height: 1.2; }
.proof-disclaimer { margin-top: 12px; font-size: 0.88rem; color: var(--ink-soft); font-style: italic; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  background: radial-gradient(ellipse at 20% -10%, var(--navy-soft) 0%, var(--ink-navy) 55%, #0F1A30 100%);
  color: var(--white);
  padding: 72px 0 100px;
  overflow: hidden;
}
.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero-copy h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.78);
  max-width: 46ch;
  margin-bottom: 32px;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 28px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}
.trust-row li { display: flex; align-items: center; gap: 8px; }
.trust-row .icon { width: 16px; height: 16px; stroke: var(--amber); fill: none; stroke-width: 2; }

/* --- phone mockup --- */
.hero-visual { display: flex; flex-direction: column; align-items: center; }
.phone-frame {
  width: 280px;
  height: 560px;
  background: #0B1424;
  border-radius: 40px;
  border: 6px solid #223250;
  box-shadow: var(--shadow-lift);
  padding: 14px;
  position: relative;
}
.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 20px;
  background: #0B1424;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #F7F3EA 0%, #F1ECE0 100%);
  border-radius: 28px;
  overflow: hidden;
  padding: 40px 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.call-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--ink-navy);
  color: var(--white);
  border-radius: var(--radius-s);
  padding: 10px 12px;
  position: relative;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.call-banner.show { opacity: 1; transform: translateY(0); }
.call-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--amber);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 0.75rem; font-weight: 600;
  flex-shrink: 0;
}
.call-text { display: flex; flex-direction: column; gap: 2px; line-height: 1.2; }
.call-name { font-weight: 700; font-size: 0.85rem; }
.call-status { font-family: var(--font-mono); font-size: 0.7rem; color: rgba(255,255,255,0.7); }
.call-banner.missed .call-status { color: #FF9C7A; }
.call-pulse {
  width: 9px; height: 9px; border-radius: 50%; background: #FF6B4A;
  margin-left: auto;
  animation: pulse 1.2s infinite;
}
.call-banner.missed .call-pulse { animation: none; background: #8A94A6; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,107,74,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(255,107,74,0); }
}

.thread { display: flex; flex-direction: column; gap: 8px; flex: 1; overflow: hidden; }
.bubble {
  max-width: 82%;
  padding: 9px 12px;
  border-radius: 14px;
  font-size: 0.78rem;
  line-height: 1.35;
  opacity: 0;
  transform: translateY(6px) scale(0.98);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.bubble.show { opacity: 1; transform: translateY(0) scale(1); }
.bubble-out { align-self: flex-start; background: var(--white); color: var(--ink); border-bottom-left-radius: 4px; box-shadow: 0 1px 2px rgba(0,0,0,0.06); }
.bubble-in { align-self: flex-end; background: var(--amber); color: var(--white); border-bottom-right-radius: 4px; }

.booked-stamp {
  position: absolute;
  right: 16px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  opacity: 0;
  transform: rotate(-8deg) scale(0.7);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(.34,1.56,.64,1);
}
.booked-stamp.show { opacity: 1; transform: rotate(-8deg) scale(1); }
.stamp-ring {
  display: flex; align-items: center; gap: 6px;
  border: 2px solid var(--success);
  color: var(--success);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(47,143,91,0.08);
}
.stamp-ring svg { width: 13px; height: 13px; stroke: var(--success); fill: none; stroke-width: 3; }
.stamp-detail { font-family: var(--font-mono); font-size: 0.65rem; color: var(--ink-soft); }

.visual-caption {
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  text-align: center;
}

@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; text-align: left; }
  .hero-visual { margin-top: 16px; }
}
@media (max-width: 480px) {
  .phone-frame { width: 240px; height: 480px; }
}

/* =========================================================
   Problem
   ========================================================= */
.problem { background: var(--paper); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.problem-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 28px 22px;
  box-shadow: var(--shadow-card);
}
.p-icon { width: 26px; height: 26px; stroke: var(--amber-dark); fill: none; stroke-width: 1.8; margin-bottom: 16px; }
.problem-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.problem-card p { color: var(--ink-soft); font-size: 0.92rem; }

@media (max-width: 940px) { .problem-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .problem-grid { grid-template-columns: 1fr; } }

/* =========================================================
   Offer (What You Get)
   ========================================================= */
.offer { background: var(--paper-alt); }
.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.offer-card {
  background: var(--white);
  border-radius: var(--radius-m);
  padding: 30px 24px;
  box-shadow: var(--shadow-card);
}
.offer-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--ink-navy);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
}
.offer-icon svg.offer-icon-fallback { width: 22px; height: 22px; stroke: var(--amber); fill: none; stroke-width: 1.8; }
.offer-icon.lottie-active svg.offer-icon-fallback { display: none; }
.offer-icon .lottie-mount { position: absolute; inset: 0; }
.offer-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.offer-card p { color: var(--ink-soft); font-size: 0.92rem; }

@media (max-width: 940px) { .offer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .offer-grid { grid-template-columns: 1fr; } }

/* =========================================================
   How it works
   ========================================================= */
.how-it-works { background: var(--paper); }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step {
  position: relative;
  padding: 30px 22px 24px;
  border-top: 3px solid var(--amber);
  background: var(--white);
  border-radius: 0 0 var(--radius-m) var(--radius-m);
  box-shadow: var(--shadow-card);
}
.step-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--amber-dark);
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}
.step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; line-height: 1.3; }
.step p { color: var(--ink-soft); font-size: 0.92rem; }
.step-tag {
  display: inline-block;
  vertical-align: middle;
  margin-left: 6px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--amber-dark);
  border: 1px solid var(--amber-light);
  background: var(--amber-light);
  border-radius: 4px;
  padding: 2px 6px;
}

@media (max-width: 940px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* =========================================================
   Social proof
   ========================================================= */
.proof { background: var(--ink-navy); }
.proof .eyebrow-dark { color: var(--amber); }
.proof .section-head h2 { color: var(--white); }
.proof-disclaimer { color: rgba(255,255,255,0.55); }

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.proof-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-m);
  padding: 26px 24px;
}
.proof-quote {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 18px;
}
.proof-attr {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--amber);
}
.placeholder-tag {
  display: inline-block;
  margin-left: 6px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  padding: 1px 6px;
}

@media (max-width: 860px) { .proof-grid { grid-template-columns: 1fr; } }

/* =========================================================
   Pricing
   ========================================================= */
.pricing { background: var(--paper-alt); }
.pricing .section-head { margin-left: auto; margin-right: auto; text-align: center; max-width: 640px; }
.pricing-sub { margin-top: 10px; color: var(--ink-soft); font-size: 1rem; }

.plans-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.plan-card {
  position: relative;
  flex: 1 1 380px;
  max-width: 420px;
  background: var(--white);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-lift);
  padding: 34px 30px 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.plan-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--amber-dark);
  margin-bottom: 8px;
}
.plan-name {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 18px;
  min-height: 2.6em;
}
.plan-price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.6rem;
  color: var(--ink-navy);
  line-height: 1;
}
.plan-price .currency { font-size: 1.3rem; vertical-align: super; margin-right: 2px; }
.plan-freq {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-left: 8px;
}
.plan-price-secondary {
  font-size: 0.86rem;
  color: var(--ink-soft);
  margin-top: 6px;
  margin-bottom: 22px;
  min-height: 2.4em;
}
.plan-price-secondary span { font-weight: 700; color: var(--ink-navy); }
.plan-est { display: block; font-size: 0.78rem; color: var(--ink-soft); opacity: 0.8; }

.plan-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  border-top: 1px dashed var(--line);
  padding-top: 20px;
  margin-bottom: 20px;
  flex: 1;
}
.pc-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.pc-pros .pc-label { color: var(--success); }
.pc-col ul { display: flex; flex-direction: column; gap: 9px; }
.pc-col li {
  position: relative;
  padding-left: 18px;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--ink);
}
.pc-pros li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--success);
}
.pc-cons li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 2px;
  background: var(--ink-soft);
  opacity: 0.6;
}

.plan-card .guarantee { margin-bottom: 20px; }
.plan-card #paypal-button-diy,
.plan-card #paypal-button-managed { min-height: 55px; }

@media (max-width: 720px) {
  .plan-pros-cons { grid-template-columns: 1fr; gap: 16px; }
}
.guarantee {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--ink-soft);
  background: var(--paper-alt);
  border-radius: var(--radius-s);
  padding: 12px 14px;
  margin-bottom: 24px;
}
.guarantee .icon { width: 16px; height: 16px; stroke: var(--success); fill: none; stroke-width: 2; flex-shrink: 0; }

.paypal-fallback {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  text-align: center;
}
.paypal-fallback a { color: var(--amber-dark); font-weight: 600; }

/* =========================================================
   FAQ
   ========================================================= */
.faq { background: var(--paper); }
.faq .section-head { margin-left: auto; margin-right: auto; text-align: center; }
.accordion { max-width: 720px; margin: 0 auto; }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 4px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink-navy);
}
.chevron { width: 20px; height: 20px; stroke: var(--amber-dark); fill: none; stroke-width: 2.2; flex-shrink: 0; transition: transform 0.25s ease; }
.accordion-trigger[aria-expanded="true"] .chevron { transform: rotate(180deg); }

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.accordion-panel p { padding: 0 4px 20px; color: var(--ink-soft); font-size: 0.95rem; max-width: 62ch; }

/* =========================================================
   Final CTA
   ========================================================= */
.final-cta {
  background: linear-gradient(135deg, var(--ink-navy) 0%, #0F1A30 100%);
  padding: 88px 0;
  text-align: center;
}
.final-cta-inner { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.final-cta h2 { color: var(--white); font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
.final-cta p { color: rgba(255,255,255,0.72); font-size: 1.05rem; margin-bottom: 12px; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--ink-navy); padding: 40px 0; }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}
.logo-footer { color: var(--white); font-size: 1.05rem; }
.footer-contact a { color: var(--amber); font-weight: 600; }
.footer-links { display: flex; gap: 18px; }
.footer-links a:hover { color: var(--white); }
.footer-copy { width: 100%; text-align: center; margin-top: 8px; font-size: 0.78rem; color: rgba(255,255,255,0.4); }

.footer-badge {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
}
.footer-badge img {
  width: 140px;
  height: auto;
  opacity: 0.85;
  border-radius: 6px;
  transition: opacity 0.2s ease;
}
.footer-badge a:hover img { opacity: 1; }

@media (min-width: 640px) {
  .footer-copy { width: auto; text-align: left; margin-top: 0; order: 4; flex-basis: 100%; }
  .footer-badge { order: 5; }
}

/* =========================================================
   Scroll reveal
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .bubble, .call-banner, .booked-stamp { transition: none; }
  .call-pulse { animation: none; }
  .logo-ring-wave, .logo-ring-wave-2 { animation: none; opacity: 0.7; }
}
