:root {
  color-scheme: light;
  --ink: #111827;
  --muted: #5f6b76;
  --line: #dfe7e4;
  --paper: #f5f7f6;
  --panel: #ffffff;
  --deep: #102820;
  --green: #1f6b52;
  --mint: #dcefe8;
  --gold: #c99a42;
  --coral: #d96f50;
  --blue: #dbeaf2;
  --surface: rgba(255, 255, 255, 0.78);
  --shadow: 0 24px 80px rgba(17, 24, 39, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(219, 234, 242, 0.8), transparent 34rem),
    linear-gradient(180deg, #f8faf9 0%, var(--paper) 100%);
  color: var(--ink);
}

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

.site-header {
  position: fixed;
  inset: 14px clamp(12px, 3vw, 34px) auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 60px rgba(17, 24, 39, 0.12);
  backdrop-filter: blur(20px) saturate(150%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(16, 40, 32, 0.18);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 16px;
  line-height: 1.15;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #34443e;
  font-size: 14px;
  font-weight: 750;
}

.desktop-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
}

.desktop-nav a:hover {
  background: rgba(31, 107, 82, 0.09);
  color: var(--green);
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--deep), var(--green));
  color: #fff;
  font-weight: 850;
  white-space: nowrap;
  box-shadow: 0 12px 30px rgba(16, 40, 32, 0.22);
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  overflow: hidden;
  margin: 0;
  padding: 138px clamp(18px, 6vw, 76px) 70px;
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 19, 18, 0.92) 0%, rgba(8, 19, 18, 0.78) 38%, rgba(8, 19, 18, 0.34) 68%, rgba(8, 19, 18, 0.1) 100%),
    linear-gradient(0deg, rgba(8, 19, 18, 0.68), transparent 42%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 410px);
  align-items: center;
  gap: clamp(30px, 5vw, 72px);
  width: min(1180px, 100%);
  margin: auto;
}

.hero-content {
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin: 0 0 16px;
  padding: 0 12px;
  border: 1px solid rgba(201, 154, 66, 0.36);
  border-radius: 999px;
  background: rgba(201, 154, 66, 0.11);
  color: #e8c579;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  max-width: 900px;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  max-width: 820px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
}

.hero-copy {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.62;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 26px 0;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 800;
}

.hero-actions,
.cta-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn.primary {
  background: linear-gradient(135deg, #e0b45b, var(--gold));
  color: #1d170b;
  box-shadow: 0 16px 38px rgba(201, 154, 66, 0.28);
}

.btn.primary:hover {
  background: #d5a74f;
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.44);
  color: #fff;
}

.hero-panel {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.1));
  color: #fff;
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 22px;
  background: rgba(16, 40, 32, 0.44);
}

.panel-top span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 750;
}

.panel-top strong {
  color: var(--gold);
  font-size: 28px;
}

.hero-panel dl {
  margin: 0;
}

.hero-panel div:not(.panel-top) {
  padding: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-panel dt {
  font-size: 18px;
  font-weight: 900;
}

.hero-panel dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.proof-strip {
  display: grid;
  position: relative;
  z-index: 2;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1180px, calc(100% - 36px));
  margin: -42px auto 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.proof-strip div {
  min-height: 120px;
  padding: 24px clamp(18px, 3vw, 32px);
  border-right: 1px solid rgba(16, 40, 32, 0.09);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  font-size: 20px;
}

.proof-strip span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.45;
}

.section,
.split-section,
.contact-section {
  padding: 104px clamp(18px, 6vw, 76px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-heading.wide {
  max-width: 940px;
}

.section-heading p,
.process-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.76;
}

.intro-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), #fff 48%),
    radial-gradient(circle at 84% 16%, rgba(220, 234, 241, 0.72), transparent 25rem);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-grid article {
  min-height: 230px;
  padding: 30px;
  border: 1px solid rgba(223, 231, 228, 0.9);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 60px rgba(17, 24, 39, 0.08);
}

.feature-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 14px;
  background: var(--mint);
  color: var(--green);
  font-size: 13px;
  font-weight: 950;
}

.feature-grid h3,
.service-card h3 {
  font-size: 21px;
}

.feature-grid p,
.service-card p {
  color: var(--muted);
  line-height: 1.65;
}

.services-section {
  background:
    linear-gradient(180deg, #f7faf8 0%, #edf4f0 100%);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(223, 231, 228, 0.9);
  border-radius: 22px;
  background: var(--panel);
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 107, 82, 0.22);
  box-shadow: 0 26px 70px rgba(17, 24, 39, 0.12);
}

.icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 14px;
  background: var(--mint);
  color: var(--deep);
  font-size: 22px;
  font-weight: 950;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 6vw, 72px);
  background:
    radial-gradient(circle at 16% 22%, rgba(201, 154, 66, 0.16), transparent 22rem),
    linear-gradient(135deg, #102820 0%, #17372d 58%, #101827 100%);
  color: #fff;
}

.process-copy {
  align-self: center;
}

.process-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.text-link {
  color: #fff;
  font-weight: 900;
  border-bottom: 2px solid var(--gold);
}

.process-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  counter-reset: step;
  list-style: none;
}

.process-list li {
  position: relative;
  min-height: 116px;
  padding: 24px 24px 24px 74px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.process-list li::before {
  position: absolute;
  left: 22px;
  top: 24px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #e0b45b, var(--gold));
  color: #1d170b;
  content: counter(step);
  counter-increment: step;
  font-weight: 950;
}

.process-list strong,
.process-list span {
  display: block;
}

.process-list strong {
  margin-bottom: 8px;
  font-size: 19px;
}

.process-list span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.areas-section {
  background:
    linear-gradient(180deg, #fff 0%, #f7faf8 100%);
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-list span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid rgba(31, 107, 82, 0.12);
  border-radius: 999px;
  background: #fff;
  color: #26362f;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.05);
}

.faq-section {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

details {
  border: 1px solid rgba(223, 231, 228, 0.95);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(17, 24, 39, 0.06);
}

summary {
  cursor: pointer;
  padding: 22px;
  color: var(--deep);
  font-size: 18px;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.65;
}

.cta-section {
  justify-content: space-between;
  padding: 58px clamp(18px, 6vw, 76px);
  background:
    radial-gradient(circle at 84% 22%, rgba(219, 234, 242, 0.22), transparent 20rem),
    linear-gradient(135deg, #102820 0%, #1f6b52 100%);
  color: #fff;
}

.cta-section h2 {
  margin-bottom: 0;
  max-width: 860px;
  font-size: clamp(28px, 4vw, 44px);
}

.btn.dark {
  background: #fff;
  color: var(--deep);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 72px);
  background:
    radial-gradient(circle at 10% 18%, rgba(220, 239, 232, 0.85), transparent 24rem),
    #fff;
}

.contact-panel {
  align-self: start;
  overflow: hidden;
  border: 1px solid rgba(223, 231, 228, 0.95);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-row {
  display: grid;
  gap: 8px;
  padding: 23px;
  border-bottom: 1px solid var(--line);
  font-style: normal;
}

.contact-row:last-child {
  border-bottom: 0;
}

.contact-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-row strong {
  overflow-wrap: anywhere;
  font-size: 18px;
  line-height: 1.35;
}

.contact-note {
  display: grid;
  gap: 8px;
  padding: 23px;
  background: #f4f8f6;
}

.contact-note strong {
  color: var(--deep);
}

.contact-note span {
  color: var(--muted);
  line-height: 1.55;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 6vw, 76px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer a {
  color: var(--green);
  font-weight: 900;
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .hero-inner,
  .service-grid,
  .feature-grid,
  .split-section,
  .contact-section,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    margin-top: 120px;
  }

  .proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card,
  .feature-grid article {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 70px;
    padding: 9px 14px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand strong {
    max-width: 168px;
    font-size: 13px;
  }

  .brand small {
    font-size: 11px;
  }

  .header-call {
    min-height: 38px;
    padding: 0 10px;
    font-size: 13px;
  }

  .hero {
    padding: 92px 18px 34px;
  }

  .hero-inner {
    margin-top: 38px;
    gap: 20px;
  }

  h1 {
    font-size: 39px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .section,
  .split-section,
  .contact-section {
    padding: 62px 18px;
  }

  .process-list li {
    padding-right: 18px;
  }

  .site-footer,
  .cta-section {
    align-items: flex-start;
    flex-direction: column;
  }
}
