:root {
  --mint: #9FE1CB;
  --teal: #1D9E75;
  --mid: #0F6E56;
  --forest: #085041;
  --deep: #04342C;
  --sage: #F0FBF7;
  --sage2: #E1F5EE;
  --white: #ffffff;
  --charcoal: #2C2C2A;
  --muted: #5F5E5A;
  --light: #D3D1C7;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'DM Serif Display', serif; font-weight: 400; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(4,52,44,0.97);
  backdrop-filter: blur(12px);
  padding: 0 40px;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(159,225,203,0.15);
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-mark {
  width: 36px; height: 36px; background: var(--mint);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-wordmark {
  font-family: 'DM Serif Display', serif;
  font-size: 22px; color: var(--white); letter-spacing: -0.5px;
}
.nav-wordmark span { color: var(--mint); }
.nav-right { display: flex; align-items: center; gap: 28px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  color: rgba(255,255,255,0.7); text-decoration: none;
  font-size: 14px; font-weight: 500; letter-spacing: 0.3px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--mint); }
.nav-cta {
  background: var(--teal); color: var(--white) !important;
  padding: 9px 20px; border-radius: 6px; font-weight: 600 !important;
  transition: background 0.2s !important;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--mid) !important; }
.cta-short { display: none; }

/* Hamburger toggle — hidden on desktop, shown under 768px */
.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 36px; height: 36px;
  background: transparent; border: none; cursor: pointer;
  padding: 0; flex-shrink: 0;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--deep);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 100px 40px 60px;
}
.hero-bg-circle1 {
  position: absolute; right: -120px; top: -120px;
  width: 600px; height: 600px; border-radius: 50%;
  background: var(--forest); opacity: 0.7;
}
.hero-bg-circle2 {
  position: absolute; right: 80px; bottom: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: var(--mid); opacity: 0.4;
}
.hero-bg-circle3 {
  position: absolute; right: 300px; top: 80px;
  width: 160px; height: 160px; border-radius: 50%;
  background: var(--teal); opacity: 0.25;
}
.hero-accent { position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--mint); }
.hero-strip { position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: var(--teal); }
.hero-inner { max-width: 1100px; margin: 0 auto; width: 100%; position: relative; z-index: 2; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(159,225,203,0.15); border: 1px solid rgba(159,225,203,0.3);
  color: var(--mint); font-size: 12px; font-weight: 600;
  letter-spacing: 2px; padding: 6px 14px; border-radius: 20px;
  margin-bottom: 28px; text-transform: uppercase;
}
.hero-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--mint); }
.hero h1 {
  font-size: clamp(42px, 6vw, 80px);
  color: var(--white); line-height: 1.05;
  margin-bottom: 24px; max-width: 700px;
}
.hero h1 em { color: var(--mint); font-style: italic; }
.hero-sub {
  font-size: 18px; color: rgba(255,255,255,0.65);
  line-height: 1.7; max-width: 520px; margin-bottom: 44px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }
.btn-main {
  background: var(--teal); color: var(--white);
  padding: 16px 32px; border-radius: 8px;
  font-size: 16px; font-weight: 600; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-main:hover { background: var(--mid); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--mint);
  border: 1px solid rgba(159,225,203,0.4);
  padding: 16px 32px; border-radius: 8px;
  font-size: 16px; font-weight: 500; text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-ghost:hover { border-color: var(--mint); background: rgba(159,225,203,0.08); }
.hero-stats { display: flex; gap: 48px; flex-wrap: wrap; }
.hero-stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 40px; color: var(--mint); line-height: 1;
}
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 4px; }

/* ── SOCIAL PROOF BAR ── */
.proof-bar {
  background: var(--sage); border-top: 1px solid var(--sage2);
  border-bottom: 1px solid var(--sage2);
  padding: 20px 40px;
  display: flex; align-items: center; justify-content: center; gap: 48px;
  flex-wrap: wrap;
}
.proof-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500; color: var(--forest);
}
.proof-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--sage2); border: 1px solid var(--mint);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
}

/* ── SECTION BASICS ── */
section { padding: 100px 40px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-tag {
  font-size: 11px; font-weight: 600; letter-spacing: 3px;
  color: var(--teal); text-transform: uppercase; margin-bottom: 16px;
}
.section-title {
  font-size: clamp(32px, 4vw, 52px); color: var(--deep);
  line-height: 1.1; margin-bottom: 16px;
}
.section-title em { color: var(--teal); font-style: italic; }
.section-sub { font-size: 17px; color: var(--muted); line-height: 1.7; max-width: 580px; }

/* ── ABOUT ── */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 60px; }
.about-visual {
  position: relative;
}
.about-card {
  background: var(--deep); border-radius: 16px;
  padding: 40px; color: var(--white);
  position: relative; overflow: hidden;
}
.about-card::before {
  content: ''; position: absolute;
  right: -40px; top: -40px;
  width: 180px; height: 180px; border-radius: 50%;
  background: var(--forest);
}
.about-card-mark {
  width: 64px; height: 64px; background: var(--mint);
  border-radius: 12px; margin-bottom: 24px;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.about-name { font-family: 'DM Serif Display', serif; font-size: 28px; color: var(--white); margin-bottom: 4px; position: relative; z-index: 1; }
.about-role { font-size: 14px; color: var(--mint); margin-bottom: 20px; position: relative; z-index: 1; letter-spacing: 1px; }
.about-badges { display: flex; flex-direction: column; gap: 10px; position: relative; z-index: 1; }
.about-badge {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,0.8);
}
.about-badge::before { content: '✦'; color: var(--mint); font-size: 10px; flex-shrink: 0; }
.about-float {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--mint); border-radius: 12px;
  padding: 16px 20px; min-width: 140px;
  box-shadow: 0 8px 32px rgba(4,52,44,0.2);
}
.about-float-num { font-family: 'DM Serif Display', serif; font-size: 32px; color: var(--deep); }
.about-float-label { font-size: 11px; color: var(--forest); font-weight: 600; letter-spacing: 1px; margin-top: 2px; }
.about-content p { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 20px; }
.about-content strong { color: var(--deep); font-weight: 600; }
.about-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.about-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; color: var(--charcoal); line-height: 1.5;
}
.about-list li::before { content: '✦'; color: var(--teal); font-size: 10px; margin-top: 5px; flex-shrink: 0; }
.accreditation-block {
  margin-top: 32px;
  background: var(--sage);
  border: 1px solid var(--sage2);
  border-left: 4px solid var(--teal);
  border-radius: 0 12px 12px 0;
  padding: 24px 28px;
}
.accreditation-block .accred-title {
  font-family: 'DM Serif Display', serif;
  font-size: 17px; color: var(--deep);
  margin-bottom: 8px; display: flex; align-items: center; gap: 8px;
}
.accreditation-block .accred-title::before { content: '🎓'; font-size: 18px; }
.accreditation-block p {
  font-size: 15px; color: var(--muted); line-height: 1.75; margin: 0;
}
.accred-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.accred-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--white); border: 1px solid var(--mint);
  color: var(--forest); font-size: 12px; font-weight: 600;
  padding: 5px 12px; border-radius: 20px; letter-spacing: 0.3px;
}
.accred-badge::before { content: '✓'; color: var(--teal); font-weight: 700; }

/* ── SERVICES ── */
.services { background: var(--sage); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.service-card {
  background: var(--white); border-radius: 16px;
  padding: 32px; border: 1px solid var(--sage2);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative; overflow: hidden;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(4,52,44,0.1); }
.service-card.featured {
  background: var(--deep); border-color: var(--teal);
}
.service-card.featured::after {
  content: 'MOST POPULAR';
  position: absolute; top: 16px; right: 16px;
  background: var(--mint); color: var(--deep);
  font-size: 9px; font-weight: 700; letter-spacing: 2px;
  padding: 4px 10px; border-radius: 20px;
}
.service-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--sage2); margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.service-card.featured .service-icon { background: var(--forest); }
.service-name { font-family: 'DM Serif Display', serif; font-size: 22px; color: var(--deep); margin-bottom: 8px; }
.service-card.featured .service-name { color: var(--white); }
.service-desc { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
.service-card.featured .service-desc { color: rgba(255,255,255,0.65); }
.service-features { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.service-features li { display: flex; gap: 8px; font-size: 14px; color: var(--charcoal); }
.service-features li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }
.service-card.featured .service-features li { color: rgba(255,255,255,0.8); }
.service-card.featured .service-features li::before { color: var(--mint); }
.service-price { margin-bottom: 24px; }
.service-price-main { font-family: 'DM Serif Display', serif; font-size: 36px; color: var(--deep); }
.service-card.featured .service-price-main { color: var(--mint); }
.service-price-period { font-size: 14px; color: var(--muted); }
.service-card.featured .service-price-period { color: rgba(255,255,255,0.5); }
.service-cta {
  display: block; text-align: center;
  padding: 12px; border-radius: 8px;
  font-size: 14px; font-weight: 600; text-decoration: none;
  transition: all 0.2s;
}
.service-cta-light { background: var(--sage); color: var(--teal); border: 1px solid var(--sage2); }
.service-cta-light:hover { background: var(--sage2); }
.service-cta-dark { background: var(--teal); color: var(--white); }
.service-cta-dark:hover { background: var(--mid); }

/* ── DIAGNOSTIC ── */
.diagnostic { background: var(--sage); }
.diag-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; margin-top: 0; max-width: 760px; }
.diag-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin: 32px 0; }
.diag-list li { display: flex; align-items: center; gap: 14px; font-size: 16px; font-weight: 600; color: var(--deep); }
.diag-icon { font-size: 20px; width: 36px; flex-shrink: 0; }
.rag-guide { background: var(--white); border-radius: 12px; padding: 24px 28px; border: 1px solid var(--sage2); margin-bottom: 28px; }
.rag-title { font-family: 'DM Serif Display', serif; font-size: 18px; color: var(--deep); margin-bottom: 16px; border-bottom: 2px solid var(--sage2); padding-bottom: 10px; }
.rag-bands { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.rag-band { border-radius: 8px; padding: 12px 10px; text-align: center; }
.rag-band.red { background: #FEE2E2; border-top: 3px solid #EF4444; }
.rag-band.amber { background: #FEF3C7; border-top: 3px solid #F59E0B; }
.rag-band.yellow { background: #FEFCE8; border-top: 3px solid #EAB308; }
.rag-band.green { background: #DCFCE7; border-top: 3px solid #22C55E; }
.rag-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.5px; margin-bottom: 4px; }
.rag-band.red .rag-label { color: #B91C1C; }
.rag-band.amber .rag-label { color: #B45309; }
.rag-band.yellow .rag-label { color: #854D0E; }
.rag-band.green .rag-label { color: #15803D; }
.rag-desc { display: block; font-size: 11px; color: var(--muted); }
.diag-cta-block { background: var(--deep); border-radius: 12px; padding: 24px 28px; color: var(--white); }
.diag-cta-heading { font-family: 'DM Serif Display', serif; font-size: 20px; color: var(--mint); margin-bottom: 8px; }
.diag-cta-block p { font-size: 14px; color: rgba(255,255,255,0.7); margin: 0; }
.diag-visual { position: relative; }
@media (max-width: 768px) {
  .rag-bands { grid-template-columns: repeat(2, 1fr); }
}

/* ── TESTIMONIALS ── */
.testimonials { background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.testimonial-card {
  background: var(--sage); border-radius: 16px; padding: 32px;
  border: 1px solid var(--sage2); position: relative;
}
.testimonial-card.featured { background: var(--deep); border-color: var(--teal); }
.testimonial-stars { color: var(--teal); font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card.featured .testimonial-stars { color: var(--mint); }
.testimonial-quote {
  font-family: 'DM Serif Display', serif;
  font-size: 17px; line-height: 1.6; color: var(--deep);
  margin-bottom: 24px; font-style: italic;
}
.testimonial-card.featured .testimonial-quote { color: var(--white); }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--mint); display: flex; align-items: center;
  justify-content: center; font-weight: 700; font-size: 14px;
  color: var(--deep); flex-shrink: 0;
}
.testimonial-card.featured .testimonial-avatar { background: var(--forest); color: var(--mint); }
.testimonial-avatar-logo { background: var(--white); padding: 4px; overflow: hidden; }
.testimonial-card.featured .testimonial-avatar-logo { background: var(--white); }
.testimonial-avatar-logo img { width: 100%; height: 100%; object-fit: contain; display: block; }
.testimonial-card.wide { grid-column: span 3; }
.testimonials-grid-single { max-width: 900px; margin: 40px auto 0; }
.testimonials-grid-two { grid-template-columns: repeat(2, 1fr); margin-top: 40px; }
.testimonials-grid-three { grid-template-columns: repeat(3, 1fr); margin-top: 40px; }
@media (max-width: 1100px) {
  .testimonials-grid-three { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .testimonial-card.wide { grid-column: span 1; }
  .testimonials-grid-two { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .testimonials-grid-three { grid-template-columns: 1fr; }
}

/* Side-by-side testimonial layout (logo beside the quote) */
.testimonial-side-by-side {
  display: flex; flex-direction: column; gap: 18px; padding: 28px 28px 24px; height: 100%;
}
.testimonial-side-logo {
  flex-shrink: 0; width: 100%; height: 88px;
  background: var(--white); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  padding: 12px 20px; overflow: hidden;
}
.testimonial-side-logo img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; }
.testimonial-side-content { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.testimonial-side-content .testimonial-stars { margin-bottom: 8px; }
.testimonial-quote-compact { font-size: 14px; line-height: 1.5; margin-bottom: 14px; flex: 1; }
.testimonials-grid-three .testimonial-quote-compact { font-size: 13px; line-height: 1.48; }
.testimonial-side-content .testimonial-author { margin-top: auto; }
@media (min-width: 701px) and (max-width: 900px) {
  .testimonial-side-logo { width: 160px; height: 110px; }
}
@media (max-width: 640px) {
  .testimonials-grid-three .testimonial-quote-compact { font-size: 14px; }
}

/* Readable testimonial layout — logo-on-top, generous type, clean stack.
   Designed to read comfortably at any width, mobile included. */
.testimonials-grid-readable {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 40px;
}
.testimonial-card-readable {
  background: var(--sage); border: 1px solid var(--sage2); border-radius: 16px;
  padding: 32px; display: flex; flex-direction: column; gap: 18px;
}
.testimonial-card-readable .testimonial-top {
  display: flex; align-items: center; gap: 16px;
}
.testimonial-card-readable .testimonial-logo {
  flex-shrink: 0; width: 76px; height: 76px; border-radius: 10px;
  background: var(--white); display: flex; align-items: center; justify-content: center;
  padding: 8px; overflow: hidden;
}
.testimonial-card-readable .testimonial-logo img {
  max-width: 100%; max-height: 100%; object-fit: contain; display: block;
}
.testimonial-card-readable .testimonial-top-text { min-width: 0; }
.testimonial-card-readable .testimonial-name {
  font-family: 'DM Serif Display', serif; font-size: 19px; color: var(--deep); line-height: 1.3;
}
.testimonial-card-readable .testimonial-stars {
  color: var(--teal); font-size: 15px; letter-spacing: 2px; margin-top: 4px;
}
.testimonial-card-readable .testimonial-quote-readable {
  font-size: 16px; line-height: 1.75; color: var(--deep); margin: 0;
}
.testimonial-card-readable .testimonial-quote-readable::before { content: "\201C"; }
.testimonial-card-readable .testimonial-quote-readable::after { content: "\201D"; }
@media (max-width: 900px) {
  .testimonials-grid-readable { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .testimonial-card-readable { padding: 24px 20px; }
  .testimonial-card-readable .testimonial-logo { width: 60px; height: 60px; }
  .testimonial-card-readable .testimonial-name { font-size: 17px; }
  .testimonial-card-readable .testimonial-quote-readable { font-size: 15px; line-height: 1.7; }
}

/* Compact page-header / CTA variants — used on pages where the
   whole route should fit closer to a single viewport. */
.page-header-compact { padding: 130px 40px 40px; }
.page-header-compact .page-header-sub { max-width: 620px; }
.testimonials-compact { padding-top: 0; padding-bottom: 28px; }
.page-cta-compact { padding: 36px 40px; }
.page-cta-compact .page-cta-inner { max-width: 560px; }
.page-cta-compact h3 { font-size: clamp(20px, 2.4vw, 26px); margin-bottom: 6px; }
.page-cta-compact p { margin-bottom: 16px; font-size: 14px; }
@media (max-width: 768px) {
  .page-header-compact { padding: 110px 20px 32px; }
}
.testimonial-name { font-size: 14px; font-weight: 600; color: var(--deep); }
.testimonial-card.featured .testimonial-name { color: var(--white); }
.testimonial-role { font-size: 12px; color: var(--muted); }
.testimonial-card.featured .testimonial-role { color: rgba(255,255,255,0.5); }

/* ── CREDENTIALS ── */
.credentials { background: var(--deep); padding: 80px 40px; }
.creds-inner { max-width: 1100px; margin: 0 auto; }
.creds-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 60px; }
.cred-box {
  background: var(--forest); padding: 32px 24px; text-align: center;
  border: 1px solid rgba(159,225,203,0.1);
}
.cred-box:first-child { border-radius: 16px 0 0 16px; }
.cred-box:last-child { border-radius: 0 16px 16px 0; }
.cred-num { font-family: 'DM Serif Display', serif; font-size: 48px; color: var(--mint); line-height: 1; }
.cred-label { font-size: 12px; color: rgba(255,255,255,0.5); letter-spacing: 1.5px; margin-top: 8px; text-transform: uppercase; }

/* ── DISCOVERY CALL ── */
.discovery { background: var(--teal); padding: 100px 40px; position: relative; overflow: hidden; }
.discovery::before {
  content: ''; position: absolute;
  right: -100px; top: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: var(--mid); opacity: 0.5;
}
.discovery::after {
  content: ''; position: absolute;
  left: -60px; bottom: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: var(--forest); opacity: 0.4;
}
.discovery-inner { max-width: 700px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.discovery h2 { font-size: clamp(32px, 4vw, 52px); color: var(--white); margin-bottom: 16px; }
.discovery p { font-size: 18px; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 40px; }
.discovery-form {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px; padding: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 12px; color: rgba(255,255,255,0.7); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.form-field input, .form-field select {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px; padding: 12px 16px; color: var(--white);
  font-size: 15px; font-family: 'DM Sans', sans-serif;
  outline: none; transition: border-color 0.2s;
  width: 100%;
}
.form-field input::placeholder { color: rgba(255,255,255,0.4); }
.form-field input:focus, .form-field select:focus { border-color: var(--mint); }
.form-field select option { background: var(--deep); color: var(--white); }
.form-submit {
  width: 100%; background: var(--white); color: var(--teal);
  border: none; border-radius: 8px; padding: 16px;
  font-size: 16px; font-weight: 700; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s, transform 0.15s;
  margin-top: 8px;
}
.form-submit:hover { background: var(--mint); transform: translateY(-1px); }
.form-note { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 12px; }

/* ── FOOTER ── */
footer {
  background: var(--deep); padding: 60px 40px 32px;
  border-top: 1px solid rgba(159,225,203,0.1);
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 48px; }
.footer-brand .footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 26px; color: var(--white); margin-bottom: 16px;
}
.footer-brand .footer-logo span { color: var(--mint); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 20px; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact a { font-size: 14px; color: var(--mint); text-decoration: none; }
.footer-col h4 { font-size: 12px; color: rgba(255,255,255,0.4); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--mint); }
.footer-bottom {
  border-top: 1px solid rgba(159,225,203,0.1);
  padding-top: 24px; display: flex; flex-direction: column; gap: 16px;
}
.footer-bottom-row {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-badges { display: flex; gap: 8px; }
.footer-badge {
  background: rgba(159,225,203,0.1); border: 1px solid rgba(159,225,203,0.2);
  color: var(--mint); font-size: 10px; font-weight: 600;
  padding: 4px 10px; border-radius: 20px; letter-spacing: 0.5px;
}

/* ── STICKY SCROLL CTA ── */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 99;
  background: var(--deep); border-top: 2px solid var(--teal);
  padding: 14px 40px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.35s ease;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-text { color: var(--white); font-size: 15px; font-weight: 500; }
.sticky-cta-text strong { color: var(--mint); }
.sticky-cta-btn {
  background: var(--teal); color: var(--white);
  padding: 10px 24px; border-radius: 6px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  white-space: nowrap; transition: background 0.2s; flex-shrink: 0;
}
.sticky-cta-btn:hover { background: var(--mid); }
.sticky-cta-spaces {
  background: rgba(159,225,203,0.15); border: 1px solid rgba(159,225,203,0.3);
  color: var(--mint); font-size: 12px; font-weight: 600;
  padding: 4px 12px; border-radius: 20px; letter-spacing: 1px; white-space: nowrap;
}

/* ── RISK REVERSAL BAND ── */
.risk-band {
  background: var(--sage); border-top: 1px solid var(--sage2);
  border-bottom: 1px solid var(--sage2);
  padding: 32px 40px;
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap; text-align: center;
}
.risk-item { display: flex; flex-direction: column; align-items: center; gap: 8px; max-width: 200px; }
.risk-icon { font-size: 28px; }
.risk-label { font-size: 13px; font-weight: 600; color: var(--forest); line-height: 1.4; }

/* ── FAQ ── */
.faq { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 56px; }
.faq-item {
  border: 1px solid var(--sage2); border-radius: 12px;
  padding: 24px 28px; transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item:hover { border-color: var(--mint); box-shadow: 0 4px 16px rgba(29,158,117,0.08); }
.faq-q {
  font-family: 'DM Serif Display', serif; font-size: 17px;
  color: var(--deep); margin-bottom: 12px;
  display: flex; justify-content: space-between; gap: 12px; align-items: flex-start;
}
.faq-q::after { content: '→'; color: var(--teal); font-size: 18px; flex-shrink: 0; font-family: 'DM Sans', sans-serif; margin-top: 2px; }
.faq-a { font-size: 15px; color: var(--muted); line-height: 1.75; }
.faq-cta { text-align: center; margin-top: 48px; }
.faq-cta p { font-size: 16px; color: var(--muted); margin-bottom: 20px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-tag { animation: fadeUp 0.6s ease both; }
.hero h1 { animation: fadeUp 0.6s 0.1s ease both; }
.hero-sub { animation: fadeUp 0.6s 0.2s ease both; }
.hero-btns { animation: fadeUp 0.6s 0.3s ease both; }
.hero-stats { animation: fadeUp 0.6s 0.4s ease both; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-right { gap: 12px; }
  .nav-toggle { display: flex; }
  .nav-cta { padding: 8px 14px; font-size: 13px; }
  .cta-full { display: none; }
  .cta-short { display: inline; }
  .nav-links {
    position: fixed; top: 64px; left: 0; right: 0; z-index: 99;
    flex-direction: column; align-items: flex-start; gap: 2px;
    background: var(--deep);
    border-bottom: 1px solid rgba(159,225,203,0.15);
    box-shadow: 0 16px 32px rgba(4,52,44,0.25);
    max-height: 0; overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-links.open { max-height: 360px; }
  .nav-links a {
    width: 100%; padding: 14px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 15px;
  }
  section { padding: 60px 20px; }
  .hero { padding: 100px 20px 60px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .creds-grid { grid-template-columns: repeat(2, 1fr); }
  .cred-box:first-child { border-radius: 16px 0 0 0; }
  .cred-box:last-child { border-radius: 0 0 16px 16px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom-row { flex-direction: column; gap: 16px; text-align: center; }
  .proof-bar { gap: 24px; }
  .hero-stats { gap: 28px; }
  .faq-grid { grid-template-columns: 1fr; }
  .risk-band { gap: 24px; padding: 24px 20px; }
  .sticky-cta { padding: 12px 20px; }
  .sticky-cta-spaces { display: none; }
}

/* ════════════════════════════════════════════════
   MULTI-PAGE ADDITIONS
   (page headers, breadcrumbs, nav active state,
   homepage section-preview cards, inner-page CTA band)
   ════════════════════════════════════════════════ */

/* Active nav link */
.nav-links a.active { color: var(--mint); }

/* ── PAGE HEADER (used on every inner page in place of the full hero) ── */
.page-header {
  background: var(--deep);
  position: relative; overflow: hidden;
  padding: 150px 40px 70px;
}
.page-header .hero-bg-circle1 { right: -160px; top: -160px; width: 460px; height: 460px; }
.page-header .hero-bg-circle2 { right: 60px; bottom: -140px; width: 280px; height: 280px; }
.page-header-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.5);
  margin-bottom: 22px;
}
.breadcrumb a { color: var(--mint); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.page-header .section-tag { color: var(--mint); }
.page-header h1 {
  font-size: clamp(34px, 5vw, 58px);
  color: var(--white); line-height: 1.1;
  margin-bottom: 18px; max-width: 700px;
}
.page-header h1 em { color: var(--mint); font-style: italic; }
.page-header-sub {
  font-size: 17px; color: rgba(255,255,255,0.65);
  line-height: 1.7; max-width: 560px;
}

/* ── HOMEPAGE: SECTION-EXPLORE GRID ── */
.explore { background: var(--sage); }
.explore-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 60px;
}
.explore-card {
  background: var(--white); border: 1px solid var(--sage2);
  border-radius: 16px; padding: 32px;
  text-decoration: none; display: flex; flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.explore-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(4,52,44,0.1); border-color: var(--mint); }
.explore-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--sage2); margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.explore-name { font-family: 'DM Serif Display', serif; font-size: 21px; color: var(--deep); margin-bottom: 10px; }
.explore-desc { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 22px; flex-grow: 1; }
.explore-link { font-size: 14px; font-weight: 600; color: var(--teal); }
.explore-card:hover .explore-link { color: var(--mid); }

/* ── INNER-PAGE CTA BAND (closes out every sub-page) ── */
.page-cta {
  background: var(--teal); padding: 64px 40px;
  text-align: center; position: relative; overflow: hidden;
}
.page-cta::before {
  content: ''; position: absolute; right: -80px; top: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: var(--mid); opacity: 0.5;
}
.page-cta-inner { max-width: 600px; margin: 0 auto; position: relative; z-index: 2; }
.page-cta h3 { font-size: clamp(24px, 3vw, 34px); color: var(--white); margin-bottom: 12px; }
.page-cta p { font-size: 15px; color: rgba(255,255,255,0.8); line-height: 1.6; margin-bottom: 28px; }
.page-cta .btn-main { background: var(--white); color: var(--teal); }
.page-cta .btn-main:hover { background: var(--mint); color: var(--deep); }

@media (max-width: 768px) {
  .page-header { padding: 120px 20px 50px; }
  .explore-grid { grid-template-columns: 1fr; }
}

/* ── FOUNDER STORY GALLERY (About page) ── */
.founder-story { background: var(--sage); }
.founder-story-head { max-width: 640px; margin-bottom: 48px; }
.founder-story-rail {
  display: flex; gap: 24px; overflow-x: auto;
  padding: 4px 4px 20px; margin: 0 -4px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin; scrollbar-color: var(--mint) transparent;
}
.founder-story-rail::-webkit-scrollbar { height: 8px; }
.founder-story-rail::-webkit-scrollbar-thumb { background: var(--mint); border-radius: 8px; }
.founder-story-rail::-webkit-scrollbar-track { background: transparent; }
.founder-story-card {
  flex: 0 0 260px; scroll-snap-align: start;
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--sage2); background: var(--white);
  box-shadow: 0 8px 28px rgba(4,52,44,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.founder-story-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(4,52,44,0.12); }
.founder-story-card img { width: 100%; display: block; aspect-ratio: 1 / 1; object-fit: cover; }
.founder-story-hint {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--muted); margin-top: 8px;
}
.founder-story-hint::before { content: '↔'; color: var(--teal); font-weight: 700; }
@media (max-width: 768px) {
  .founder-story-card { flex-basis: 220px; }
}

/* ── HOMEPAGE FOUNDER STORY TEASER BAND ── */
.founder-teaser {
  background: var(--white);
  border-top: 1px solid var(--sage2); border-bottom: 1px solid var(--sage2);
  padding: 64px 40px;
}
.founder-teaser-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 200px 1fr auto;
  gap: 36px; align-items: center;
}
.founder-teaser-img {
  width: 200px; height: 200px; border-radius: 16px;
  overflow: hidden; border: 1px solid var(--sage2);
  box-shadow: 0 8px 28px rgba(4,52,44,0.08); flex-shrink: 0;
}
.founder-teaser-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.founder-teaser-text .section-tag { margin-bottom: 10px; }
.founder-teaser-text h3 {
  font-family: 'DM Serif Display', serif; font-size: clamp(22px, 3vw, 30px);
  color: var(--deep); line-height: 1.2; margin-bottom: 10px;
}
.founder-teaser-text h3 em { color: var(--teal); font-style: italic; }
.founder-teaser-text p { font-size: 15px; color: var(--muted); line-height: 1.7; max-width: 480px; }
.founder-teaser-link {
  color: var(--teal); font-weight: 600; text-decoration: none;
  white-space: nowrap; border: 1px solid var(--mint); border-radius: 8px;
  padding: 12px 22px; transition: background 0.2s, color 0.2s;
}
.founder-teaser-link:hover { background: var(--teal); color: var(--white); }
@media (max-width: 768px) {
  .founder-teaser { padding: 40px 20px; }
  .founder-teaser-inner { grid-template-columns: 1fr; text-align: center; }
  .founder-teaser-img { width: 100%; height: 220px; margin: 0 auto; }
  .founder-teaser-text p { margin: 0 auto; }
  .founder-teaser-link { justify-self: center; }
}
