/* ==========================================================================
   Index Clinic — Complete Production CSS
   Australian Metabolic & Longevity Clinic
   ========================================================================== */

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

/* --- Variables --- */
:root {
  --primary: #1A6B6A;
  --primary-light: #2A9D8F;
  --primary-dark: #145250;
  --text: #1A1A2E;
  --text-light: #4B5563;
  --text-muted: #9CA3AF;
  --bg: #FFFFFF;
  --bg-alt: #F7F9FC;
  --border: #E5E7EB;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,.12);
  --radius: 12px;
  --radius-sm: 8px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--primary-light); }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; color: var(--text); }
h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.25rem; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); margin-bottom: 1rem; }
h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: .75rem; }
h4 { font-size: 1.05rem; font-weight: 600; margin-bottom: .5rem; }
p { color: var(--text-light); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
.lead { font-size: 1.15rem; line-height: 1.7; }
.overline {
  font-size: .75rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--primary);
}

/* --- Layout --- */
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-alt); }
.section h2 { text-align: center; margin-bottom: 3rem; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ==========================================================================
   HEADER & NAV
   ========================================================================== */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.header .container {
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  width: 100%;
}
.logo {
  font-size: 1.35rem; font-weight: 700;
  color: var(--primary); letter-spacing: -.5px;
  white-space: nowrap;
  text-decoration: none;
}
.logo span { font-weight: 400; }

/* Nav row */
.nav,
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-link,
.nav-menu > a {
  font-size: .9rem; font-weight: 500;
  color: var(--text); background: none; border: none;
  cursor: pointer; padding: 0;
  font-family: var(--font);
  transition: color .2s;
  white-space: nowrap;
  text-decoration: none;
}
.nav-link:hover,
.nav-menu > a:hover { color: var(--primary); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 16px;
}
.dropdown-toggle {
  font-size: .9rem; font-weight: 500;
  color: var(--text); background: none; border: none;
  cursor: pointer; padding: 0;
  font-family: var(--font);
  transition: color .2s;
  white-space: nowrap;
}
.dropdown-toggle:hover { color: var(--primary); }
.dropdown-toggle::after {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 5px;
  vertical-align: 1px;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px); left: 50%; transform: translateX(-50%);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  min-width: 220px;
  padding: .5rem 0;
  z-index: 200;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: .55rem 1.25rem;
  font-size: .88rem;
  color: var(--text-light);
  transition: background .15s, color .15s;
}
.dropdown-menu a:hover {
  background: var(--bg-alt);
  color: var(--primary);
}

/* Nav CTA button */
.header-content > .btn-primary,
.nav-menu > .btn-primary.nav-cta {
  margin-left: 1rem;
}

/* Highlighted nav link */
.nav-highlight {
  color: var(--primary) !important;
  font-weight: 600 !important;
}
.nav-highlight:hover {
  color: var(--primary-light) !important;
}

/* Mobile toggle (hidden on desktop) */
.nav-toggle { display: none; }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn-primary {
  display: inline-block;
  padding: .75rem 1.75rem;
  font-size: .95rem; font-weight: 600;
  font-family: var(--font);
  color: #fff;
  background: var(--primary);
  border: none; border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  text-align: center;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: #fff;
  box-shadow: 0 4px 14px rgba(26,107,106,.3);
  transform: translateY(-1px);
}
.btn-large { padding: 1rem 2.25rem; font-size: 1.05rem; }

.btn-secondary {
  display: inline-block;
  padding: .75rem 1.75rem;
  font-size: .95rem; font-weight: 600;
  font-family: var(--font);
  color: var(--primary);
  background: transparent;
  border: 2px solid var(--primary);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all .2s;
}
.btn-secondary:hover {
  background: var(--primary);
  color: #fff;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  padding: 5rem 0 4rem;
  background: linear-gradient(170deg, var(--bg-alt) 0%, var(--bg) 100%);
  text-align: center;
}
.hero h1 { color: var(--primary); max-width: 800px; margin: 0 auto 1.25rem; }
.hero p, .hero .subheadline {
  max-width: 680px; margin: 0 auto 2rem;
  font-size: 1.1rem; color: var(--text-light);
}

/* ==========================================================================
   CARDS
   ========================================================================== */
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: box-shadow .25s, transform .25s;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.card h3 { color: var(--text); }
.card p { font-size: .93rem; }

/* Step number inside cards */
.step-number {
  width: 48px; height: 48px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 700;
  margin-bottom: 1.25rem;
}

/* ==========================================================================
   CONDITIONS STRIP (slim horizontal band)
   ========================================================================== */
.conditions-strip {
  padding: 2rem 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.strip-label {
  text-align: center;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.strip-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .65rem;
}
.strip-chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem 1.15rem;
  font-family: var(--font);
  font-size: .88rem;
  font-weight: 500;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}
.strip-chip:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(26,107,106,.1);
}
.chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.tile-detail { display: none; }

/* ==========================================================================
   MODAL
   ========================================================================== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.modal-overlay.open {
  display: flex;
}
.modal-content {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 2.5rem;
  max-width: 560px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: modalIn .25s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.modal-close {
  position: absolute;
  top: 1rem; right: 1.25rem;
  background: none; border: none;
  font-size: 1.75rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  transition: color .2s;
}
.modal-close:hover { color: var(--text); }
.modal-content h3 { margin-bottom: 1rem; font-size: 1.3rem; }
.modal-content p { font-size: .95rem; line-height: 1.7; }
.modal-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  gap: 1rem;
}

/* ==========================================================================
   TRUST SECTION
   ========================================================================== */
.trust-points { max-width: 780px; margin: 0 auto; }
.trust-point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.trust-point:last-child { border-bottom: none; }
.check-icon {
  width: 24px; height: 24px;
  min-width: 24px;
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 2px;
}
.trust-point p { margin: 0; font-size: .95rem; }

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner {
  padding: 4rem 0;
  background: var(--primary);
  text-align: center;
}
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255,255,255,.85); margin-bottom: 2rem; }
.cta-banner .btn-primary {
  background: #fff;
  color: var(--primary);
}
.cta-banner .btn-primary:hover {
  background: var(--bg-alt);
  color: var(--primary-dark);
  box-shadow: 0 4px 14px rgba(0,0,0,.15);
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-items { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  cursor: pointer;
  gap: 1rem;
}
.faq-question h3 { margin: 0; font-size: 1.05rem; font-weight: 600; }
.faq-icon {
  width: 20px; height: 20px;
  min-width: 20px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform .25s;
}
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}
.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 1.25rem;
}
.faq-answer p { font-size: .93rem; }

/* ==========================================================================
   BLOG
   ========================================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.blog-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: box-shadow .25s, transform .25s;
}
.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.blog-card h3 { font-size: 1.1rem; }
.blog-card h3 a { color: var(--text); }
.blog-card h3 a:hover { color: var(--primary); }
.blog-card p { font-size: .88rem; margin-bottom: .75rem; }
.blog-card .read-more { font-size: .88rem; font-weight: 600; color: var(--primary); }

.blog-section { padding: 4rem 0; }
.blog-article { max-width: 720px; margin: 0 auto; padding: 3rem 0; }
.blog-article h2 { text-align: left; margin-bottom: 1rem; margin-top: 2.5rem; }
.blog-article p { font-size: 1rem; line-height: 1.75; }
.blog-article .intro { font-size: 1.1rem; color: var(--text); line-height: 1.8; }
.article-tags { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.back-link { margin-top: 2rem; }
.back-link a { font-weight: 500; color: var(--primary); }

.tag {
  display: inline-block;
  padding: .2rem .6rem;
  font-size: .75rem; font-weight: 500;
  background: var(--bg-alt);
  color: var(--primary);
  border-radius: 4px;
  margin-right: .35rem;
  margin-bottom: .35rem;
}

/* ==========================================================================
   CONDITIONS PAGES
   ========================================================================== */
.symptom-list { max-width: 700px; }
.symptom-list li {
  position: relative;
  padding: .6rem 0 .6rem 1.75rem;
  font-size: .95rem;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
}
.symptom-list li::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
}
.approach-section { max-width: 700px; }
.approach-section p { line-height: 1.75; }

/* ==========================================================================
   FORMS (Intake + Contact)
   ========================================================================== */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .88rem; font-weight: 600;
  color: var(--text);
  margin-bottom: .35rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .7rem .9rem;
  font-size: .95rem;
  font-family: var(--font);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,107,106,.12);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input[type="range"] {
  -webkit-appearance: none;
  height: 6px; background: var(--border);
  border-radius: 3px; border: none; padding: 0;
}
.form-group input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px;
  background: var(--primary);
  border-radius: 50%;
  cursor: pointer;
}

/* Multi-step form */
.step-indicator {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.step-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 700;
  background: var(--bg-alt);
  color: var(--text-muted);
  border: 2px solid var(--border);
  transition: all .25s;
}
.step-dot.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.step-dot.completed {
  background: var(--primary-light);
  color: #fff;
  border-color: var(--primary-light);
}
.form-step { display: none; }
.form-step.active { display: block; }
.form-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.hidden { display: none !important; }

/* Checkbox & radio groups */
.checkbox-group label,
.radio-group label {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 400;
  padding: .35rem 0;
  cursor: pointer;
}
.checkbox-group input[type="checkbox"],
.radio-group input[type="radio"] {
  width: auto;
  accent-color: var(--primary);
}

/* ==========================================================================
   ELIGIBILITY QUIZ
   ========================================================================== */
.quiz-container { max-width: 640px; margin: 0 auto; }
.quiz-question {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.quiz-question h3 { font-size: 1.3rem; margin-bottom: 2rem; }
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  max-width: 400px;
  margin: 0 auto;
}
.quiz-option {
  padding: .85rem 1.5rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  font-size: .95rem; font-weight: 500;
  font-family: var(--font);
  color: var(--text);
  cursor: pointer;
  transition: all .2s;
  text-align: center;
}
.quiz-option:hover {
  border-color: var(--primary);
  background: var(--bg-alt);
  color: var(--primary);
}
.quiz-option.selected {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}
.quiz-progress {
  display: flex;
  gap: .5rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.quiz-progress-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border);
  transition: background .2s;
}
.quiz-progress-dot.active { background: var(--primary); }
.quiz-progress-dot.done { background: var(--primary-light); }
.quiz-result {
  text-align: center;
  padding: 2.5rem;
}
.quiz-result h3 { color: var(--primary); font-size: 1.4rem; margin-bottom: 1rem; }
.quiz-result p { max-width: 480px; margin: 0 auto 1.5rem; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--text);
  color: rgba(255,255,255,.7);
  padding: 3.5rem 0 2rem;
}
.footer h4 { color: #fff; margin-bottom: 1rem; }
.footer p { color: rgba(255,255,255,.6); font-size: .9rem; }
.footer a { color: rgba(255,255,255,.7); }
.footer a:hover { color: #fff; }
.footer-column ul { list-style: none; }
.footer-column li { margin-bottom: .5rem; }
.footer-column li a { font-size: .9rem; }
.footer .grid-3 > div > a {
  display: block;
  font-size: .9rem;
  margin-bottom: .5rem;
}
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center;
}
.footer-bottom p { font-size: .82rem; margin-bottom: .5rem; }
.disclaimer { font-size: .78rem !important; color: rgba(255,255,255,.4) !important; }

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.text-center { text-align: center; }
.text-teal { color: var(--primary); }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header-content { position: relative; }

  .nav,
  .nav-menu {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    gap: 0;
  }
  .nav.active, .nav.nav-open,
  .nav-menu.active, .nav-menu.nav-open { display: flex; }
  .nav-link, .nav-menu > a, .dropdown-toggle {
    padding: .75rem 0;
    width: 100%;
    text-align: left;
  }
  .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
    background: var(--bg-alt);
    border-radius: var(--radius-sm);
  }
  .dropdown:hover .dropdown-menu { display: block; }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .5rem;
  }
  .nav-toggle span {
    display: block;
    width: 22px; height: 2px;
    background: var(--text);
    border-radius: 1px;
    transition: transform .2s;
  }

  .header-content > .btn-primary,
  .nav-menu > .btn-primary.nav-cta { margin-left: 0; }

  .grid-2, .grid-3, .grid-4, .blog-grid { grid-template-columns: 1fr; }
  .hero { padding: 3rem 0; }
  .section { padding: 3rem 0; }
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.4rem; }

  .step-indicator { gap: 1rem; }
  .quiz-question { padding: 1.5rem; min-height: auto; }
}

/* --- Waitlist Banner --- */
.waitlist-banner {
  background: linear-gradient(135deg, #D97706 0%, #F59E0B 50%, #FBBF24 100%);
  color: #fff;
  text-align: center;
  padding: .65rem 3rem .65rem 1rem;
  font-size: .88rem;
  font-weight: 500;
  position: relative;
  z-index: 1000;
  line-height: 1.4;
}
.waitlist-banner a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
  margin-left: .25rem;
}
.waitlist-banner a:hover { opacity: .85; }
.waitlist-banner-close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,.8);
  font-size: 1.25rem;
  cursor: pointer;
  padding: .25rem;
  line-height: 1;
}
.waitlist-banner-close:hover { color: #fff; }
.waitlist-banner.hidden { display: none; }

/* --- Waitlist Page --- */
.wl-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  color: #fff;
  padding: 4rem 0 3rem;
  text-align: center;
}
.wl-hero h1 { font-size: 2.2rem; font-weight: 700; margin-bottom: .75rem; color: #fff; }
.wl-hero p { font-size: 1.1rem; opacity: .9; max-width: 600px; margin: 0 auto; color: #fff; }

.wl-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 3rem 0;
}
.wl-benefit {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: box-shadow .2s;
}
.wl-benefit:hover { box-shadow: var(--shadow-md); }
.wl-benefit-icon {
  width: 56px; height: 56px;
  background: rgba(26,107,106,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}
.wl-benefit h3 { font-size: 1.05rem; margin-bottom: .5rem; color: var(--text); }
.wl-benefit p { font-size: .9rem; color: var(--text-light); line-height: 1.6; }

.wl-why {
  background: var(--bg-alt);
  padding: 3rem 0;
}
.wl-why h2 { text-align: center; margin-bottom: .75rem; }
.wl-why > .container > p { text-align: center; color: var(--text-light); max-width: 650px; margin: 0 auto 2rem; }
.wl-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}
.wl-why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.wl-why-num {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  font-weight: 700;
}
.wl-why-item h4 { font-size: .95rem; margin-bottom: .25rem; }
.wl-why-item p { font-size: .85rem; color: var(--text-light); line-height: 1.5; }

.wl-form-section { padding: 3rem 0 4rem; }
.wl-form-section h2 { text-align: center; margin-bottom: .5rem; }
.wl-form-section > .container > p { text-align: center; color: var(--text-light); margin-bottom: 2rem; }
.wl-form {
  max-width: 560px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.wl-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.wl-field { margin-bottom: 1.25rem; }
.wl-field label {
  display: block;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: .35rem;
}
.wl-field input,
.wl-field select {
  width: 100%;
  padding: .65rem .85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-family: var(--font);
  color: var(--text);
  transition: border-color .2s;
}
.wl-field input:focus,
.wl-field select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,107,106,.1);
}
.wl-field input::placeholder { color: var(--text-muted); }
.wl-checkbox {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  margin-bottom: 1rem;
}
.wl-checkbox input[type="checkbox"] {
  width: auto;
  margin-top: .2rem;
  accent-color: var(--primary);
}
.wl-checkbox label {
  font-size: .82rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 0;
}
.wl-consent {
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin-bottom: 1.5rem;
}
.wl-consent p {
  font-size: .8rem;
  color: var(--text-light);
  line-height: 1.55;
}
.wl-submit {
  width: 100%;
  padding: .85rem;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: background .2s;
}
.wl-submit:hover { background: var(--primary-dark); }
.wl-success {
  text-align: center;
  padding: 2rem;
  display: none;
}
.wl-success.show { display: block; }
.wl-success h3 { color: var(--primary); margin-bottom: .5rem; }
.wl-success p { color: var(--text-light); font-size: .92rem; }

@media (max-width: 768px) {
  .wl-benefits { grid-template-columns: 1fr; }
  .wl-why-grid { grid-template-columns: 1fr; }
  .wl-form-row { grid-template-columns: 1fr; }
  .wl-hero h1 { font-size: 1.6rem; }
}

/* Print */
@media print {
  .header, .footer, .cta-banner, .nav-toggle, .waitlist-banner { display: none; }
  .section { padding: 1.5rem 0; }
}
