@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --bg: #f4f8f6;
  --surface: #ffffff;
  --surface-soft: #ebf3ef;
  --text: #1a2b24;
  --muted: #5d7268;
  --brand-900: #0b3c2d;
  --brand-800: #11533f;
  --brand-700: #196b51;
  --brand-500: #2f8a63;
  --brand-300: #95cfb1;
  --line: #d7e4de;
  --danger: #ce3d3d;
  --warning-soft: #ffe8d8;
  --shadow: 0 16px 32px rgba(11, 60, 45, 0.12);
  --shadow-soft: 0 8px 22px rgba(11, 60, 45, 0.08);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --container: min(1120px, calc(100% - 2rem));
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at 15% -10%, #dbeee4 0%, #f4f8f6 45%), var(--bg);
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

body {
  min-height: 100vh;
}

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

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

main {
  display: block;
}

.skip-link {
  position: absolute;
  left: 0.5rem;
  top: -3rem;
  z-index: 10000;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  color: #fff;
  background: var(--brand-900);
}

.skip-link:focus {
  top: 0.5rem;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
}

.section-title {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  line-height: 1.12;
}

.section-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--brand-700);
  font-weight: 700;
}

.section-lead {
  margin: 0.75rem 0 0;
  max-width: 62ch;
  color: var(--muted);
}

.reveal {
  opacity: 1;
  filter: none;
  transform: none;
  transition: none;
}

.reveal.in {
  opacity: 1;
  filter: none;
  transform: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 1px solid rgba(11, 60, 45, 0.07);
  backdrop-filter: blur(10px);
  background: rgba(244, 248, 246, 0.9);
}

.header-shell {
  width: var(--container);
  margin: 0 auto;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 0.01em;
}

.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.84rem;
  background: linear-gradient(145deg, var(--brand-700), var(--brand-900));
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--brand-900);
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 9px;
  font-weight: 700;
}

.nav-toggle-icon {
  width: 18px;
  height: 14px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav-toggle-icon span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-900);
  transition: transform 180ms ease, opacity 180ms ease;
  transform-origin: center;
}

.nav-toggle[aria-expanded='true'] .nav-toggle-icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded='true'] .nav-toggle-icon span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded='true'] .nav-toggle-icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.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;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.95rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
}

.nav-links a:hover,
.nav-links a[aria-current='page'] {
  color: var(--brand-900);
  background: var(--surface-soft);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 0.8rem;
  color: var(--brand-900);
  font-weight: 700;
  background: var(--surface);
}

.btn {
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-weight: 700;
  font-family: inherit;
  font-size: 0.93rem;
  border-radius: 999px;
  padding: 0.72rem 1.18rem;
  cursor: pointer;
  min-height: 44px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:focus-visible,
.nav-toggle:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid #0f7050;
  outline-offset: 2px;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(130deg, var(--brand-700), var(--brand-900));
  box-shadow: var(--shadow-soft);
}

.btn-ghost {
  color: var(--brand-900);
  background: var(--surface);
  border: 1px solid var(--line);
}

.hero {
  padding: 3.2rem 0 2.4rem;
}

.hero-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: stretch;
}

.hero-copy,
.hero-media {
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid rgba(11, 60, 45, 0.08);
  box-shadow: var(--shadow-soft);
}

.hero-copy {
  padding: clamp(1.2rem, 2.4vw, 2rem);
}

.hero-media {
  min-height: 360px;
  padding: 1rem;
  display: grid;
  place-items: stretch;
}

.media-photo {
  border-radius: calc(var(--radius-xl) - 7px);
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(11, 60, 45, 0.06), rgba(11, 60, 45, 0.28)),
    linear-gradient(120deg, #92cdae, #235f48);
  position: relative;
  overflow: hidden;
}

.media-photo::before,
.media-photo::after {
  content: '';
  position: absolute;
  border-radius: 999px;
}

.media-photo::before {
  width: 320px;
  height: 320px;
  right: -60px;
  top: -80px;
  background: rgba(255, 255, 255, 0.2);
}

.media-photo::after {
  width: 240px;
  height: 240px;
  left: -80px;
  bottom: -90px;
  background: rgba(255, 255, 255, 0.15);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.76rem;
  border-radius: 999px;
  background: var(--surface-soft);
  border: 1px solid rgba(11, 60, 45, 0.08);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand-800);
}

.hero h1 {
  margin: 0.9rem 0 0.7rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.15rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.hero p {
  margin: 0;
  color: var(--muted);
  max-width: 58ch;
}

.hero-actions {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero-trust {
  margin-top: 1.05rem;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  color: var(--brand-900);
  font-size: 0.89rem;
  font-weight: 700;
}

.hero-trust li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.42rem 0.7rem;
  background: var(--surface);
}

.stat-band {
  background: var(--brand-900);
  color: #ecfff5;
  margin-top: 1.4rem;
}

.stat-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
}

.stat-grid article {
  text-align: center;
  padding: 1rem 0.75rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}

.stat-grid strong {
  display: block;
  font-size: 1.38rem;
  font-family: 'Space Grotesk', sans-serif;
  font-variant-numeric: tabular-nums;
}

.stat-grid span {
  font-size: 0.85rem;
  color: #b5d8c8;
}

.grid {
  display: grid;
  gap: 1rem;
}

.cards-3 {
  grid-template-columns: repeat(3, 1fr);
}

.cards-2 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  padding: 1.12rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 2px 0 rgba(11, 60, 45, 0.03);
}

.card h3 {
  margin: 0.34rem 0 0.3rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.icon-dot {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--brand-900);
  background: var(--surface-soft);
  font-size: 0.88rem;
}

.dark-panel {
  background: linear-gradient(160deg, #0d4634 4%, #133e31 60%, #184635 100%);
  color: #e9fff3;
  border-radius: var(--radius-xl);
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.dark-panel p {
  color: #bfdfcf;
}

.checklist {
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.48rem;
}

.checklist li {
  padding-left: 1.45rem;
  position: relative;
}

.checklist li::before {
  content: 'OK';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.74rem;
  font-weight: 700;
  color: #8de3b9;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin-top: 1rem;
}

.metric-box {
  border-radius: var(--radius-md);
  border: 1px solid rgba(11, 60, 45, 0.08);
  padding: 0.8rem;
  background: var(--surface);
}

.metric-box strong {
  font-size: 1.1rem;
  font-family: 'Space Grotesk', sans-serif;
  font-variant-numeric: tabular-nums;
}

.metric-box span {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
}

.testimonial {
  border-left: 4px solid var(--brand-700);
}

.testimonial p {
  font-size: 0.95rem;
}

.testimonial footer {
  margin-top: 0.6rem;
  color: var(--brand-700);
  font-size: 0.85rem;
  font-weight: 700;
}

.faq-wrap {
  max-width: 760px;
  margin-top: 1.2rem;
}

.faq-item {
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line);
  margin-bottom: 0.65rem;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 0.95rem 1rem;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0;
  padding: 0 1rem 1rem;
  color: var(--muted);
}

.cta-band {
  padding: 2.4rem 0;
  background: linear-gradient(125deg, var(--brand-900), #1f5943);
  color: #effff8;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.cta-band::before,
.cta-band::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  opacity: 0.14;
  background: #74c19e;
  pointer-events: none;
  z-index: 0;
}

.cta-band::before {
  width: 280px;
  height: 280px;
  left: -120px;
  bottom: -150px;
}

.cta-band::after {
  width: 180px;
  height: 180px;
  right: -70px;
  top: -70px;
}

.cta-shell {
  width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.cta-shell h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-family: 'Space Grotesk', sans-serif;
}

.cta-shell p {
  margin: 0.35rem 0 0;
  color: #badecd;
}

.site-footer {
  position: relative;
  z-index: 2;
  background: #0a3428;
  color: #dcf6e9;
  padding: 2.3rem 0 1.2rem;
}

.footer-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1.25fr 1fr 1fr 1.2fr;
}

.footer-title {
  margin: 0 0 0.5rem;
  font-family: 'Space Grotesk', sans-serif;
}

.footer-links {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.footer-links a {
  color: #b3d4c5;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #ecfff5;
}

.footer-note {
  width: var(--container);
  margin: 1.2rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(236, 255, 245, 0.14);
  font-size: 0.85rem;
  color: #9bc2b0;
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.page-hero {
  padding: 2.8rem 0 1.6rem;
  text-align: center;
}

.page-hero p {
  margin: 0.7rem auto 0;
  max-width: 62ch;
  color: var(--muted);
}

.tab-row {
  margin-top: 1rem;
  display: inline-flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.tab-row a {
  border-radius: 999px;
  border: 1px solid var(--line);
  padding: 0.42rem 0.78rem;
  font-size: 0.86rem;
  color: var(--muted);
}

.tab-row a:hover,
.tab-row a[aria-current='true'] {
  background: var(--surface-soft);
  color: var(--brand-900);
}

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

.service-card h3 {
  margin-top: 0;
}

.service-card .btn {
  margin-top: 0.9rem;
}

.inline-list {
  margin: 0.6rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.42rem;
}

.inline-list li {
  padding-left: 1.2rem;
  position: relative;
  color: var(--muted);
  font-size: 0.92rem;
}

.inline-list li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--brand-700);
  font-weight: 800;
}

.contact-layout {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.info-cards {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(4, 1fr);
}

form {
  display: grid;
  gap: 0.8rem;
}

.two-col {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(2, 1fr);
}

label {
  display: grid;
  gap: 0.34rem;
  color: var(--muted);
  font-size: 0.87rem;
  font-weight: 700;
}

input,
select,
textarea {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  font-family: inherit;
  font-size: 0.94rem;
  background: #fff;
  color: var(--text);
}

textarea {
  min-height: 116px;
  resize: vertical;
}

.muted {
  color: var(--muted);
}

.small {
  font-size: 0.83rem;
}

.legal {
  max-width: 820px;
}

.legal h2,
.legal h3 {
  font-family: 'Space Grotesk', sans-serif;
}

.legal p,
.legal li {
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 999;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(7, 31, 24, 0.96);
  color: #ecfff5;
  box-shadow: var(--shadow);
  padding: 1rem;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner p {
  margin: 0;
  color: #cbe7d9;
  font-size: 0.92rem;
}

.cookie-actions {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-actions .btn {
  min-height: 40px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(6, 20, 15, 0.62);
  z-index: 1000;
  display: none;
  place-items: center;
  padding: 1rem;
}

.cookie-modal.show {
  display: grid;
}

.cookie-panel {
  width: min(640px, 100%);
  max-height: 90vh;
  overflow: auto;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 1.1rem;
}

.cookie-option {
  margin-top: 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0.75rem;
}

.cookie-option strong {
  display: block;
}

.switch {
  margin-top: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
}

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

@media (max-width: 980px) {
  .hero-grid,
  .cards-3,
  .cards-2,
  .service-layout,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .info-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric-row,
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .header-shell {
    position: relative;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.3rem);
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface);
    box-shadow: var(--shadow-soft);
    flex-direction: column;
    align-items: stretch;
    padding: 0.7rem;
    gap: 0.7rem;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links a {
    display: block;
  }

  .header-actions {
    justify-content: space-between;
  }

  .cta-shell {
    flex-direction: column;
    align-items: flex-start;
  }

  .two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .hero {
    padding-top: 2.2rem;
  }

  .hero-media {
    min-height: 250px;
  }

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

  .info-cards {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    left: 0.6rem;
    right: 0.6rem;
    bottom: 0.6rem;
  }
}

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

  .reveal {
    opacity: 1;
    filter: none;
    transform: none;
  }
}
