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

:root {
  --teal: #1D9E75;
  --teal-dark: #168a63;
  --black: #111111;
  --text: #1a1a1a;
  --text-muted: #5c5c5c;
  --bg: #ffffff;
  --bg-light: #f7f7f5;
  --bg-dark: #111111;
  --border: #e2e2e0;
  --font-heading: 'Lora', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --radius: 6px;
  --max-w: 1080px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

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

/* ---- NAV ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
}

.nav-logo {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--black);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s;
}

.nav-links a:not(.btn) {
  padding: 0.35rem 0.6rem;
  border-radius: var(--radius);
}

.nav-links a:not(.btn):hover {
  color: var(--black);
  background: var(--bg-light);
}

.nav-links a.active {
  color: var(--black);
}

.nav-links a.btn-primary {
  color: #fff;
}

.nav-links a.btn-primary:hover {
  color: #fff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.875rem;
  border-radius: var(--radius);
  padding: 0.6rem 1.25rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  border: 1.5px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}

.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-outline:hover {
  border-color: #999;
  color: var(--black);
}

.btn-lg {
  font-size: 0.95rem;
  padding: 0.75rem 1.6rem;
}

/* ---- HERO ---- */
.hero {
  padding: 5.5rem 1.5rem 4.5rem;
}

.hero-inner {
  max-width: 700px;
  margin: 0 auto;
}

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

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  line-height: 1.22;
  color: var(--black);
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.6rem;
}

.hero-cta-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--teal);
  background: rgba(29, 158, 117, 0.07);
  border: 1px solid rgba(29, 158, 117, 0.2);
  border-radius: 999px;
  padding: 0.28rem 0.8rem;
}

/* ---- SECTIONS ---- */
.section {
  padding: 5rem 1.5rem;
}

.section-light {
  background: var(--bg-light);
}

.section-header {
  margin-bottom: 2.5rem;
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--black);
  line-height: 1.3;
}

.section-sub {
  margin-top: 0.6rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.65;
}

/* ---- SERVICES GRID (home) ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
}

.service-icon {
  width: 36px;
  height: 36px;
  background: rgba(29, 158, 117, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--teal);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--black);
}

.service-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---- CTA BAND ---- */
.cta-band {
  padding: 5rem 1.5rem;
  background: var(--bg-dark);
  text-align: center;
}

.cta-band-inner {
  max-width: 580px;
  margin: 0 auto;
}

.cta-band h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
}

/* ---- FOOTER ---- */
.footer {
  padding: 2.5rem 1.5rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--black);
}

.footer-tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
}

.footer-email {
  font-size: 0.85rem;
  color: var(--teal);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ---- PAGE HEADER (inner pages) ---- */
.page-header {
  padding: 4rem 1.5rem 3rem;
  border-bottom: 1px solid var(--border);
}

.page-header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 600;
  color: var(--black);
  line-height: 1.25;
  max-width: 620px;
  margin-top: 0.4rem;
}

.page-header p {
  margin-top: 0.75rem;
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.65;
}

/* ---- SERVICES PAGE ---- */
.services-group {
  margin-bottom: 4rem;
}

.services-group:last-child {
  margin-bottom: 0;
}

.services-group-header {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.services-group-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--black);
}

.badge-new {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--teal);
  color: #fff;
  padding: 0.18rem 0.5rem;
  border-radius: 4px;
}

.ai-intro {
  margin-bottom: 1.5rem;
  padding: 1.1rem 1.4rem;
  background: rgba(29, 158, 117, 0.05);
  border-left: 3px solid var(--teal);
  border-radius: 0 6px 6px 0;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.65;
}

.services-list {
  display: grid;
  gap: 1rem;
}

.service-item {
  padding: 1.5rem 1.75rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: start;
}

.service-item-left h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.4rem;
}

.service-item-left p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.service-outcome {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--teal);
  background: rgba(29, 158, 117, 0.07);
  border: 1px solid rgba(29, 158, 117, 0.2);
  border-radius: 6px;
  padding: 0.3rem 0.7rem;
  white-space: nowrap;
  margin-top: 0.15rem;
}

/* ---- ABOUT PAGE ---- */
.about-bio {
  max-width: 660px;
  font-size: 1.025rem;
  line-height: 1.8;
  color: var(--text);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.value-card {
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-light);
}

.value-number {
  font-size: 1.4rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--teal);
  opacity: 0.75;
  margin-bottom: 0.6rem;
  line-height: 1;
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.45rem;
}

.value-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---- PROCESS PAGE ---- */
.process-steps {
  display: grid;
  gap: 2.5rem;
  max-width: 680px;
}

.process-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(29, 158, 117, 0.1);
  color: var(--teal);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.4rem;
  padding-top: 0.55rem;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.process-note {
  margin-top: 3.5rem;
  padding: 1.4rem 1.6rem;
  background: var(--bg-light);
  border-radius: 8px;
  border: 1px solid var(--border);
  max-width: 680px;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ---- RESULTS PAGE ---- */
.results-list {
  display: grid;
  gap: 1rem;
  max-width: 740px;
}

.result-item {
  display: grid;
  grid-template-columns: 3px 1fr;
  gap: 1.25rem;
  align-items: stretch;
  padding: 1.4rem 1.6rem;
  background: var(--bg-light);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.result-accent {
  background: var(--teal);
  border-radius: 4px;
  align-self: stretch;
  min-height: 36px;
}

.result-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.65;
  align-self: center;
}

.result-text strong {
  color: var(--black);
  font-weight: 600;
}

/* ---- FAQ PAGE ---- */
.accordion-container {
  max-width: 720px;
}

.accordion-group {
  margin-bottom: 3rem;
}

.accordion-group:last-child {
  margin-bottom: 0;
}

.accordion-group-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-item:first-of-type {
  border-top: 1px solid var(--border);
}

.accordion-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.1rem 0;
  text-align: left;
  gap: 1.5rem;
}

.accordion-q {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.4;
  transition: color 0.2s;
}

.accordion-btn[aria-expanded="true"] .accordion-q {
  color: var(--teal);
}

.accordion-icon {
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--text-muted);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.2s, color 0.2s;
  user-select: none;
}

.accordion-btn[aria-expanded="true"] .accordion-icon {
  transform: rotate(45deg);
  color: var(--teal);
}

.accordion-body {
  display: none;
  padding-bottom: 1.25rem;
}

.accordion-body.open {
  display: block;
}

.accordion-a {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ---- COVERAGE (results page) ---- */
.coverage-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.coverage-group-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.coverage-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.coverage-chip {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
}

/* ---- CONTACT PAGE ---- */
.expect-card {
  padding: 1.75rem;
  border: 1px solid rgba(29, 158, 117, 0.2);
  border-radius: 8px;
  background: #E1F5EE;
}

.expect-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--teal);
}

.expect-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--black);
}

.expect-card p {
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.6;
}

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 780px;
}

.fit-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}

.fit-list {
  display: grid;
  gap: 0.75rem;
  list-style: none;
}

.fit-list li {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.55;
  padding-left: 1.5rem;
  position: relative;
}

.fit-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 600;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 1.5rem 1rem;
    gap: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    border-bottom: 1px solid var(--border);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    display: block;
    padding: 0.7rem 0;
    font-size: 0.925rem;
  }

  .nav-links .btn {
    display: block;
    text-align: center;
    margin: 0.75rem 0 0.25rem;
  }

  .hero {
    padding: 3.5rem 1.5rem 3rem;
  }

  .section {
    padding: 3.5rem 1.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-item {
    grid-template-columns: 1fr;
  }

  .service-outcome {
    width: fit-content;
    margin-top: 0.75rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .coverage-layout {
    grid-template-columns: 1fr;
  }

  .fit-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-right {
    align-items: flex-start;
  }
}