
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:      #FAFAF7;
  --cream-dk:   #F0EDE5;
  --white:      #FFFFFF;
  --navy:       #1C2D4F;
  --amber:      #B8720A;
  --amber-text: #4A2D00;
  --amber-bg:   #FEF6E4;
  --amber-bdr:  #DEB96A;
  --green:      #0D3B20;
  --green-bg:   #EAF5EE;
  --green-bdr:  #7EC49A;
  --text:       #111111;
  --text-md:    #2E2E2E;
  --text-lt:    #2D2D2D;
  --border:     #D4CFC6;
  --border-lt:  #E8E4DC;
  --ff-serif:   'Merriweather', Georgia, serif;
  --ff-sans:    'Source Sans 3', Arial, sans-serif;
}

html { scroll-behavior: smooth; font-size: 20px; }

body {
  font-family: var(--ff-sans);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

/* ── SKIP LINK ── */
.skip-link {
  position: absolute; top: -100px; left: 1rem;
  background: var(--navy); color: var(--white);
  padding: 0.75rem 1.5rem; border-radius: 4px;
  font-size: 1rem; font-weight: 600;
  text-decoration: none; z-index: 9999;
}
.skip-link:focus { top: 1rem; }

/* ── TOP BANNER ── */
.top-banner {
  background: var(--green);
  padding: 0.75rem 1.25rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--white);
  line-height: 1.5;
}
.top-banner strong { font-weight: 700; }
.top-banner a {
  color: #A8EDBE; font-weight: 700;
  text-decoration: underline; white-space: nowrap;
}

/* ── NAV ── */
nav {
  background: var(--white);
  border-bottom: 3px solid var(--navy);
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem;
  height: 64px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
.nav-logo {
  font-family: var(--ff-serif);
  font-size: 1.1rem; font-weight: 900;
  color: var(--navy); text-decoration: none;
  white-space: nowrap; flex-shrink: 0;
}
.nav-logo-tld { color: var(--amber-text); }

/* Mobile nav: only show CTA button */
.nav-links { display: flex; gap: 0.75rem; list-style: none; align-items: center; }
.nav-link-item { display: none; }
.nav-btn {
  background: var(--amber);
  color: var(--white) !important;
  padding: 0.55rem 1.1rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  white-space: nowrap;
  border: none;
  transition: background 0.2s;
}
.nav-btn:hover { background: #CF8310; }

/* ── HERO ── */
.hero { background: var(--white); border-bottom: 2px solid var(--border-lt); }

/* VIDEO THUMBNAIL WRAPPER */
.hero-video-wrap {
  position: relative;
  width: 100%;
  background: #000;
  cursor: pointer;
  overflow: hidden;
}
.hero-video-wrap img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center 20%;
  max-height: 56vw; /* 16:9 ratio */
  transition: transform 0.3s ease, filter 0.3s ease;
}
.hero-video-wrap:hover img {
  transform: scale(1.02);
  filter: brightness(0.85);
}
/* Dark overlay on hover */
.hero-video-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.25);
  transition: background 0.3s;
}
.hero-video-wrap:hover .hero-video-overlay {
  background: rgba(0,0,0,0.40);
}
/* Play button */
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 32px rgba(0,0,0,0.35);
  transition: transform 0.2s, background 0.2s;
  pointer-events: none;
}
.hero-video-wrap:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--white);
}
.play-btn::after {
  content: '';
  width: 0; height: 0;
  border-style: solid;
  border-width: 14px 0 14px 24px;
  border-color: transparent transparent transparent var(--navy);
  margin-left: 5px;
}
/* Video CTA label */
.video-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  padding: 2rem 1.25rem 1rem;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  display: flex; align-items: center; gap: 0.5rem;
}
.video-label::before { content: '▶'; color: #FFEC90; font-size: 0.75rem; }

/* Hero body text */
.hero-body {
  padding: 2rem 1.25rem 2.5rem;
  text-align: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--amber-bg);
  border: 2px solid var(--amber-bdr);
  border-radius: 100px;
  padding: 0.45rem 1rem;
  font-size: 0.8rem; font-weight: 700;
  color: var(--amber-text);
  margin-bottom: 1.25rem;
}
.hero-badge::before { content: '✦'; color: var(--amber); }

h1 {
  font-family: var(--ff-serif);
  font-size: clamp(1.7rem, 6vw, 3.2rem);
  font-weight: 900; line-height: 1.2;
  color: var(--navy); margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
h1 em { font-style: italic; color: var(--amber-text); display: block; }

.hero-lead {
  font-size: clamp(0.95rem, 3vw, 1.15rem);
  line-height: 1.8; color: var(--text-md);
  margin-bottom: 2rem;
}
.hero-cta-group {
  display: flex; flex-direction: column;
  align-items: stretch; gap: 0.85rem;
  max-width: 400px; margin: 0 auto;
}
.btn-primary {
  display: block; text-align: center;
  background: var(--amber); color: var(--white);
  padding: 1rem 1.5rem; border-radius: 8px;
  font-weight: 700; font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(184,114,10,0.3);
  transition: background 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.btn-primary:hover, .btn-primary:active { background: #CF8310; }

.btn-secondary {
  display: block; text-align: center;
  background: transparent; color: var(--navy);
  padding: 0.9rem 1.5rem; border-radius: 8px;
  font-weight: 600; font-size: 0.95rem;
  text-decoration: none;
  border: 2.5px solid var(--navy);
  transition: background 0.2s, color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.btn-secondary:hover, .btn-secondary:active {
  background: var(--navy); color: var(--white);
}
.hero-reassure {
  font-size: 0.82rem; color: var(--text-lt);
  display: flex; align-items: center;
  justify-content: center; gap: 0.4rem;
}

/* ── PROOF BAR ── */
.proof-bar {
  background: var(--navy);
  padding: 1.75rem 1.25rem;
}
.proof-bar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 1000px; margin: 0 auto;
}
.proof-item { text-align: center; }
.proof-num {
  font-family: var(--ff-serif);
  font-size: 1.6rem; font-weight: 900;
  color: #FFEC90; display: block; line-height: 1;
}
.proof-label {
  font-size: 0.78rem; color: #E8E8E8;
  margin-top: 0.3rem; display: block; line-height: 1.4;
}

/* ── SECTIONS ── */
.section { padding: 3.5rem 1.25rem; }
.section-white { background: var(--white); }
.section-cream { background: var(--cream); }
.section-cream-dk { background: var(--cream-dk); }
.section-navy { background: var(--navy); }

.inner { max-width: 1100px; margin: 0 auto; }

.eyebrow {
  display: block;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--amber-text); margin-bottom: 0.6rem;
}
h2 {
  font-family: var(--ff-serif);
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 900; line-height: 1.25;
  color: var(--navy); margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
h2.on-dark { color: var(--white); }
.section-lead {
  font-size: clamp(0.9rem, 2.5vw, 1.05rem);
  color: var(--text-md); line-height: 1.8;
  margin-bottom: 2rem;
}

/* ── FEAR CARDS ── */
.fear-grid {
  display: flex; flex-direction: column; gap: 1.25rem;
  margin-top: 2rem;
}
.fear-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 10px; padding: 1.75rem 1.5rem;
}
.fc-then-label {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-lt); margin-bottom: 0.6rem;
}
.fc-then-text {
  font-family: var(--ff-serif);
  font-size: 0.95rem; font-style: italic;
  color: var(--text-md); line-height: 1.65;
  padding-bottom: 1rem;
  border-bottom: 1.5px solid var(--border-lt);
  margin-bottom: 1rem;
}
.fc-now-label {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green); margin-bottom: 0.5rem;
}
.fc-now-text {
  font-size: 0.95rem; font-weight: 600;
  color: var(--text); line-height: 1.6;
}

/* ── ABOUT ── */
.about-photo-wrap {
  position: relative;
  margin-bottom: 3.5rem;
}
.about-accent {
  position: absolute; top: -1rem; left: -0.75rem;
  width: 48%; height: 48%;
  background: var(--amber); opacity: 0.09;
  border-radius: 10px; z-index: 0;
}
.about-photo-main {
  width: 100%; border-radius: 10px;
  display: block; position: relative; z-index: 1;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  object-fit: cover; max-height: 420px;
}
.about-photo-family {
  position: absolute;
  bottom: -2.5rem; right: -0.5rem;
  width: 50%; border-radius: 10px;
  border: 4px solid var(--white);
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  z-index: 3; object-fit: cover;
}
.about-badge {
  position: absolute; top: 1rem; right: -0.5rem;
  background: var(--amber); color: var(--white);
  padding: 0.75rem 1rem; border-radius: 8px;
  z-index: 4; text-align: center;
  box-shadow: 0 4px 16px rgba(184,114,10,0.35);
  line-height: 1.3;
}
.about-badge strong {
  display: block; font-size: 1.8rem;
  font-weight: 900; line-height: 1;
}
.about-badge span { font-size: 0.75rem; font-weight: 600; }

.siezen-box {
  background: var(--amber-bg);
  border: 2px solid var(--amber-bdr);
  border-radius: 8px; padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.88rem; color: var(--text-md);
  line-height: 1.7;
}
.siezen-box strong { color: var(--amber-text); }

.about-text p {
  font-size: 0.95rem; line-height: 1.85;
  color: var(--text-md); margin-bottom: 1.25rem;
}
.about-text p strong { color: var(--text); font-weight: 700; }

.timeline { margin-top: 1.5rem; }
.tl-row {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1rem; padding: 0.9rem 0;
  border-top: 1.5px solid var(--border-lt);
}
.tl-row:last-child { border-bottom: 1.5px solid var(--border-lt); }
.tl-year {
  font-size: 0.75rem; font-weight: 700;
  color: var(--amber-text); padding-top: 0.1rem;
}
.tl-role { font-weight: 700; font-size: 0.9rem; color: var(--navy); line-height: 1.4; }
.tl-note { font-size: 0.8rem; color: var(--text-md); margin-top: 0.2rem; line-height: 1.5; }

/* ── QUOTE ── */
.quote-inner {
  padding: 3.5rem 1.25rem;
  text-align: center;
  max-width: 820px; margin: 0 auto;
}
.blockquote {
  font-family: var(--ff-serif);
  font-size: clamp(1.1rem, 4vw, 1.8rem);
  font-weight: 400; font-style: italic;
  line-height: 1.7; color: var(--white);
  margin-bottom: 1.25rem;
}
.blockquote strong { font-style: normal; font-weight: 900; color: #FFEC90; }
.quote-attr { font-size: 0.85rem; color: #E8E8E8; }

/* ── OFFERS ── */
.offer-list { display: flex; flex-direction: column; gap: 1.25rem; }
.offer-item {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 2.8rem 1fr;
  grid-template-rows: auto auto;
  gap: 0.75rem 1rem;
  transition: border-color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.offer-item:hover { border-color: var(--amber); }
.offer-icon {
  font-size: 2rem; line-height: 1;
  grid-row: 1; grid-column: 1;
  align-self: start; padding-top: 0.1rem;
}
.offer-content { grid-row: 1; grid-column: 2; }
.offer-tag {
  display: inline-block; font-size: 0.75rem;
  font-weight: 700; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--white);
  background: var(--navy); padding: 0.18rem 0.55rem;
  border-radius: 3px; margin-bottom: 0.4rem;
}
.offer-name {
  font-family: var(--ff-serif);
  font-size: 1.05rem; font-weight: 700;
  color: var(--navy); margin-bottom: 0.4rem;
  line-height: 1.3;
}
.offer-desc {
  font-size: 0.85rem; color: var(--text-md);
  line-height: 1.7;
}
.offer-price {
  grid-row: 2; grid-column: 2;
  font-weight: 700; font-size: 1rem;
  color: var(--amber-text);
}
.offer-price small {
  font-size: 0.78rem; font-weight: 400;
  color: var(--text-md); margin-left: 0.35rem;
}

/* ── TESTIMONIALS ── */
.testi-notice {
  display: flex; align-items: flex-start; gap: 0.6rem;
  background: var(--amber-bg); border: 1.5px solid var(--amber-bdr);
  border-radius: 8px; padding: 0.9rem 1rem;
  font-size: 0.8rem; color: var(--amber-text);
  margin-bottom: 2rem; line-height: 1.6;
}
.testi-notice::before { content: '⚠️'; flex-shrink: 0; }
.testi-grid {
  display: flex; flex-direction: column; gap: 1.25rem;
}
.testi-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 10px; padding: 1.75rem 1.5rem;
}
.testi-stars { color: var(--amber-text); font-size: 1rem; margin-bottom: 0.75rem; }
.testi-text {
  font-family: var(--ff-serif); font-style: italic;
  font-size: 0.9rem; line-height: 1.8;
  color: var(--text-md); margin-bottom: 1.25rem;
}
.testi-author { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.testi-meta { font-size: 0.82rem; color: var(--text-md); }

/* ── FAQ ── */
.faq-list { margin-top: 2rem; }
.faq-item {
  border-top: 2px solid var(--border-lt); cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.faq-item:last-child { border-bottom: 2px solid var(--border-lt); }
.faq-q {
  display: flex; justify-content: space-between;
  align-items: center; gap: 1rem;
  padding: 1.25rem 0;
  font-size: 0.95rem; font-weight: 700;
  color: var(--navy); user-select: none; line-height: 1.5;
}
.faq-q::after {
  content: '+'; font-size: 1.5rem;
  color: var(--amber-text); flex-shrink: 0;
  font-weight: 300; transition: transform 0.25s; line-height: 1;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  font-size: 0.9rem; color: var(--text-md);
  line-height: 1.85; overflow: hidden;
  max-height: 0; transition: max-height 0.35s ease, padding-bottom 0.25s;
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 1.25rem; }

/* ── CTA ── */
.cta-box {
  background: var(--white);
  border-radius: 12px; padding: 2.5rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0,0,0,0.09);
  max-width: 680px; margin: 0 auto;
}
.cta-free-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--green-bg); color: var(--green);
  border: 1.5px solid var(--green-bdr);
  padding: 0.45rem 1rem; border-radius: 100px;
  font-weight: 700; font-size: 0.8rem;
  margin-bottom: 1.25rem;
}
.cta-free-pill::before { content: '🎁'; }
.cta-box h2 { margin-bottom: 0.75rem; }
.cta-box p {
  font-size: 0.95rem; color: var(--text-md);
  line-height: 1.8; margin-bottom: 1.75rem;
}
.cta-form {
  display: flex; flex-direction: column; gap: 0.75rem;
  max-width: 460px; margin: 0 auto 1rem;
}
.cta-form input {
  width: 100%; padding: 1rem 1.1rem;
  background: var(--cream);
  border: 2.5px solid var(--border); border-radius: 8px;
  color: var(--text); font-family: var(--ff-sans);
  font-size: 1rem; outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.cta-form input::placeholder { color: var(--text-lt); }
.cta-form input:focus { border-color: var(--amber); }
.cta-form .btn-primary { font-size: 1rem; padding: 1rem; }
.cta-note { font-size: 0.78rem; color: var(--text-md); line-height: 1.6; }

/* ── CONTACT STRIP ── */
.contact-strip {
  background: var(--cream-dk);
  border-top: 2px solid var(--border);
  text-align: center;
  padding: 1.5rem 1.25rem;
  font-size: 0.9rem; color: var(--text);
  line-height: 1.7;
}
.contact-strip strong { color: var(--navy); }
.contact-strip a { color: var(--amber-text); font-weight: 700; text-decoration: none; }
.contact-strip a:hover { text-decoration: underline; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  padding: 2rem 1.25rem;
  display: flex; flex-direction: column;
  align-items: center; gap: 1.25rem; text-align: center;
}
.footer-logo {
  font-family: var(--ff-serif); font-size: 1.1rem;
  font-weight: 900; color: var(--white); text-decoration: none;
}
.footer-logo .tld { color: #FFEC90; }
.footer-links {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1.25rem 2rem; list-style: none;
}
.footer-links a {
  font-size: 0.85rem; color: #E8E8E8;
  text-decoration: none; transition: color 0.2s;
  padding: 0.6rem 0; display: inline-block; min-height: 44px;
  display: inline-flex; align-items: center;
}
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 0.78rem; color: #E8E8E8; }

/* ── VIDEO MODAL ── */
.video-modal {
  display: none;
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.88);
  align-items: center; justify-content: center;
  padding: 1rem;
}
.video-modal.open { display: flex; }
.video-modal-inner {
  position: relative; width: 100%;
  max-width: 900px;
}
.video-ratio-wrap {
  position: relative; width: 100%;
  padding-bottom: 56.25%; /* 16:9 fallback for Safari < 15 */
  height: 0;
}
.video-modal-inner iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  aspect-ratio: 16/9;
  border: none; display: block; border-radius: 8px;
}
.video-close {
  position: fixed; top: 1rem; right: 1rem;
  color: var(--white); background: rgba(0,0,0,0.5); border: none;
  font-size: 2rem; cursor: pointer;
  line-height: 1; padding: 0.25rem 0.6rem;
  border-radius: 6px;
  min-width: 44px; min-height: 44px;
  display: flex; align-items: center; justify-content: center;
  z-index: 1001;
  -webkit-tap-highlight-color: transparent;
}

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── TABLET (640px+) ── */
@media (min-width: 640px) {
  nav { padding: 0 2rem; height: 68px; }
  .nav-logo { font-size: 1.2rem; }
  .nav-btn { padding: 0.6rem 1.4rem; font-size: 0.9rem; }

  .hero-video-wrap img { max-height: 360px; }
  .hero-body { padding: 2.5rem 2rem 3rem; }
  .play-btn { width: 88px; height: 88px; }
  .play-btn::after { border-width: 18px 0 18px 30px; margin-left: 6px; }

  .proof-bar-inner { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
  .proof-num { font-size: 1.8rem; }

  .section { padding: 4.5rem 2rem; }

  .fear-grid { display: grid; grid-template-columns: 1fr 1fr; }
  .fear-grid .fear-card:last-child { grid-column: 1 / -1; max-width: 480px; margin: 0 auto; width: 100%; }

  .offer-item { padding: 1.75rem 2rem; }

  .cta-form { flex-direction: row; }
  .cta-form input { flex: 1; }
  .cta-form .btn-primary { width: auto; white-space: nowrap; padding: 1rem 1.5rem; }
}

/* ── DESKTOP (900px+) ── */
@media (min-width: 900px) {
  html { font-size: 20px; }

  nav { padding: 0 3rem; height: 76px; }
  .nav-logo { font-size: 1.35rem; }
  .nav-link-item { display: list-item; }
  .nav-links { gap: 2rem; }
  .nav-links a {
    color: var(--text); text-decoration: none;
    font-size: 1rem; font-weight: 600;
    padding: 0.3rem 0;
    border-bottom: 3px solid transparent;
    transition: color 0.2s, border-color 0.2s;
  }
  .nav-links a:hover { color: var(--navy); border-bottom-color: var(--amber); }
  .nav-btn { font-size: 1rem; padding: 0.65rem 1.5rem; }

  /* Hero: split layout on desktop */
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 540px;
  }
  .hero-video-wrap {
    order: 2;
    max-height: none;
  }
  .hero-video-wrap img {
    max-height: none;
    height: 100%;
    object-fit: cover;
  }
  .hero-body {
    order: 1;
    text-align: left;
    padding: 4rem 3rem 4rem 4rem;
    display: flex; flex-direction: column;
    justify-content: center;
  }
  .hero-cta-group { align-items: flex-start; }
  .hero-reassure { justify-content: flex-start; }
  .hero-badge { align-self: flex-start; }

  .play-btn { width: 100px; height: 100px; }
  .play-btn::after { border-width: 20px 0 20px 34px; margin-left: 8px; }

  .proof-bar { padding: 2.25rem 3rem; }
  .proof-num { font-size: 2.1rem; }
  .proof-label { font-size: 0.88rem; }

  .section { padding: 5.5rem 3rem; }

  .fear-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  .fear-grid .fear-card:last-child {
    grid-column: auto; max-width: none; margin: 0;
  }

  /* About: side by side */
  .about-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 5rem; align-items: start;
  }
  .about-photo-wrap { margin-bottom: 0; padding-bottom: 4.5rem; }
  .about-photo-main { max-height: none; }

  /* Offer rows: icon + content + price */
  .offer-item {
    grid-template-columns: 3.5rem 1fr 160px;
    grid-template-rows: auto;
    align-items: center;
  }
  .offer-icon { grid-row: 1; grid-column: 1; }
  .offer-content { grid-row: 1; grid-column: 2; }
  .offer-price { grid-row: 1; grid-column: 3; text-align: right; }
  .offer-price small { display: block; margin-left: 0; margin-top: 0.2rem; }

  .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; flex-direction: unset; }

  footer { flex-direction: row; justify-content: space-between; text-align: left; padding: 2.5rem 3rem; }

  .cta-box { padding: 4rem; }
}

/* ── LARGE DESKTOP (1200px+) ── */
@media (min-width: 1200px) {
  .hero-body { padding: 4rem 3.5rem 4rem 5rem; }
}

/* ── URGENCY SECTION ── */
.urgency-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.urgency-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--cream);
  border: 2px solid var(--border-lt);
  border-radius: 10px;
  padding: 1.5rem 1.75rem;
}
.urgency-icon { font-size: 2rem; line-height: 1; flex-shrink: 0; margin-top: 0.1rem; }
.urgency-text { font-size: 1rem; line-height: 1.75; color: var(--text-md); }
.urgency-text strong { color: var(--navy); font-weight: 700; }
@media (min-width: 640px) {
  .urgency-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── URGENCY CHECK ITEMS ── */
.urgency-check {
  position: relative;
  padding-left: 3.5rem !important;
}
.urgency-check::before {
  content: '';
  position: absolute;
  left: 1.5rem;
  top: 1.6rem;
  width: 20px;
  height: 20px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}
.urgency-check::after {
  content: '';
  position: absolute;
  left: 1.5rem;
  top: 1.6rem;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='white' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: center;
}
.urgency-check .urgency-icon { display: none; }
