@font-face {
  font-family: 'Agrandir Wide';
  src: url('../fonts/agrandir-wide.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --green: #00674F;
  --green-light: #e6f2ee;
  --green-dark: #004d3b;
  --black: #0a0a0a;
  --dark: #1a1a1a;
  --gray: #555;
  --gray-light: #999;
  --off-white: #f7f7f7;
  --white: #ffffff;
  --font-heading: 'Agrandir Wide', 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  --max-w: 1100px;
  --section-py: clamp(44px, 7vw, 96px);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 300; line-height: 1.15; letter-spacing: -0.01em; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); color: var(--black); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); color: var(--black); margin-bottom: 20px; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); color: var(--black); }
p { color: var(--gray); font-size: clamp(0.95rem, 1.8vw, 1.05rem); }

.green { color: var(--green); }
.accent-line {
  width: 48px; height: 3px; background: var(--green); border-radius: 2px;
  margin-bottom: 24px;
}

/* ========== CTA BUTTON ========== */
.cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green); color: var(--white);
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  padding: 16px 36px; border-radius: 50px; border: none; cursor: pointer;
  /* transform is driven by GSAP (micro-interactions); CSS only transitions colour/shadow */
  transition: background 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.02em; text-transform: none;
  box-shadow: 0 4px 24px rgba(0, 103, 79, 0.18);
}
.cta-btn:hover {
  background: var(--green-dark);
  box-shadow: 0 8px 32px rgba(0, 103, 79, 0.28);
}
.cta-btn svg { transition: transform 0.3s; }
.cta-btn:hover svg { transform: translateX(4px); }

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

/* ========== CAPACITY BADGE ========== */
.capacity-badge {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--green);
  background: var(--green-light); padding: 8px 18px; border-radius: 100px;
  margin: 20px auto 0; width: fit-content;
}
.capacity-dot {
  position: relative;
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  animation: pulse-dot 2s infinite;
}
/* Expanding ring radiating from the status dot */
.capacity-dot::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: var(--green);
  animation: pulse-ring 2s infinite;
  pointer-events: none;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
@keyframes pulse-ring {
  0%   { transform: scale(1);   opacity: 0.5; }
  70%, 100% { transform: scale(2.4); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .capacity-dot { animation: none; }
  .capacity-dot::after { display: none; }
}

/* ========== HEADER (scroll-reactive glass pill) ========== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; justify-content: center;
  padding: 14px 16px;
  pointer-events: none; /* let clicks fall through the gutter; pill re-enables */
}

.pill {
  pointer-events: auto;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  gap: 24px;
  width: min(1100px, 100%);
  padding: 12px 24px;
  border-radius: 100px;
  background: transparent;
  border: 1px solid transparent;
  box-shadow: none;
  transition:
    width 520ms cubic-bezier(0.4, 0, 0.2, 1),
    padding 520ms cubic-bezier(0.4, 0, 0.2, 1),
    background 520ms ease, border-color 520ms ease, box-shadow 520ms ease;
}
/* Compact (scrolled): narrower liquid-glass pill */
.pill[data-compact="true"] {
  width: min(800px, 100%);
  /* left 26px offsets the 10px .pill-chip overhang so the icon's visual left
     inset (~16px) matches the CTA's right inset (~16px) */
  padding: 8px 16px 8px 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0.5));
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border-color: rgba(255,255,255,0.6);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.7),
    inset 0 -1px 0 rgba(0,0,0,0.04),
    0 14px 40px rgba(0,0,0,0.1);
}

/* Logo (wordmark that morphs into the "VS" icon) */
.pill-logo {
  position: relative; isolation: isolate;
  display: inline-flex; align-items: center; white-space: nowrap;
  font-family: var(--font-heading); font-weight: 300;
  font-size: 1.3rem; letter-spacing: 0.12em; line-height: 1;
  color: var(--green); text-transform: uppercase;
}
.pill-chip {
  position: absolute; inset: -7px -10px; z-index: 0;
  background: #fff; border-radius: 10px;
  opacity: 0; transform: scale(0.9);
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.pill[data-compact="true"] .pill-chip { opacity: 1; transform: scale(1); }
.lm-word { position: relative; z-index: 1; display: inline-flex; }
.lm-rest {
  display: inline-block; max-width: 8ch; overflow: hidden; opacity: 1;
  transition: max-width 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
}
.pill[data-compact="true"] .lm-rest { max-width: 0; opacity: 0; }
.lm-gap {
  position: relative; z-index: 1;
  display: inline-block; width: 0.34em;
  transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.pill[data-compact="true"] .lm-gap { width: 0; }
/* Tight "VS": drop the wordmark tracking once collapsed to the icon */
.pill[data-compact="true"] .pill-logo { letter-spacing: 0; }

/* Centered nav links */
.pill-nav { display: flex; align-items: center; justify-content: center; gap: 32px; }
.pill-nav a {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.03em;
  color: var(--gray); transition: color 0.3s; text-transform: uppercase;
}
.pill-nav a:hover { color: var(--green); }

.pill-right { display: flex; align-items: center; justify-content: flex-end; gap: 16px; }
.nav-cta { padding: 10px 24px; font-size: 0.8rem; color: var(--white) !important; }
.nav-cta:hover { color: var(--white) !important; }


.mobile-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 24px; position: relative; z-index: 1001;
}
.mobile-toggle span {
  display: block; width: 100%; height: 2px; background: var(--dark);
  position: absolute; left: 0; transition: all 0.3s;
}
.mobile-toggle span:nth-child(1) { top: 2px; }
.mobile-toggle span:nth-child(2) { top: 11px; }
.mobile-toggle span:nth-child(3) { top: 20px; }
.mobile-toggle.active span:nth-child(1) { top: 11px; transform: rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { top: 11px; transform: rotate(-45deg); }

/* ========== HERO ========== */
.hero {
  padding-top: calc(68px + var(--section-py));
  padding-bottom: var(--section-py);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,103,79,0.04) 0%, transparent 70%);
  pointer-events: none;
}
/* Animated Three.js dotted surface — sits above the gradient, below hero content */
.hero-dots {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none; overflow: hidden;
}
.hero-dots canvas { display: block; }
.hero .container { position: relative; z-index: 1; }

.hero-tag {
  display: inline-block; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--green);
  margin-bottom: 24px;
}

.hero h1 { max-width: 820px; margin: 0 auto 24px; }
.hero h1 span { color: var(--green); }
.hero-sub {
  max-width: 580px; margin: 0 auto 40px;
  font-size: clamp(1rem, 2vw, 1.15rem); color: var(--gray); line-height: 1.8;
}

/* ========== VSL SECTION ========== */
.vsl-section {
  padding: var(--section-py) 0;
  background: #E6F2EE;
  text-align: center;
}

.vsl-wrapper {
  max-width: 800px; margin: 0 auto;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  background: var(--black);
  aspect-ratio: 16/9;
  position: relative;
}

.vsl-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--white); gap: 16px;
}
.play-btn {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--green); display: flex;
  align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.3s;
  box-shadow: 0 4px 30px rgba(0,103,79,0.4);
}
.play-btn:hover { transform: scale(1.1); }
.play-btn svg { margin-left: 4px; }
.vsl-label { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

.vsl-section h2 { margin-bottom: 12px; }
.vsl-section .sub { max-width: 500px; margin: 0 auto 40px; }

/* ========== PAIN SECTION ========== */
.pain-section {
  padding: var(--section-py) 0;
  text-align: center;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px; margin: 48px 0 16px; text-align: left;
}

.pain-card {
  background: var(--off-white);
  border-radius: 12px; padding: 28px 28px 28px 24px;
  display: flex; gap: 16px; align-items: flex-start;
  border-left: 3px solid transparent;
  /* transform reserved for GSAP hover lift */
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.pain-card:hover { border-left-color: var(--green); }
.pain-icon {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: rgba(0,103,79,0.08); display: flex;
  align-items: center; justify-content: center; margin-top: 2px;
}
.pain-icon svg { width: 14px; height: 14px; color: var(--green); }
.pain-card p { font-size: 0.95rem; color: var(--dark); line-height: 1.6; margin: 0; }

.pain-bottom {
  max-width: 640px; margin: 40px auto 0;
  padding: 16px 22px; background: var(--green-light);
  border-radius: 12px;
  border: 1px solid rgba(0,103,79,0.15);
}
.pain-bottom p {
  color: var(--green); font-size: 1.05rem;
  font-weight: 500; line-height: 1.7; margin: 0;
}

/* ========== SOLUTION / HOW IT WORKS ========== */
.solution-section {
  padding: var(--section-py) 0;
  background: var(--off-white);
}

.solution-header { text-align: center; margin-bottom: 64px; }
.solution-header .tagline {
  font-family: var(--font-heading); font-size: 1rem;
  letter-spacing: 0.18em; color: var(--green); text-transform: uppercase;
  margin-top: 8px;
}

.step {
  display: grid; grid-template-columns: 100px 1fr;
  gap: 28px; margin-bottom: 48px; align-items: start;
  max-width: 720px; margin-left: auto; margin-right: auto;
}
.step:last-of-type { margin-bottom: 0; }

.step-left { text-align: center; }

.step-num {
  font-family: var(--font-heading); font-size: 3.5rem;
  color: rgba(0,103,79,0.12); line-height: 1; font-weight: 300;
  margin-bottom: 10px;
}
.step-content h3 {
  font-family: var(--font-heading); font-size: 1.3rem;
  margin-bottom: 8px;
}
.step-content h3 span { color: var(--green); }
.step-label {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--green); background: var(--green-light);
  padding: 4px 12px; border-radius: 4px;
}
.step-content p { max-width: 560px; line-height: 1.8; }

/* ========== WHAT'S INCLUDED ========== */
.included-section {
  padding: var(--section-py) 0;
  text-align: center;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; margin: 48px 0 0; text-align: left;
}

.included-card {
  padding: 32px; border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.06);
  /* transform reserved for GSAP hover lift */
  transition: border-color 0.3s, box-shadow 0.3s; position: relative;
}
.included-card:hover {
  border-color: var(--green);
  box-shadow: 0 8px 30px rgba(0,103,79,0.06);
}
.included-card h4 {
  font-family: var(--font-body); font-weight: 600;
  font-size: 0.95rem; margin-bottom: 8px; color: var(--dark);
}
.included-card p { font-size: 0.9rem; line-height: 1.7; }
.included-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--green-light); display: flex;
  align-items: center; justify-content: center; margin-bottom: 16px;
}
.included-icon svg { width: 20px; height: 20px; color: var(--green); }

/* ========== PARTNER CRITERIA ========== */
.criteria-section {
  padding: var(--section-py) 0;
  background: var(--off-white);
  text-align: center;
}

.criteria-list {
  max-width: 720px;
  margin: 56px auto 0;
  text-align: left;
}

.criteria-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.criteria-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.criteria-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: rgba(0,103,79,0.2);
  line-height: 1;
  font-weight: 300;
  text-align: center;
}

.criteria-content h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.35;
}

.criteria-content p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--dark);
  opacity: 0.78;
  margin: 0;
}

.criteria-close {
  max-width: 620px;
  margin: 56px auto 0;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--green);
  text-align: center;
}

@media (max-width: 720px) {
  .criteria-item {
    grid-template-columns: 50px 1fr;
    gap: 16px;
  }
  .criteria-num { font-size: 2rem; }
}

/* ========== WHY US ========== */
.why-section {
  padding: var(--section-py) 0;
  background: var(--black);
  color: var(--white);
  text-align: center;
}
.why-section h2 { color: var(--white); }
.why-section .accent-line { background: var(--green); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin: 56px auto 0;
  max-width: 880px;
  text-align: left;
}

.why-card h4 {
  font-family: var(--font-heading); font-size: 1.1rem;
  color: var(--green); margin-bottom: 10px;
  text-align: center;
}
.why-card p { color: rgba(255,255,255,0.65); font-size: 0.92rem; line-height: 1.8; }
.why-num {
  font-family: var(--font-heading); font-size: 2.5rem;
  color: rgba(255,255,255,0.9); margin-bottom: 12px;
  text-align: center;
}

/* ========== PRICING ========== */
.pricing-section {
  padding: var(--section-py) 0;
  text-align: center;
}

.price-card {
  max-width: 560px; margin: 48px auto 0;
  border: 2px solid var(--green); border-radius: 20px;
  padding: 48px 40px; position: relative;
  background: var(--white);
}
.price-card::before {
  content: 'ONE PLAN'; position: absolute; top: -13px; left: 50%;
  transform: translateX(-50%); background: var(--green); color: var(--white);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em;
  padding: 5px 20px; border-radius: 50px;
}

.price-amount {
  font-family: var(--font-heading); font-size: clamp(2.8rem, 6vw, 3.8rem);
  color: var(--green); line-height: 1;
}
.price-period { font-size: 0.95rem; color: var(--gray); margin-top: 4px; }
.price-desc {
  font-size: 0.95rem; color: var(--gray); margin: 24px 0 32px;
  max-width: 360px; margin-left: auto; margin-right: auto; line-height: 1.7;
}
.price-list {
  text-align: left; margin: 0 auto 32px; max-width: 380px;
}
.price-list li {
  padding: 8px 0; font-size: 0.9rem; color: var(--dark);
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.price-list li:last-child { border-bottom: none; }
.check-icon { flex-shrink: 0; color: var(--green); }

/* ========== FAQ ========== */
.faq-section {
  padding: var(--section-py) 0;
  background: var(--off-white);
}

.faq-list { max-width: 700px; margin: 48px auto 0; }

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 0;
}
.faq-q {
  padding: 24px 0; cursor: pointer; display: flex;
  justify-content: space-between; align-items: center;
  font-weight: 600; font-size: 0.95rem; color: var(--dark);
  transition: color 0.3s; user-select: none;
}
.faq-q:hover { color: var(--green); }
.faq-q svg { flex-shrink: 0; transition: transform 0.3s; color: var(--green); }
.faq-item.open .faq-q svg { transform: rotate(45deg); }

.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner {
  padding: 0 0 24px; font-size: 0.92rem;
  color: var(--gray); line-height: 1.8;
}

/* ========== FINAL CTA ========== */
.final-cta {
  padding: var(--section-py) 0;
  text-align: center;
}

.final-cta h2 { margin-bottom: 16px; }
.final-cta .sub {
  max-width: 520px; margin: 0 auto 40px;
  font-size: 1.05rem; line-height: 1.8;
}

/* ========== FOOTER ========== */
.footer {
  padding: 40px 0;
  background: var(--green);
  border-top: 1px solid rgba(255,255,255,0.12);
  text-align: center;
}
.footer-tagline {
  font-family: var(--font-heading); font-size: 0.8rem;
  letter-spacing: 0.12em; color: #fff;
  text-transform: uppercase; margin-bottom: 12px;
}
.footer-give {
  font-size: 0.8rem; color: rgba(255,255,255,0.75); margin-bottom: 16px;
}
.footer-give a { color: #e6f2ee; font-weight: 500; }
.footer-give a:hover { color: #fff; }
.footer-links { font-size: 0.78rem; color: rgba(255,255,255,0.75); }
.footer-links a { margin: 0 12px; color: #e6f2ee; }
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.75); margin-top: 12px; }

/* ========== ANIMATIONS (GSAP scroll reveals) ========== */
/* Anti-FOUC: hide until GSAP animates in — but ONLY once JS confirms it's
   running (html.js), so a script that fails to load can never blank the page.
   Stagger wrappers stay visible; only the items INSIDE them are hidden. */
html.js [data-reveal]:not([data-reveal="stagger"]) { opacity: 0; }
html.js [data-reveal="stagger"] > * { opacity: 0; }
@media (prefers-reduced-motion: reduce) {
  html.js [data-reveal]:not([data-reveal="stagger"]),
  html.js [data-reveal="stagger"] > * { opacity: 1 !important; }
}

.section-cta { text-align: center; margin-top: 48px; }

/* ========== RESPONSIVE ========== */
/* Mobile header: collapse the pill to logo + hamburger, links go full-screen */
@media (max-width: 880px) {
  .pill { grid-template-columns: 1fr auto; }
  .pill-nav { display: none; }
  .pill-nav.open {
    display: flex; flex-direction: column;
    position: fixed; inset: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    z-index: 999; justify-content: center; align-items: center;
    gap: 28px; padding: 80px 24px;
  }
  .pill-nav.open a { font-size: 1.1rem; }
  .nav-cta { display: none; }
  .mobile-toggle { display: block; }
}

@media (max-width: 860px) {
  .step-num { font-size: 2rem; }
  .step { grid-template-columns: 70px 1fr; gap: 16px; }

  .price-card { padding: 40px 24px; }
}

@media (max-width: 500px) {
  .pain-grid { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.7rem; }
  .cta-btn { width: 100%; justify-content: center; padding: 16px 24px; }
}

/* ========== CTA BUTTON DEADLINE ========== */
.cta-btn { flex-direction: column; gap: 4px; }
.cta-main { display: flex; align-items: center; gap: 10px; }
.cta-deadline {
  font-size: 0.66rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; opacity: 0.78;
  line-height: 1;
}

/* ========== CAPACITY BADGE WITH PROGRESS ========== */
.capacity-badge {
  flex-direction: column; gap: 6px; padding: 10px 20px;
  text-align: center; min-width: 220px;
}
.capacity-top { display: flex; align-items: center; gap: 8px; }
.capacity-bar {
  width: 100%; height: 4px; background: rgba(0,103,79,0.15);
  border-radius: 2px; overflow: hidden;
}
.capacity-fill {
  height: 100%; width: 40%; background: var(--green); border-radius: 2px;
}

/* ========== SECTION CAPACITY (below every CTA) ========== */
.section-badge {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--green); margin-top: 14px;
}
.section-badge .capacity-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--green);
  animation: pulse-dot 2s infinite; flex-shrink: 0;
}

/* ========== PAIN SECTION ========== */
/* (styles already in file above) */

/* ========== CRITERIA GRID (2×3) ========== */
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin: 40px 0 32px;
}
.criteria-card {
  background: var(--white); border-radius: 12px;
  padding: 28px 24px;
  border: 1px solid rgba(0,0,0,0.08);
  border-top: 3px solid transparent;
  /* transform reserved for GSAP hover lift */
  transition: border-color 0.3s, box-shadow 0.3s;
}
.criteria-card:hover { border-top-color: var(--green); box-shadow: 0 8px 24px rgba(0,103,79,0.10); }
.criteria-num {
  font-family: var(--font-heading); font-size: 1.1rem;
  color: var(--green); font-weight: 300; margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.criteria-card h4 { font-size: 1.05rem; font-weight: 700; color: var(--black); margin-bottom: 8px; line-height: 1.3; }
.criteria-card p { font-size: 0.81rem; color: var(--dark); margin: 0; line-height: 1.6; }

/* ========== CALENDAR SECTION ========== */
.calendar-section { padding: var(--section-py) 0; }
.calendar-section h2 { text-align: center; }
.calendar-section .sub { text-align: center; max-width: 500px; margin: 0 auto 40px; }
.calendar-wrapper {
  max-width: 780px; margin: 0 auto;
  border-radius: 16px; overflow: hidden;
}
.calendar-wrapper iframe { display: block; }

/* ========== WHAT HAPPENS ON THE CALL ========== */
.call-section { padding: var(--section-py) 0; background: var(--green-light); }
.call-section h2 { color: var(--black); text-align: center; }
.call-section .accent-line { background: var(--green); margin: 0 auto 24px; }
.call-section .sub { color: var(--gray); text-align: center; max-width: 460px; margin: 0 auto 52px; }
.call-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; max-width: 860px; margin: 0 auto;
}
.call-step { text-align: center; }
.call-step-num {
  font-family: var(--font-heading); font-size: 2.5rem; font-weight: 300;
  color: var(--green); line-height: 1; margin-bottom: 16px;
}
.call-step h4 { color: var(--black); font-size: 1rem; font-weight: 600; margin-bottom: 10px; }
.call-step p { color: var(--gray); font-size: 0.88rem; line-height: 1.65; margin: 0; }

/* ========== STICKY MOBILE CTA BAR ========== */
.mobile-cta-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--white); padding: 12px 20px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.1);
  z-index: 900; align-items: center; justify-content: space-between; gap: 12px;
}
.mobile-cta-bar .bar-text {
  font-size: 0.78rem; font-weight: 600; color: var(--dark);
  line-height: 1.3;
}
.mobile-cta-bar .bar-text span { color: var(--green); display: block; font-size: 0.7rem; font-weight: 500; }
.mobile-cta-bar .bar-btn {
  background: var(--green); color: var(--white);
  font-size: 0.8rem; font-weight: 600; padding: 10px 20px;
  border-radius: 50px; white-space: nowrap; flex-shrink: 0;
  letter-spacing: 0.02em;
}

@media (max-width: 860px) {
  .mobile-cta-bar { display: flex; }
  .criteria-grid { grid-template-columns: repeat(2, 1fr); }
  .call-steps { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 500px) {
  .criteria-grid { grid-template-columns: 1fr; }
}

