/* ===== TOKENS ===== */
:root {
  --brand: #2a9d8f;
  --brand-deep: #1a7a6e;
  --brand-dark: #0f5c52;
  --brand-pale: #e6f5f2;
  --brand-glow: rgba(42, 157, 143, 0.15);
  --accent: #e9c46a;
  --accent-soft: #fdf6e3;
  --ink: #1a1a2e;
  --ink-soft: #555770;
  --ink-muted: #8e90a6;
  --bg: #fafafa;
  --bg-warm: #f5f3ef;
  --surface: #ffffff;
  --line: rgba(0, 0, 0, 0.08);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.07);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.08);
  --radius: 16px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --max-w: 1200px;
  --transition: 200ms ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
ul, ol { list-style: none; }

/* ===== UTILITY ===== */
.container { width: min(100% - 2rem, var(--max-w)); margin: 0 auto; }
.section { padding: 6rem 0; }
.label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 1rem;
}
.section h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  max-width: 20ch;
}
.section-sub {
  color: var(--ink-soft);
  max-width: 60ch;
  font-size: 1.05rem;
  margin-bottom: 3rem;
}
.optional { color: var(--ink-muted); font-weight: 400; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 4px 14px rgba(42, 157, 143, 0.3);
}
.btn-primary:hover { background: var(--brand-deep); box-shadow: 0 6px 20px rgba(42, 157, 143, 0.35); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-outline:hover { border-color: var(--brand); color: var(--brand); }
.btn-white { background: #fff; color: var(--brand-dark); }
.btn-white:hover { background: var(--brand-pale); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.88rem; }
.btn-lg { padding: 0.95rem 2rem; font-size: 1rem; }
.btn-full { width: 100%; }

/* ===== TOPBAR ===== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.04);
}
.topbar-inner {
  width: min(100% - 2rem, var(--max-w));
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 86px;
  gap: 2.25rem;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-mark-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.logo-mark {
  height: 54px;
  width: 54px;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(42, 157, 143, 0.16);
}
.logo-wordmark {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}
.logo-name {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
  white-space: nowrap;
}
.logo-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  white-space: nowrap;
}
.nav { display: flex; align-items: center; gap: 1.8rem; margin-left: auto; }
.nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink-soft);
  transition: color var(--transition);
}
.nav a:hover { color: var(--ink); }
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-left: 1.25rem;
}
.topbar-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.12rem;
  text-decoration: none;
  color: var(--ink);
}
.topbar-phone-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.topbar-phone-number {
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.01em;
}
.topbar-cta {
  padding-inline: 1.35rem;
  box-shadow: 0 10px 24px rgba(42, 157, 143, 0.22);
}
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ===== MOBILE NAV ===== */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  top: 72px;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  z-index: 99;
  padding: 2rem;
}
.mobile-nav-overlay.active { display: block; }
.mobile-nav-overlay nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mobile-nav-overlay a {
  display: block;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--ink);
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.mobile-nav-overlay a:hover { background: var(--brand-pale); }
.mobile-nav-overlay .btn { margin-top: 1rem; text-align: center; }

/* ===== MOBILE BAR ===== */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 0.6rem 1rem;
  gap: 0.6rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
.mobile-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
}
.mobile-bar-phone {
  background: var(--brand-pale);
  color: var(--brand-dark);
}
.mobile-bar-wa {
  background: #25d366;
  color: #fff;
}
.mobile-bar-email {
  background: var(--brand-deep);
  color: #fff;
}
.mobile-bar-cta {
  background: var(--brand);
  color: #fff;
}

/* ===== HERO ===== */
.hero {
  width: min(100% - 2rem, var(--max-w));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0 5rem;
}
.hero-badge {
  display: inline-grid;
  gap: 0.6rem;
  padding: 1rem 1.1rem;
  background: linear-gradient(135deg, var(--brand-pale) 0%, #f2fbf8 100%);
  color: var(--brand-dark);
  border: 1px solid rgba(42, 157, 143, 0.16);
  border-radius: 20px;
  margin-bottom: 1.5rem;
  max-width: 42rem;
  box-shadow: var(--shadow-sm);
}
.hero-badge-top {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.5;
}
.hero-badge-icon {
  flex-shrink: 0;
  margin-top: 0.16rem;
}
.hero-badge-emphasis {
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.35;
}
.hero-badge-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.hero-badge-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(42, 157, 143, 0.12);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 12ch;
}
.hero-sub {
  margin-top: 1.5rem;
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 46ch;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}
.hero-image { position: relative; }

/* ===== TICKER ===== */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  padding: 1rem 0;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  animation: scroll-ticker 25s linear infinite;
  width: max-content;
}
.ticker-track span {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink-soft);
  white-space: nowrap;
}
.ticker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
}
@keyframes scroll-ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== PAIN POINTS ===== */
.pain-section { background: var(--bg-warm); }
.pain-section h2 { max-width: 30ch; }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.pain-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--line);
  transition: box-shadow var(--transition), transform var(--transition);
}
.pain-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.pain-icon { margin-bottom: 1rem; }
.pain-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 0.75rem;
}
.pain-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* ===== SERVICES ===== */
.services-section { background: var(--surface); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.service-card {
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: all var(--transition);
  overflow: hidden;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--brand);
}
.service-card-inner { padding: 2rem; }
.service-tag {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: var(--brand);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.service-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.service-card p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.65;
}
.service-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--brand);
  text-decoration: none;
}
.service-link:hover { color: var(--brand-dark); }
.service-card-featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--brand-pale) 0%, #f0faf7 100%);
  border-color: rgba(42, 157, 143, 0.2);
}
.service-card-featured .service-card-inner {
  max-width: 640px;
}

/* ===== ABOUT ===== */
.about-section { background: var(--bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}
.about-image-placeholder {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--brand-pale) 0%, #c9e4df 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-content h2 { max-width: 22ch; }
.about-content p {
  color: var(--ink-soft);
  margin-bottom: 1rem;
  font-size: 1.02rem;
  line-height: 1.7;
}
.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.about-stat {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.about-stat strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  color: var(--brand);
  line-height: 1;
}
.about-stat span {
  font-size: 0.85rem;
  color: var(--ink-muted);
  display: block;
}

/* ===== ABOUT PHOTO ===== */
.about-photo {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 16 / 9;
  margin-bottom: 1rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--surface);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.testimonial-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.testimonial-card p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink);
  font-style: italic;
  flex: 1;
}
.testimonial-card footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.testimonial-card strong {
  display: block;
  font-size: 0.95rem;
}
.testimonial-card footer span {
  font-size: 0.82rem;
  color: var(--ink-muted);
}
.testimonial-disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--ink-muted);
  margin-top: 1.5rem;
  font-style: italic;
}

/* ===== FAQ ===== */
.faq-section {
  background: var(--surface);
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.faq-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.faq-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.22rem;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}
.faq-card p {
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.7;
}

.page-directory-section {
  background: var(--bg-warm);
}
.page-directory-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.page-directory-card {
  display: block;
  text-decoration: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.page-directory-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(42, 157, 143, 0.35);
}
.page-directory-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
}
.page-directory-card p {
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 0.94rem;
}

/* ===== SUBPAGES ===== */
.subpage-main {
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}
.subpage-hero {
  padding: 4rem 0 2.5rem;
  background:
    radial-gradient(circle at top left, rgba(42, 157, 143, 0.12), transparent 35%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfa 100%);
}
.subpage-hero-inner {
  width: min(100% - 2rem, var(--max-w));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}
.subpage-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 12ch;
}
.subpage-intro {
  margin-top: 1.25rem;
  max-width: 50ch;
  font-size: 1.08rem;
  color: var(--ink-soft);
  line-height: 1.75;
}
.subpage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}
.subpage-highlight {
  background: var(--surface);
  border: 1px solid rgba(42, 157, 143, 0.14);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
}
.subpage-highlight h2,
.subpage-highlight h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  margin-bottom: 0.9rem;
}
.subpage-highlight p,
.subpage-highlight li {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}
.subpage-highlight ul,
.subpage-list,
.link-list {
  display: grid;
  gap: 0.7rem;
}
.subpage-content {
  padding: 1rem 0 5rem;
}
.subpage-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  gap: 1.5rem;
  align-items: start;
}
.subpage-primary,
.subpage-secondary {
  display: grid;
  gap: 1.25rem;
}
.subpage-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.subpage-panel h2,
.subpage-panel h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}
.subpage-panel p {
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 0.9rem;
}
.subpage-panel p:last-child {
  margin-bottom: 0;
}
.subpage-list li,
.link-list li {
  color: var(--ink-soft);
  line-height: 1.7;
}
.subpage-list strong,
.link-list strong {
  color: var(--ink);
}
.link-list a {
  text-decoration: none;
  color: var(--brand-dark);
  font-weight: 700;
}
.link-list a:hover {
  color: var(--brand);
}
.subpage-note {
  font-size: 0.84rem;
  color: var(--ink-muted);
}
.subpage-kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1rem;
}
.subpage-kpi {
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: var(--bg);
  border: 1px solid var(--line);
}
.subpage-kpi strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.45rem;
  color: var(--brand);
  line-height: 1;
}
.subpage-kpi span {
  display: block;
  margin-top: 0.35rem;
  color: var(--ink-muted);
  font-size: 0.82rem;
}

/* ===== HOW IT WORKS ===== */
.how-section { background: var(--bg-warm); }
.how-section h2 { max-width: 20ch; }
.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 3rem;
}
.step-card {
  flex: 1;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--line);
}
.step-num {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.step-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.step-card p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.65;
}
.step-arrow {
  display: flex;
  align-items: center;
  padding-top: 3rem;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, rgba(15,92,82,0.88) 0%, rgba(42,157,143,0.85) 50%, rgba(26,122,110,0.88) 100%);
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 5rem 0;
  position: relative;
}
.cta-banner[style*="background-image"] {
  background-blend-mode: overlay;
}
.cta-banner h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin: 0 auto 1rem;
}
.cta-banner p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 45ch;
  margin: 0 auto 2rem;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===== CONTACT ===== */
.contact-section { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { max-width: 18ch; }
.contact-info > p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all var(--transition);
}
a.contact-method:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-sm);
}
.contact-method-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand-pale);
  color: var(--brand);
  flex-shrink: 0;
}
.contact-method-icon-wa {
  background: #e7fae9;
  color: #25d366;
}
.contact-method strong {
  display: block;
  font-size: 0.95rem;
}
.contact-method span {
  font-size: 0.82rem;
  color: var(--ink-muted);
}
.fca-box {
  margin-top: 2rem;
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.fca-box p {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 0.25rem;
  line-height: 1.5;
}
.fca-box p:last-child { margin-bottom: 0; }

/* ===== CONTACT FORM ===== */
.contact-form-wrap { position: relative; }
.contact-form {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.contact-form h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}
.contact-form > p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
  color: var(--ink);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-xs);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23555770' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-glow);
}
.form-small {
  text-align: center;
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-top: 0.75rem;
}

/* ===== FORM SUCCESS ===== */
.form-success {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.success-icon { margin-bottom: 1rem; }
.form-success h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.form-success p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.form-success a { color: var(--brand); font-weight: 700; }

/* ===== FOOTER ===== */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0 2rem;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand img { height: 40px; filter: brightness(0) invert(1); }
.footer-links-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
}
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; }
.footer-links a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: #fff; }
.footer-links-secondary a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}
.footer-bottom { padding-top: 2rem; }
.footer-legal p {
  font-size: 0.82rem;
  line-height: 1.6;
  margin-bottom: 0.4rem;
}
.footer-disclaimer {
  margin-top: 1rem;
  font-size: 0.78rem;
  opacity: 0.6;
  max-width: 80ch;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== GOOGLE REVIEWS STRIP ===== */
.reviews-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 0;
}
.reviews-strip-inner {
  width: min(100% - 2rem, var(--max-w));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.reviews-stars { display: flex; gap: 2px; }
.reviews-text { font-size: 0.88rem; color: var(--ink-soft); }
.reviews-text strong { color: var(--ink); }
.reviews-divider {
  width: 1px;
  height: 18px;
  background: var(--line);
}
.reviews-fca {
  font-size: 0.82rem;
  color: var(--ink-muted);
  font-weight: 600;
}

/* ===== HERO PHOTO ===== */
.hero-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}
.hero-trust-stack {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  white-space: nowrap;
}
.trust-item svg { flex-shrink: 0; }
.trust-item strong {
  font-size: 0.82rem;
  line-height: 1;
}

/* ===== LIFE STAGES ===== */
.stages-section { background: var(--bg-warm); }
.stages-section h2 { max-width: 26ch; }
.stages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.stage-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  border: 1px solid var(--line);
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}
.stage-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.stage-emoji {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  line-height: 1;
}
.stage-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.stage-card p {
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1180px) {
  .topbar-inner { gap: 1.5rem; }
  .logo-tag,
  .topbar-phone-label { display: none; }
  .nav { gap: 1.25rem; }
}

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 0 4rem; }
  .hero h1 { max-width: 16ch; }
  .hero-image { max-width: 520px; }
  .stages-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card-featured { grid-column: 1 / -1; }
  .page-directory-grid { grid-template-columns: repeat(2, 1fr); }
  .subpage-hero-inner,
  .subpage-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-grid .testimonial-card:last-child { display: none; }
  .faq-grid { grid-template-columns: 1fr 1fr; }
  .topbar-inner { gap: 1.25rem; }
  .logo-name { font-size: 1.12rem; }
  .nav { gap: 1rem; }
  .topbar-phone-number { font-size: 0.94rem; }
  .topbar-cta { padding-inline: 1.1rem; }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .nav, .topbar-actions { display: none; }
  .hamburger { display: flex; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 72px; }
  .topbar-inner { height: 78px; }
  .logo-mark { height: 48px; width: 48px; }
  .logo-name { font-size: 1.06rem; }
  .logo-tag { display: none; }

  .hero { padding: 2rem 0 3rem; }
  .hero h1 { font-size: clamp(2.2rem, 8vw, 3rem); }
  .hero-badge { padding: 0.95rem 1rem; }
  .subpage-hero { padding: 2.5rem 0 1.75rem; }
  .subpage-hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .subpage-actions { flex-direction: column; }
  .subpage-actions .btn { width: 100%; }
  .subpage-kpi-grid { grid-template-columns: 1fr; }

  .pain-grid { grid-template-columns: 1fr; }
  .stages-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .page-directory-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-grid .testimonial-card:last-child { display: block; }

  .about-stats { gap: 1.5rem; }
  .about-stat strong { font-size: 1.6rem; }

  .form-row { grid-template-columns: 1fr; }

  .footer-top { flex-direction: column; gap: 1.5rem; text-align: center; }
  .footer-links-wrap { width: 100%; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 1rem; }
}

@media (max-width: 480px) {
  .container { width: min(100% - 1.5rem, var(--max-w)); }
  .hero-badge-top { font-size: 0.85rem; }
  .hero-badge-emphasis { font-size: 0.95rem; }
  .hero-badge-chip { font-size: 0.68rem; }
  .hero-sub { font-size: 1rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .contact-form { padding: 1.5rem; }
  .cta-banner { padding: 3.5rem 0; }
}

/* ===== QUIZ ===== */
.quiz-section { background: var(--surface); }
.quiz-wrapper {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.quiz-intro h2 {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.quiz-intro p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 50ch;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.quiz-note {
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-top: 0.75rem;
}
.quiz-body {
  text-align: center;
}
.quiz-progress {
  height: 6px;
  background: var(--line);
  border-radius: 999px;
  margin-bottom: 2.5rem;
  overflow: hidden;
}
.quiz-progress-bar {
  height: 100%;
  background: var(--brand);
  border-radius: 999px;
  transition: width 0.4s ease;
  width: 0%;
}
.quiz-step h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.quiz-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.quiz-opt {
  padding: 1.1rem 1.25rem;
  background: var(--bg);
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  cursor: pointer;
  transition: all var(--transition);
}
.quiz-opt:hover {
  border-color: var(--brand);
  background: var(--brand-pale);
  color: var(--brand-dark);
}
.quiz-result-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.quiz-result-badge.badge-action {
  background: #fef3cd;
  color: #856404;
}
.quiz-result-badge.badge-good {
  background: var(--brand-pale);
  color: var(--brand-dark);
}
.quiz-result p {
  color: var(--ink-soft);
  max-width: 48ch;
  margin: 0 auto;
  line-height: 1.7;
}
.quiz-capture {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.quiz-capture-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 1rem;
}
.quiz-form {
  display: grid;
  gap: 0.75rem;
  max-width: 400px;
  margin: 0 auto;
}
.quiz-form input {
  width: 100%;
  padding: 0.85rem 1rem;
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-xs);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.quiz-form input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-glow);
}
.quiz-capture-note {
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-top: 0.75rem;
}
.quiz-thanks-icon {
  margin-bottom: 1rem;
}

/* ===== ABOUT VALUES ===== */
.about-values {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.value-card {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: box-shadow var(--transition);
}
.value-card:hover { box-shadow: var(--shadow-sm); }
.value-card svg { flex-shrink: 0; margin-top: 2px; }
.value-card h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.value-card p {
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* ===== TESTIMONIAL STARS ===== */
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}

/* ===== REFERRAL ===== */
.referral-section { background: var(--bg-warm); }
.referral-card {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 3rem;
  align-items: center;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  padding: 3rem;
}
.referral-content h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  max-width: 20ch;
}
.referral-content p {
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 50ch;
}
.referral-ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.referral-stat {
  text-align: center;
  padding: 2rem;
  background: var(--brand-pale);
  border-radius: var(--radius);
}
.referral-stat-number {
  font-family: 'Fraunces', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
}
.referral-stat-label {
  font-size: 0.92rem;
  color: var(--brand-dark);
  margin-top: 0.5rem;
  line-height: 1.4;
}

/* ===== FOOTER SOCIAL ===== */
.footer-social {
  display: flex;
  gap: 1rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}
.footer-social a:hover {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 1024px) {
  .referral-card { grid-template-columns: 1fr; }
  .referral-stat { max-width: 300px; }
  .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .quiz-options { grid-template-columns: 1fr; }
  .referral-card { padding: 2rem; }
  .referral-ctas { flex-direction: column; }
  .referral-ctas .btn { width: 100%; }
  .reviews-strip-inner { justify-content: center; }
  .reviews-divider { display: none; }
  .reviews-fca { display: none; }
  .footer-social { justify-content: center; }
}

@media (max-width: 480px) {
  .referral-card { padding: 1.5rem; }
}

/* Hide mobile bar on desktop */
@media (min-width: 769px) {
  .mobile-bar { display: none !important; }
}
