:root {
  --green-950: #04311f;
  --green-900: #06452b;
  --green-800: #0a5938;
  --green-700: #1f744c;
  --green-200: #cfe9d9;
  --green-100: #e9f5ee;
  --green-50: #f4faf6;
  --orange: #f26313;
  --orange-deep: #d94f05;
  --ink: #102219;
  --ink-soft: #506259;
  --paper: #fbfcfb;
  --paper-warm: #f5f7f4;
  --white: #ffffff;
  --line: rgba(6, 69, 43, 0.13);
  --shadow: 0 30px 80px rgba(4, 49, 31, 0.16);
  --shadow-soft: 0 18px 45px rgba(4, 49, 31, 0.09);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 15px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 10px;
  color: white;
  background: var(--green-900);
  transform: translateY(-180%);
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.container { width: min(calc(100% - 48px), var(--container)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(6,69,43,0.08);
  transition: box-shadow .25s ease;
}
.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand img { width: 272px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  font-size: 0.88rem;
  font-weight: 750;
  text-decoration: none;
  color: #355247;
  transition: color .2s ease;
}
.main-nav a:hover { color: var(--green-900); }
.main-nav .nav-pericias {
  padding: 10px 14px;
  border: 1px solid rgba(6, 69, 43, .2);
  border-radius: 999px;
  color: var(--green-900);
  background: var(--green-50);
}
.main-nav .nav-pericias:hover { border-color: rgba(6, 69, 43, .38); background: white; }
.main-nav .nav-cta {
  padding: 12px 17px;
  border-radius: 999px;
  color: white;
  background: var(--green-900);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: var(--green-50);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span:not(.sr-only) { width: 21px; height: 2px; background: var(--green-900); border-radius: 2px; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 68px 0 72px;
  background:
    radial-gradient(circle at 88% 8%, rgba(125, 185, 145, 0.34), transparent 30%),
    linear-gradient(118deg, #ffffff 0%, #f8fcf9 38%, #e6f4eb 100%);
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-orb-one { width: 340px; height: 340px; right: -130px; top: -150px; background: rgba(95, 166, 118, 0.13); }
.hero-orb-two { width: 170px; height: 170px; left: 42%; bottom: -90px; background: rgba(242, 99, 19, 0.06); }
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 66px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 18px;
  color: #a7cbb5;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow.dark { color: var(--green-700); }
.hero-copy h1 {
  margin: 0;
  max-width: 690px;
  color: var(--green-950);
  font-size: clamp(3.45rem, 5.35vw, 6.35rem);
  line-height: .94;
  letter-spacing: -0.062em;
  text-wrap: balance;
}
.hero-lead {
  margin: 27px 0 0;
  max-width: 640px;
  color: #445c50;
  font-size: 1.08rem;
  line-height: 1.72;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: white; background: var(--orange); box-shadow: 0 12px 28px rgba(242,99,19,.19); }
.btn-primary:hover { background: var(--orange-deep); }
.btn-secondary { color: var(--green-900); border-color: rgba(6,69,43,.18); background: rgba(255,255,255,.55); }
.btn-secondary:hover { background: white; box-shadow: var(--shadow-soft); }
.btn-outline-light { color: white; border-color: rgba(255,255,255,.35); background: transparent; }
.hero-proof { display: flex; gap: 11px; align-items: flex-start; margin-top: 26px; max-width: 565px; }
.hero-proof p { margin: 0; color: #667a70; font-size: .84rem; }
.proof-dot { flex: 0 0 auto; width: 8px; height: 8px; margin-top: 6px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 6px rgba(242,99,19,.09); }

.hero-visual { position: relative; min-width: 0; }
.hero-photo-wrap {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 36px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(6,69,43,.09);
  background: var(--green-900);
}
.hero-photo-wrap > img { width: 100%; height: 520px; object-fit: cover; object-position: 48% center; }
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4,49,31,0) 38%, rgba(4,49,31,.78) 100%);
}
.hero-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 22px 24px;
  border-radius: 20px;
  color: white;
  background: rgba(4, 49, 31, .82);
  border: 1px solid rgba(255,255,255,.13);
  backdrop-filter: blur(12px);
}
.hero-card span { display: block; margin-bottom: 8px; color: #f8a974; font-size: .68rem; font-weight: 900; letter-spacing: .15em; }
.hero-card strong { display: block; font-size: 1.35rem; line-height: 1.2; }
.hero-card p { margin: 8px 0 0; color: rgba(255,255,255,.72); font-size: .9rem; }
.hero-symbol {
  position: absolute;
  top: -28px;
  right: -28px;
  width: 112px;
  height: 112px;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(4,49,31,.24);
  border: 6px solid rgba(255,255,255,.7);
  transform: rotate(4deg);
}
.hero-symbol img { width: 100%; height: 100%; object-fit: cover; }

.metrics-marquee {
  overflow: hidden;
  background: var(--orange);
  color: white;
  border-top: 1px solid rgba(255,255,255,.16);
  border-bottom: 1px solid rgba(175,70,6,.22);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
  will-change: transform;
}
.marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-height: 60px;
  padding-right: 42px;
}
.marquee-group span { white-space: nowrap; padding: 0 24px; font-size: .86rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.marquee-group i { width: 5px; height: 5px; flex: 0 0 auto; border-radius: 50%; background: rgba(255,255,255,.74); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

.section { padding: 110px 0; }
.section-light { background: var(--white); }
.section-paper { background: var(--paper-warm); }
.section-green { color: #f1f8f4; background: var(--green-900); }
.section-heading { margin-bottom: 52px; }
.section-heading.narrow { max-width: 865px; }
.section-heading h2,
.method-intro h2,
.services-intro h2,
.diagnostic-copy h2,
.principle-statement h2,
.cta-copy h2 {
  margin: 0;
  font-size: clamp(2.45rem, 4.3vw, 4.8rem);
  line-height: 1.01;
  letter-spacing: -0.052em;
  text-wrap: balance;
}
.section-heading > p:not(.eyebrow) { margin: 22px 0 0; max-width: 760px; font-size: 1.05rem; line-height: 1.75; }
.section-green .section-heading > p:not(.eyebrow) { color: rgba(241,248,244,.69); }

.risk-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.risk-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.055);
  transition: transform .25s ease, background .25s ease;
}
.risk-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.08); }
.risk-number { color: #ff9d5b; font-size: .7rem; font-weight: 950; letter-spacing: .15em; }
.risk-card h3 { margin: auto 0 10px; padding-top: 54px; color: white; font-size: 1.55rem; letter-spacing: -.025em; }
.risk-card p { margin: 0; color: rgba(241,248,244,.66); }
.green-statement {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 28px;
  align-items: start;
  margin-top: 56px;
  padding-top: 34px;
  border-top: 1px solid rgba(255,255,255,.13);
}
.green-statement span { height: 5px; margin-top: 14px; border-radius: 99px; background: var(--orange); }
.green-statement p { margin: 0; max-width: 880px; color: #f3f8f5; font-size: clamp(1.45rem, 2.8vw, 2.65rem); font-weight: 750; line-height: 1.18; letter-spacing: -.035em; }

.method-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 86px; align-items: start; }
.method-intro { position: sticky; top: 132px; }
.method-intro > p:not(.eyebrow) { margin: 22px 0 0; color: var(--ink-soft); font-size: 1.04rem; line-height: 1.72; }
.method-badge {
  margin-top: 34px;
  padding: 22px;
  border-radius: 18px;
  background: var(--green-50);
  border: 1px solid var(--line);
}
.method-badge span { display: block; margin-bottom: 6px; color: var(--orange); font-size: .68rem; font-weight: 900; letter-spacing: .14em; }
.method-badge strong { color: var(--green-900); font-size: 1.06rem; }
.process-list { border-top: 1px solid var(--line); }
.process-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  padding: 31px 0;
  border-bottom: 1px solid var(--line);
}
.process-index {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--orange);
  background: white;
  border: 1px solid rgba(6,69,43,.15);
  font-size: .75rem;
  font-weight: 950;
}
.process-item h3 { margin: 0 0 8px; color: var(--green-950); font-size: 1.45rem; letter-spacing: -.025em; }
.process-item p { margin: 0; color: var(--ink-soft); }

.services-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 82px; }
.services-intro { position: sticky; top: 132px; align-self: start; }
.services-intro > p:not(.eyebrow) { margin: 22px 0 0; color: var(--ink-soft); font-size: 1.04rem; line-height: 1.72; }
.text-link { display: inline-flex; gap: 8px; align-items: center; margin-top: 27px; color: var(--green-900); font-weight: 850; text-decoration-thickness: 1px; text-underline-offset: 5px; }
.text-link span { color: var(--orange); }
.services-list { border-top: 1px solid var(--line); }
.service-row { display: grid; grid-template-columns: 58px 1fr; gap: 20px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.service-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--green-900);
  background: white;
  border: 1px solid rgba(6,69,43,.12);
  font-weight: 950;
}
.service-row h3 { margin: 0 0 8px; color: var(--green-950); font-size: 1.35rem; }
.service-row p { margin: 0; color: var(--ink-soft); }

.pressure-section { position: relative; overflow: hidden; }
.pressure-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -180px;
  bottom: -220px;
  border-radius: 50%;
  background: rgba(255,255,255,.035);
}
.scenario-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.scenario-card {
  min-height: 250px;
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.055);
}
.scenario-card span { color: #ff9d5b; font-size: .7rem; font-weight: 950; letter-spacing: .14em; }
.scenario-card h3 { margin: 58px 0 11px; color: white; font-size: 1.45rem; }
.scenario-card p { margin: 0; color: rgba(241,248,244,.66); }

.diagnostic-section { background: linear-gradient(130deg, #f9fbf9 0%, #edf6f0 100%); }
.diagnostic-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 80px; align-items: start; }
.diagnostic-copy { position: sticky; top: 132px; }
.diagnostic-copy > p:not(.eyebrow) { margin: 22px 0 0; color: var(--ink-soft); font-size: 1.04rem; line-height: 1.72; }
.diagnostic-result {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 28px;
  padding: 18px 19px;
  border-radius: 16px;
  color: var(--green-900);
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.result-dot { flex: 0 0 auto; width: 9px; height: 9px; margin-top: 7px; border-radius: 50%; background: var(--orange); }
.diagnostic-result p { margin: 0; font-size: .9rem; }
.diagnostic-card { overflow: hidden; border-radius: 24px; background: white; border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.question { padding: 26px 28px; border-bottom: 1px solid var(--line); }
.question:last-child { border-bottom: 0; }
.question p { margin: 0 0 16px; color: var(--green-950); font-weight: 760; }
.answer-group { display: flex; gap: 8px; flex-wrap: wrap; }
.answer-group button {
  min-width: 82px;
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid rgba(6,69,43,.16);
  color: #496358;
  background: white;
  cursor: pointer;
  font-size: .84rem;
  font-weight: 800;
  transition: all .2s ease;
}
.answer-group button:hover { border-color: var(--green-700); }
.answer-group button.active { color: white; border-color: var(--green-900); background: var(--green-900); }

.principles-section { border-top: 1px solid rgba(6,69,43,.07); }
.principle-grid { display: grid; grid-template-columns: 1fr .92fr; gap: 84px; align-items: start; }
.principle-statement { position: relative; }
.big-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  border-radius: 18px;
  color: white;
  background: var(--orange);
  font-size: 1.15rem;
  font-weight: 950;
}
.principle-copy { padding-top: 84px; }
.principle-copy p { margin: 0 0 18px; color: var(--ink-soft); font-size: 1.02rem; line-height: 1.78; }
.principle-copy strong { color: var(--green-950); }
.source-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.source-links a {
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--green-900);
  background: var(--green-50);
  border: 1px solid var(--line);
  font-size: .74rem;
  font-weight: 850;
  text-decoration: none;
}

.cta-section { color: white; background: var(--green-950); }
.cta-grid { display: grid; grid-template-columns: 1fr .7fr; gap: 82px; align-items: center; }
.cta-copy h2 { color: #f6fbf8; }
.cta-copy > p:not(.eyebrow):not(.copy-feedback) { margin: 22px 0 0; max-width: 720px; color: rgba(255,255,255,.68); font-size: 1.04rem; }
.cta-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 30px; }
.copy-feedback { min-height: 20px; margin: 10px 0 0; color: #bfd8c8; font-size: .82rem; }
.contact-panel {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
}
.contact-panel > img { width: 78px; height: 78px; border-radius: 20px; margin-bottom: 20px; }
.contact-panel span { display: block; margin-bottom: 7px; color: #ffab73; font-size: .69rem; font-weight: 900; letter-spacing: .14em; }
.contact-panel strong { display: block; font-size: 1.18rem; }
.contact-panel p { margin: 6px 0 18px; color: rgba(255,255,255,.62); }
.contact-panel > a { color: white; font-size: 1.22rem; font-weight: 850; text-decoration-thickness: 1px; text-underline-offset: 4px; }

.site-footer { padding: 38px 0; background: #f7f9f7; border-top: 1px solid rgba(6,69,43,.08); }
.footer-grid { display: grid; grid-template-columns: .5fr 1fr auto; gap: 40px; align-items: center; }
.footer-brand img { width: 230px; }
.footer-brand p { margin: 6px 0 0; color: #7a8d83; font-size: .78rem; }
.footer-note { margin: 0; color: #72827a; font-size: .75rem; line-height: 1.55; }
.footer-copy { margin: 0; color: #718078; font-size: .78rem; white-space: nowrap; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .1s; }

@media (max-width: 1040px) {
  .brand img { width: 230px; }
  .main-nav { gap: 17px; }
  .main-nav a { font-size: .82rem; }
  .hero-grid { gap: 42px; }
  .hero-copy h1 { font-size: clamp(3rem, 6vw, 5rem); }
  .hero-photo-wrap, .hero-photo-wrap > img { min-height: 470px; height: 470px; }
  .method-layout, .services-layout, .diagnostic-grid { gap: 52px; }
}

@media (max-width: 880px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .header-inner { min-height: 80px; }
  .brand img { width: 205px; }
  .menu-toggle { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    padding: 16px;
    border-radius: 18px;
    background: white;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 11px 8px; }
  .main-nav .nav-cta { text-align: center; }
  .hero { padding: 48px 0 56px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy h1 { max-width: 720px; }
  .hero-photo-wrap, .hero-photo-wrap > img { min-height: 520px; height: 520px; }
  .hero-symbol { right: 18px; top: -22px; }
  .section { padding: 82px 0; }
  .method-layout, .services-layout, .diagnostic-grid, .principle-grid, .cta-grid { grid-template-columns: 1fr; gap: 48px; }
  .method-intro, .services-intro, .diagnostic-copy { position: static; }
  .principle-copy { padding-top: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 18px; }
  .footer-copy { white-space: normal; }
}

@media (max-width: 650px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .header-inner { min-height: 74px; }
  .brand img { width: 184px; }
  .hero { padding-top: 38px; }
  .hero-copy h1 { font-size: clamp(3.05rem, 14vw, 4.6rem); line-height: .93; }
  .hero-lead { font-size: 1rem; line-height: 1.65; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-photo-wrap, .hero-photo-wrap > img { min-height: 430px; height: 430px; }
  .hero-photo-wrap { border-radius: 26px; }
  .hero-card { left: 16px; right: 16px; bottom: 16px; padding: 18px; }
  .hero-card strong { font-size: 1.16rem; }
  .hero-symbol { width: 82px; height: 82px; border-radius: 20px; top: -14px; right: 12px; border-width: 4px; }
  .marquee-group { min-height: 54px; }
  .marquee-group span { font-size: .76rem; padding: 0 18px; }
  .section { padding: 72px 0; }
  .section-heading h2, .method-intro h2, .services-intro h2, .diagnostic-copy h2, .principle-statement h2, .cta-copy h2 { font-size: clamp(2.45rem, 12vw, 3.7rem); }
  .risk-grid, .scenario-grid { grid-template-columns: 1fr; }
  .risk-card { min-height: 230px; }
  .green-statement { grid-template-columns: 42px 1fr; gap: 18px; }
  .process-item { grid-template-columns: 52px 1fr; gap: 15px; }
  .service-row { grid-template-columns: 48px 1fr; gap: 14px; }
  .question { padding: 22px 20px; }
  .answer-group button { flex: 1; min-width: 78px; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; }
}
