/* =====================================================================
   Georgia Detox Resources — Main Stylesheet
   Colors: Forest Green #2D5F4B | Terracotta #E07A54 | Off-white #F9F6F1
   Fonts: Lora (headlines) + Inter (body)
   ===================================================================== */

/* --- Custom Properties -------------------------------------------- */
:root {
  --green:        #2D5F4B;
  --green-dark:   #1f4535;
  --green-light:  #3a7a61;
  --green-tint:   #edf4f0;
  --terra:        #E07A54;
  --terra-dark:   #c4603c;
  --off-white:    #F9F6F1;
  --white:        #ffffff;
  --text:         #4A4A4A;
  --text-light:   #9E9E9E;
  --border:       #E8E4DF;
  --shadow:       0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:    0 4px 20px rgba(0,0,0,0.10);
  --radius:       6px;
  --radius-lg:    12px;
  --font-head:    'Lora', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --max-w:        1200px;
  --content-w:    720px;
  --narrow-w:     540px;
  --transition:   0.2s ease;
}

/* --- Reset --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--off-white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: underline; transition: color var(--transition); }
a:hover { color: var(--terra); }
ul, ol { padding-left: 1.25rem; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }

/* --- Skip Link ---------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -999px;
  left: 1rem;
  z-index: 9999;
  padding: 0.5rem 1rem;
  background: var(--green);
  color: var(--white);
  font-size: 14px;
  border-radius: var(--radius);
}
.skip-link:focus { top: 1rem; }

/* --- Typography ---------------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; color: inherit; }
h1 { font-size: clamp(30px, 5vw, 50px); font-weight: 700; }
h2 { font-size: clamp(24px, 4vw, 38px); font-weight: 600; }
h3 { font-size: clamp(20px, 3vw, 26px); font-weight: 600; }
h4 { font-size: 20px; font-weight: 600; font-family: var(--font-body); }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- Layout Utilities --------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.container--narrow { max-width: var(--content-w); }
.container--tight  { max-width: var(--narrow-w); }

section { padding-block: 80px; }
@media (max-width: 768px) { section { padding-block: 48px; } }

/* --- Phone Number -------------------------------------------------- */
.gdr-phone-link {
  color: var(--terra);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}
.gdr-phone-link:hover { color: var(--terra-dark); text-decoration: underline; }

/* =====================================================================
   HEADER
   ===================================================================== */
.site-header {
  background: var(--green);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0;
  min-height: 68px;
}
.site-header__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.site-header__logo {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.site-header__logo span { color: var(--terra); display: block; font-size: 13px; font-family: var(--font-body); font-weight: 400; letter-spacing: 0.02em; }
.site-header__right {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.site-header__phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.site-header__phone-label {
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 2px;
}
.site-header__phone a {
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 600;
  color: var(--terra);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.site-header__phone a:hover { color: #f5b89a; }

/* Nav */
.site-nav { display: flex; align-items: center; }
.site-nav__list { display: flex; list-style: none; padding: 0; margin: 0; gap: 0.25rem; }
.site-nav__list a {
  display: block;
  padding: 0.45rem 0.75rem;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
.site-nav__list a:hover,
.site-nav__list a.current-menu-item { background: rgba(255,255,255,0.12); color: var(--white); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.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: 768px) {
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--green-dark);
    padding: 1rem 1.5rem 1.5rem;
  }
  .site-nav.is-open { display: block; }
  .site-nav__list { flex-direction: column; gap: 0; }
  .site-nav__list a { font-size: 16px; padding: 0.6rem 0.5rem; }
  .site-header__right { gap: 1rem; }
  .site-header__phone span { display: none; }
  .site-header__phone a { font-size: 16px; }
}

/* =====================================================================
   BUTTONS
   ===================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--transition), color var(--transition), transform 0.15s;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--terra);
  color: var(--white);
  border: 2px solid var(--terra);
}
.btn--primary:hover { background: var(--terra-dark); border-color: var(--terra-dark); color: var(--white); }

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn--outline-white:hover { background: rgba(255,255,255,0.1); color: var(--white); border-color: var(--white); }

.btn--outline-green {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn--outline-green:hover { background: var(--green); color: var(--white); }

.btn--lg { font-size: 17px; padding: 1rem 2.25rem; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  background: var(--green);
  color: var(--white);
  padding-block: 90px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1.25rem;
  opacity: 0;
}
.hero h1 {
  font-size: clamp(32px, 5.5vw, 54px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.15;
  opacity: 0;
  transform: translateY(20px);
}
.hero__sub {
  font-size: clamp(16px, 2.5vw, 19px);
  color: rgba(255,255,255,0.82);
  margin-bottom: 2.25rem;
  max-width: 600px;
  opacity: 0;
  transform: translateY(20px);
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  opacity: 0;
}
.hero__phone-note {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-top: 1rem;
  opacity: 0;
}

@media (max-width: 600px) {
  .hero { padding-block: 60px; }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .btn--lg { width: 100%; justify-content: center; }
}

/* =====================================================================
   WHO THIS IS FOR
   ===================================================================== */
.for-section { background: var(--white); }
.for-section__intro {
  text-align: center;
  max-width: var(--content-w);
  margin-inline: auto;
  margin-bottom: 3rem;
}
.for-section__intro h2 { color: var(--green); margin-bottom: 0.75rem; }
.for-section__intro p { color: var(--text-light); font-size: 17px; }
.for-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.for-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: box-shadow var(--transition), transform var(--transition);
  opacity: 0;
  transform: translateY(20px);
}
.for-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.for-card__icon {
  width: 48px;
  height: 48px;
  max-width: 48px;
  max-height: 48px;
  margin-bottom: 1rem;
  color: var(--terra);
}
.for-card h3 { font-size: 20px; color: var(--green); margin-bottom: 0.6rem; }
.for-card p { font-size: 15px; color: var(--text); margin: 0; }

/* =====================================================================
   WHAT WE COVER
   ===================================================================== */
.covers-section { background: var(--off-white); }
.covers-section__head {
  max-width: var(--content-w);
  margin-inline: auto;
  margin-bottom: 3rem;
  text-align: center;
}
.covers-section__head h2 { color: var(--green); margin-bottom: 0.75rem; }
.covers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.cover-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  transition: box-shadow var(--transition), border-color var(--transition);
  opacity: 0;
}
.cover-item:hover { border-color: var(--green); box-shadow: var(--shadow); color: var(--text); }
.cover-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  max-width: 24px;
  max-height: 24px;
  color: var(--terra);
  margin-top: 2px;
}
.cover-item__text strong { display: block; font-size: 15px; font-weight: 600; color: var(--green); margin-bottom: 2px; }
.cover-item__text span { font-size: 13px; color: var(--text-light); }

/* =====================================================================
   LOCAL SECTION
   ===================================================================== */
.local-section { background: var(--green-tint); }
.local-section__head {
  max-width: var(--content-w);
  margin-inline: auto;
  margin-bottom: 2.5rem;
  text-align: center;
}
.local-section__head h2 { color: var(--green); margin-bottom: 0.6rem; }
.local-section__head p { color: var(--text-light); }
.local-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.local-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--green);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.local-tag:hover { background: var(--green); color: var(--white); border-color: var(--green); }

/* =====================================================================
   WHAT TO EXPECT
   ===================================================================== */
.expect-section { background: var(--white); }
.expect-section__head {
  max-width: var(--content-w);
  margin-inline: auto;
  margin-bottom: 3rem;
  text-align: center;
}
.expect-section__head h2 { color: var(--green); margin-bottom: 0.6rem; }
.expect-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 760px;
  margin-inline: auto;
}
@media (max-width: 540px) {
  .expect-steps { grid-template-columns: 1fr; }
}
.expect-step {
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
}
.expect-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  max-width: 48px;
  max-height: 48px;
  border-radius: 50%;
  background: var(--terra);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 1rem;
}
.expect-step h4 { font-size: 17px; color: var(--green); margin-bottom: 0.4rem; font-family: var(--font-head); }
.expect-step p { font-size: 15px; color: var(--text-light); margin: 0; }

/* =====================================================================
   MYTH BUSTERS
   ===================================================================== */
.myths-section { background: var(--off-white); }
.myths-section__head {
  max-width: var(--content-w);
  margin-inline: auto;
  margin-bottom: 2.5rem;
  text-align: center;
}
.myths-section__head h2 { color: var(--green); }
.myth-list {
  max-width: 680px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.myth-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  opacity: 0;
}
.myth-item__myth {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: #fdf3ef;
  border-bottom: 1px solid var(--border);
}
.myth-item__myth .label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terra);
  flex-shrink: 0;
  background: rgba(224,122,84,0.12);
  padding: 2px 7px;
  border-radius: 3px;
}
.myth-item__myth p { font-size: 15px; font-weight: 500; color: var(--text); margin: 0; font-style: italic; }
.myth-item__truth {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
}
.myth-item__truth .label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3D8B6E;
  flex-shrink: 0;
  background: rgba(61,139,110,0.1);
  padding: 2px 7px;
  border-radius: 3px;
  margin-top: 1px;
}
.myth-item__truth p { font-size: 15px; color: var(--text); margin: 0; }

/* =====================================================================
   FINAL CTA
   ===================================================================== */
.cta-section {
  background: var(--green);
  color: var(--white);
  text-align: center;
  padding-block: 90px;
  opacity: 0;
}
.cta-section h2 {
  font-size: clamp(26px, 4vw, 42px);
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-section__sub {
  font-size: 18px;
  color: rgba(255,255,255,0.78);
  max-width: 540px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}
.cta-section__phone {
  font-family: var(--font-head);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.cta-section__phone a {
  color: var(--terra);
  text-decoration: none;
}
.cta-section__phone a:hover { color: #f5b89a; }
.cta-section__avail {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2rem;
}
.cta-section__btn { margin-bottom: 1rem; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.7);
  padding-block: 48px;
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.site-footer__brand .logo {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.site-footer__brand p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.site-footer__brand a {
  color: var(--terra);
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
}
.site-footer__brand a:hover { color: #f5b89a; }
.site-footer__nav h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1rem;
}
.site-footer__nav ul { list-style: none; padding: 0; margin: 0; }
.site-footer__nav ul li { margin-bottom: 0.5rem; }
.site-footer__nav ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color var(--transition);
}
.site-footer__nav ul a:hover { color: var(--white); }

.site-footer__disclosure {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.45);
}
.site-footer__disclosure strong { color: rgba(255,255,255,0.6); }
.site-footer__bottom {
  margin-top: 1.25rem;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.site-footer__bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }
.site-footer__bottom a:hover { color: rgba(255,255,255,0.7); }

@media (max-width: 640px) {
  .site-footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .site-footer__bottom { flex-direction: column; }
}

/* =====================================================================
   GENERIC PAGE TEMPLATE
   ===================================================================== */
.page-hero {
  background: var(--green);
  color: var(--white);
  padding-block: 56px 48px;
}
.page-hero h1 { font-size: clamp(26px, 4vw, 40px); margin-bottom: 0.5rem; }
.page-hero .breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.75rem;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.page-hero .breadcrumb a:hover { color: var(--white); }
.page-content-wrap {
  max-width: var(--content-w);
  margin-inline: auto;
  padding-block: 56px;
  padding-inline: 1.5rem;
}
.page-content-wrap h2 { color: var(--green); margin-top: 2rem; margin-bottom: 0.75rem; }
.page-content-wrap h3 { color: var(--green); margin-top: 1.5rem; margin-bottom: 0.5rem; }

/* In-content CTA box */
.inline-cta {
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-block: 2.5rem;
  text-align: center;
}
.inline-cta h3 { color: var(--white); margin-bottom: 0.5rem; font-size: 22px; }
.inline-cta p { color: rgba(255,255,255,0.8); font-size: 15px; margin-bottom: 1.25rem; }
.inline-cta .phone { font-size: 24px; font-weight: 700; font-family: var(--font-head); margin-bottom: 1rem; }
.inline-cta .phone a { color: var(--terra); text-decoration: none; }

/* =====================================================================
   STICKY MOBILE CTA BAR
   ===================================================================== */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--green-dark);
  padding: 0.75rem 1rem;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
}
.mobile-cta-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--terra);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 0.9rem;
  border-radius: var(--radius);
  width: 100%;
}
@media (max-width: 640px) { .mobile-cta-bar { display: block; } }
body { padding-bottom: 0; }
@media (max-width: 640px) { body { padding-bottom: 72px; } }

/* =====================================================================
   SECTION LABEL
   ===================================================================== */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.75rem;
}

/* =====================================================================
   404 PAGE
   ===================================================================== */
.page-404 {
  min-height: 60vh;
  display: flex;
  align-items: center;
  text-align: center;
}
.page-404__inner { max-width: 480px; margin-inline: auto; padding: 3rem 1.5rem; }
.page-404 h1 { font-size: 80px; color: var(--green); line-height: 1; margin-bottom: 1rem; }
.page-404 h2 { color: var(--text); margin-bottom: 1rem; }
.page-404 p { color: var(--text-light); margin-bottom: 2rem; }

/* =====================================================================
   ANIMATION STATES (initial hidden — JS reveals)
   ===================================================================== */
.js-reveal { opacity: 0; transform: translateY(20px); }
.is-visible { opacity: 1; transform: translateY(0); }

/* =====================================================================
   SONIC BOOM — Added in Stage 3.5
   ===================================================================== */

/* Hero trust badge row */
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.75rem;
  margin-top: 1.5rem;
  opacity: 0;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}
.trust-badge svg { color: var(--terra); flex-shrink: 0; }

/* Hero scroll peek */
.hero__peek {
  height: 32px;
  background: linear-gradient(to bottom, transparent, rgba(45,95,75,0.15));
  margin-top: 2rem;
}
@media (max-width: 600px) { .hero__peek { height: 20px; } }

/* =====================================================================
   PROBLEM SECTION
   ===================================================================== */
.problem-section { background: var(--white); }
.problem-section__head {
  max-width: var(--content-w);
  margin-inline: auto;
  margin-bottom: 3rem;
  text-align: center;
}
.problem-section__head h2 { color: var(--green); margin-bottom: 0.75rem; }
.problem-section__head p { color: var(--text-light); font-size: 17px; }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 860px;
  margin-inline: auto;
}
@media (max-width: 640px) { .pain-grid { grid-template-columns: 1fr; } }

.pain-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  opacity: 0;
  transform: translateY(20px);
}
.pain-card__icon {
  width: 32px;
  height: 32px;
  max-width: 32px;
  max-height: 32px;
  color: var(--terra);
  margin-bottom: 1rem;
}
.pain-card h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 0.6rem;
  font-style: italic;
  line-height: 1.4;
}
.pain-card p { font-size: 14px; color: var(--text); margin: 0; line-height: 1.65; }

.problem-section__closer {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 18px;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--green);
  max-width: 560px;
  margin-inline: auto;
}

/* =====================================================================
   PROOF SECTION
   ===================================================================== */
.proof-section { background: var(--green); padding-block: 80px; }
@media (max-width: 768px) { .proof-section { padding-block: 48px; } }
.proof-section__head {
  text-align: center;
  margin-bottom: 3rem;
}
.proof-section__head .section-label { color: var(--terra); }
.proof-section__head h2 { color: var(--white); font-size: clamp(22px, 3.5vw, 34px); }

.proof-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 860px;
  margin-inline: auto;
}
@media (max-width: 640px) { .proof-cards { grid-template-columns: 1fr; } }

.proof-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
}
.proof-card__icon {
  width: 40px;
  height: 40px;
  max-width: 40px;
  max-height: 40px;
  color: var(--terra);
  margin-inline: auto;
  margin-bottom: 1.25rem;
}
.proof-card h3 {
  font-family: var(--font-head);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.proof-card p { font-size: 14px; color: rgba(255,255,255,0.75); margin: 0; line-height: 1.65; }

/* =====================================================================
   CTA ENHANCEMENTS
   ===================================================================== */
.cta-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  justify-content: center;
  margin-top: 1.25rem;
}
.cta-trust-row span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}
.cta-trust-row svg { color: var(--terra); flex-shrink: 0; }

.cta-secondary {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  text-align: center;
}
.cta-secondary p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.35rem;
}
.cta-secondary p strong { color: rgba(255,255,255,0.75); }
.cta-secondary__link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}
.cta-secondary__link:hover { color: var(--white); border-color: rgba(255,255,255,0.5); }
