:root {
  --ink: #142019;
  --ink-soft: #46544b;
  --green: #138a57;
  --green-dark: #0b6940;
  --green-pale: #eaf6ef;
  --cream: #f6f4ed;
  --paper: #fffefa;
  --line: #dce3dd;
  --dark: #101914;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(16, 25, 20, .10);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
:focus-visible { outline: 3px solid rgba(19, 138, 87, .35); outline-offset: 3px; }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: var(--green-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--green); }
.section { padding: 100px 0; }
.section-muted { background: var(--cream); }
.section-dark { color: var(--white); background: var(--dark); }
.section-heading { max-width: 730px; margin-bottom: 42px; }
.section-heading h2, .page-intro h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -.035em;
}
.section-heading h2 { font-size: clamp(2.2rem, 4vw, 4rem); }
.section-heading p { max-width: 650px; margin: 18px 0 0; color: var(--ink-soft); font-size: 1.08rem; }
.section-dark .section-heading p { color: #b8c5bd; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(20, 32, 25, .08);
  background: rgba(255, 254, 250, .94);
  backdrop-filter: blur(16px);
}
.nav-shell { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; text-decoration: none; flex: 0 0 auto; }
.brand img { width: 230px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links > a { text-decoration: none; font-size: .93rem; font-weight: 700; }
.nav-links > a:hover, .nav-links > a[aria-current="page"] { color: var(--green-dark); }
.nav-cta { padding: 12px 19px; border-radius: 999px; color: var(--white) !important; background: var(--dark); }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: auto;
  background: var(--ink);
  content: "";
  transition: .2s ease;
}
.menu-toggle span::before { transform: translateY(-6px); }
.menu-toggle span::after { transform: translateY(4px); }

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 22%, rgba(19, 138, 87, .17), transparent 25%),
    linear-gradient(135deg, #fbfaf5 0 58%, #eef6f1 58% 100%);
}
.hero::after {
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(19, 138, 87, .22);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(19, 138, 87, .045), 0 0 0 140px rgba(19, 138, 87, .025);
  content: "";
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.18fr .82fr; gap: 80px; align-items: center; padding: 90px 0 100px; }
.hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 7vw, 6.6rem);
  font-weight: 500;
  line-height: .96;
  letter-spacing: -.055em;
}
.hero h1 span { color: var(--green); }
.hero-copy > p { max-width: 675px; margin: 28px 0 0; color: var(--ink-soft); font-size: clamp(1.08rem, 2vw, 1.3rem); }
.button-row { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid var(--dark);
  border-radius: 999px;
  color: var(--white);
  background: var(--dark);
  text-decoration: none;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--green-dark); border-color: var(--green-dark); }
.button-secondary { color: var(--ink); background: transparent; }
.button-secondary:hover { color: var(--white); }
.button-light { color: var(--dark); border-color: var(--white); background: var(--white); }

.hero-panel {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 30px;
  background: rgba(255, 255, 255, .75);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.hero-panel::before { position: absolute; top: 24px; right: 24px; width: 12px; height: 12px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 8px rgba(19, 138, 87, .12); content: ""; }
.hero-panel > p:first-child { margin: 0 0 26px; font-size: .76rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.signal-list { display: grid; gap: 0; }
.signal { display: grid; grid-template-columns: 42px 1fr; gap: 15px; padding: 19px 0; border-top: 1px solid var(--line); }
.signal:first-child { border-top: 0; }
.signal strong { display: block; font-family: Georgia, serif; font-size: 1.26rem; font-weight: 500; }
.signal span { color: var(--ink-soft); font-size: .91rem; }
.signal-number { color: var(--green-dark) !important; font-family: Georgia, serif; font-size: 1rem !important; }

.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 27px 28px; border-left: 1px solid var(--line); }
.trust-item:first-child { border-left: 0; }
.trust-item strong { display: block; font-family: Georgia, serif; font-size: 1.15rem; font-weight: 500; }
.trust-item span { color: var(--ink-soft); font-size: .86rem; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  text-decoration: none;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover { transform: translateY(-5px); border-color: rgba(19, 138, 87, .45); box-shadow: var(--shadow); }
.service-index { margin-bottom: auto; color: var(--green-dark); font-size: .76rem; font-weight: 800; letter-spacing: .12em; }
.service-card h3 { margin: 54px 0 12px; font-family: Georgia, serif; font-size: 1.75rem; font-weight: 500; line-height: 1.1; }
.service-card p { margin: 0; color: var(--ink-soft); }
.card-link { display: inline-block; margin-top: 24px; color: var(--green-dark); font-weight: 800; }

.split { display: grid; grid-template-columns: .86fr 1.14fr; gap: 80px; align-items: start; }
.feature-panel { position: sticky; top: 120px; padding: 38px; border-radius: 28px; color: var(--white); background: var(--dark); }
.feature-panel h3 { margin: 0 0 24px; font-family: Georgia, serif; font-size: 2.3rem; font-weight: 500; line-height: 1.06; }
.feature-panel p { color: #c3cec7; }
.check-list { list-style: none; margin: 24px 0 0; padding: 0; }
.check-list li { position: relative; padding: 12px 0 12px 31px; border-top: 1px solid rgba(255,255,255,.12); }
.check-list li::before { position: absolute; left: 0; color: #68d59e; content: "✓"; font-weight: 900; }
.process-list { display: grid; gap: 16px; }
.process-step { display: grid; grid-template-columns: 54px 1fr; gap: 20px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.process-step span { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; color: var(--green-dark); background: var(--green-pale); font-weight: 900; }
.process-step h3 { margin: 4px 0 8px; font-family: Georgia, serif; font-size: 1.5rem; font-weight: 500; }
.process-step p { margin: 0; color: var(--ink-soft); }

.quote-band { padding: 84px 0; color: var(--white); background: var(--green-dark); }
.quote-band-inner { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: end; }
.quote-band h2 { max-width: 800px; margin: 0; font-family: Georgia, serif; font-size: clamp(2.35rem, 5vw, 4.5rem); font-weight: 500; line-height: 1.02; letter-spacing: -.035em; }
.quote-band p { max-width: 680px; margin: 20px 0 0; color: #d6f1e2; }

.page-hero { padding: 105px 0 86px; border-bottom: 1px solid var(--line); background: linear-gradient(145deg, #fbfaf5, #edf7f1); }
.page-intro { max-width: 870px; }
.page-intro h1 { font-size: clamp(3.2rem, 7vw, 6rem); }
.page-intro > p { max-width: 740px; margin: 24px 0 0; color: var(--ink-soft); font-size: 1.2rem; }
.breadcrumb { margin-bottom: 28px; color: var(--ink-soft); font-size: .86rem; }
.breadcrumb a { color: var(--green-dark); }

.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 70px; align-items: start; }
.prose h2, .prose h3 { font-family: Georgia, serif; font-weight: 500; line-height: 1.12; }
.prose h2 { margin: 0 0 18px; font-size: clamp(2rem, 4vw, 3.3rem); }
.prose h3 { margin: 42px 0 12px; font-size: 1.65rem; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul { padding-left: 21px; }
.prose li { margin: 8px 0; }
.side-card { position: sticky; top: 120px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--cream); }
.side-card h2 { margin: 0 0 10px; font-family: Georgia, serif; font-size: 1.8rem; font-weight: 500; line-height: 1.1; }
.side-card p { margin: 0; color: var(--ink-soft); }
.side-card .button { width: 100%; margin-top: 22px; }

.pill-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { padding: 9px 14px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); font-size: .88rem; font-weight: 700; }
.article-card { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.article-card time { color: var(--green-dark); font-size: .82rem; font-weight: 800; text-transform: uppercase; }
.article-card h2 { margin: 15px 0 12px; font-family: Georgia, serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 500; line-height: 1.1; }
.article-card p { max-width: 780px; color: var(--ink-soft); }
.insight-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }

.guide-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 70px; align-items: start; }
.guide-prose { min-width: 0; }
.answer-block { margin: 28px 0; padding: 24px 26px; border-left: 4px solid var(--green); border-radius: 0 16px 16px 0; background: var(--green-pale); }
.answer-block span { display: block; margin-bottom: 7px; color: var(--green-dark); font-size: .75rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.answer-block p { margin: 0; color: var(--ink); font-size: 1.05rem; }
.table-wrap { max-width: 100%; overflow-x: auto; border: 1px solid var(--line); border-radius: 16px; }
.table-wrap:focus-visible { outline: 3px solid rgba(19, 138, 87, .35); outline-offset: 3px; }
.comparison-table, .tracker-table { width: 100%; border-collapse: collapse; background: var(--white); }
.comparison-table { min-width: 680px; }
.comparison-table th, .comparison-table td, .tracker-table th, .tracker-table td { padding: 16px 18px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.comparison-table thead th, .tracker-table thead th { color: var(--white); background: var(--dark); font-size: .77rem; letter-spacing: .07em; text-transform: uppercase; }
.comparison-table tbody th { width: 22%; color: var(--ink); background: var(--cream); }
.comparison-table tr:last-child th, .comparison-table tr:last-child td, .tracker-table tr:last-child td { border-bottom: 0; }
.number-list { display: grid; gap: 14px; padding-left: 24px; }
.number-list li { padding-left: 8px; }
.faq-list { display: grid; gap: 12px; }
.faq-list details { border: 1px solid var(--line); border-radius: 14px; background: var(--white); }
.faq-list summary { padding: 18px 52px 18px 20px; cursor: pointer; color: var(--ink); font-weight: 800; }
.faq-list details p { margin: 0; padding: 0 20px 20px; }
.source-box { margin-top: 50px; padding: 26px; border: 1px solid var(--line); border-radius: 18px; background: var(--cream); }
.source-box h2 { font-size: 1.7rem; }
.source-box a { color: var(--green-dark); font-weight: 750; }
.guide-aside { top: 110px; }
.aside-note { margin-top: 18px !important; font-size: .78rem; }

.tracker-hero { padding: 92px 0 80px; color: var(--white); background: radial-gradient(circle at 85% 10%, rgba(104,213,158,.19), transparent 28%), var(--dark); }
.tracker-hero .breadcrumb { color: #afbeb5; }
.tracker-hero .breadcrumb a { color: #84e0ad; }
.tracker-hero .eyebrow { color: #84e0ad; }
.tracker-hero h1 { max-width: 900px; margin: 0; font-family: Georgia, serif; font-size: clamp(3rem, 6vw, 5.6rem); font-weight: 500; line-height: 1; letter-spacing: -.045em; }
.tracker-hero > .container > p:not(.eyebrow) { max-width: 770px; color: #c5d0c9; font-size: 1.12rem; }
.status-line { display: inline-flex; align-items: center; gap: 9px; margin-top: 20px; padding: 9px 13px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; color: #dce6df; font-size: .8rem; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: #68d59e; box-shadow: 0 0 0 5px rgba(104,213,158,.12); }
.tracker-section { padding: 60px 0 95px; background: var(--cream); }
.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.metric-card { min-height: 188px; display: flex; flex-direction: column; padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.metric-card > span { color: var(--ink-soft); font-size: .76rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.metric-card strong { margin: auto 0 4px; font-family: Georgia, serif; font-size: 2rem; font-weight: 500; line-height: 1; }
.metric-card small { color: var(--ink-soft); }
.tracker-panel { margin-top: 28px; padding: 34px; border: 1px solid var(--line); border-radius: 22px; background: var(--white); }
.tracker-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 24px; }
.tracker-heading .eyebrow { margin-bottom: 8px; }
.tracker-heading h2 { margin: 0; font-family: Georgia, serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 500; line-height: 1.06; }
.truth-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.truth-grid > div { padding: 20px; border-radius: 14px; background: var(--cream); }
.truth-grid strong { font-family: Georgia, serif; font-size: 1.28rem; font-weight: 500; }
.truth-grid p { margin: 8px 0 0; color: var(--ink-soft); }
.tracker-search { min-width: 285px; display: grid; gap: 6px; color: var(--ink-soft); font-size: .75rem; font-weight: 800; }
.tracker-search input { width: 100%; min-height: 46px; padding: 10px 14px; border: 1px solid #bbc9bf; border-radius: 12px; background: var(--white); }
.tracker-note { max-width: 850px; color: var(--ink-soft); font-size: .9rem; }
.tracker-table-wrap { margin-top: 20px; }
.tracker-table { min-width: 720px; }
.tracker-table th:nth-child(1) { width: 50%; }
.tracker-table td { color: var(--ink-soft); }
.tracker-table a { color: var(--green-dark); font-weight: 800; }
.empty-state { padding: 30px; text-align: center; color: var(--ink-soft); }
.check-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.check-grid a { min-height: 120px; display: flex; flex-direction: column; justify-content: end; padding: 20px; border: 1px solid var(--line); border-radius: 15px; background: var(--cream); text-decoration: none; }
.check-grid a:hover { border-color: var(--green); }
.check-grid strong { font-family: Georgia, serif; font-size: 1.3rem; font-weight: 500; }
.check-grid span { color: var(--ink-soft); font-size: .85rem; }

.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; }
.contact-details { display: grid; gap: 14px; margin-top: 30px; }
.contact-detail { padding: 21px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
.contact-detail small { display: block; color: var(--ink-soft); }
.contact-detail a { color: var(--green-dark); font-weight: 800; text-decoration: none; }
.contact-form { padding: 34px; border-radius: 28px; background: var(--cream); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 17px; }
.field { display: grid; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: .86rem; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #cad4cc; border-radius: 12px; padding: 13px 14px; background: var(--white); color: var(--ink); }
.field textarea { min-height: 140px; resize: vertical; }
.form-note { margin: 14px 0 0; color: var(--ink-soft); font-size: .82rem; }

.site-footer { padding: 65px 0 25px; color: #cbd4ce; background: var(--dark); }
.footer-grid { display: grid; grid-template-columns: 1.35fr .7fr .7fr 1fr; gap: 50px; }
.footer-brand img { width: 220px; padding: 9px 12px; border-radius: 7px; background: var(--white); }
.footer-brand p { max-width: 360px; }
.site-footer h2 { margin: 3px 0 17px; color: var(--white); font-size: .86rem; letter-spacing: .1em; text-transform: uppercase; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin: 8px 0; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 50px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); font-size: .78rem; }
.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 90; display: inline-flex; align-items: center; gap: 10px; padding: 13px 17px; border-radius: 999px; color: var(--white); background: #11824d; box-shadow: 0 12px 35px rgba(17, 130, 77, .3); text-decoration: none; font-weight: 800; }

@media (max-width: 980px) {
  .menu-toggle { display: grid; place-items: center; }
  .nav-links { position: absolute; top: 100%; right: 0; left: 0; min-height: calc(100vh - 82px); display: none; align-content: start; padding: 28px 24px; border-top: 1px solid var(--line); background: var(--paper); box-shadow: 0 24px 50px rgba(16, 25, 20, .12); }
  .nav-links.open { display: grid; gap: 8px; }
  .nav-links > a { padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav-cta { margin-top: 10px; padding-inline: 20px !important; text-align: center; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; padding: 80px 0; }
  .hero-panel { max-width: 650px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .trust-item:nth-child(4) { border-top: 1px solid var(--line); }
  .split, .content-grid, .contact-layout, .guide-layout { grid-template-columns: 1fr; gap: 46px; }
  .feature-panel, .side-card { position: static; }
  .quote-band-inner { grid-template-columns: 1fr; align-items: start; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .metric-grid { grid-template-columns: repeat(2, 1fr); }
  .check-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 30px), var(--max)); }
  .brand img { width: 185px; }
  .nav-shell { min-height: 74px; }
  .nav-links { min-height: calc(100vh - 74px); }
  .hero-grid { padding: 65px 0; }
  .hero h1 { font-size: clamp(3.2rem, 16vw, 4.6rem); }
  .hero-panel { padding: 25px; border-radius: 23px; }
  .button-row .button { width: 100%; }
  .section { padding: 72px 0; }
  .page-hero { padding: 75px 0 64px; }
  .page-intro h1 { font-size: clamp(2.8rem, 14vw, 4.2rem); }
  .service-grid, .trust-grid, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .trust-item { border-top: 1px solid var(--line); border-left: 0; }
  .trust-item:first-child { border-top: 0; }
  .service-card { min-height: 280px; }
  .quote-band { padding: 68px 0; }
  .contact-form { padding: 24px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { display: grid; }
  .whatsapp-float { display: none; }
  .site-footer li a { display: inline-flex; min-height: 44px; align-items: center; }
  .metric-grid, .truth-grid, .check-grid, .insight-grid { grid-template-columns: 1fr; }
  .tracker-panel { padding: 24px; }
  .tracker-heading { display: grid; }
  .tracker-search { min-width: 0; width: 100%; }
  .tracker-hero { padding: 68px 0 60px; }
  .metric-card { min-height: 160px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
