:root {
  --bg: #edf6f0;
  --surface: #ffffff;
  --surface-soft: #f3faf5;
  --green-950: #0a2019;
  --green-900: #0d3327;
  --green-800: #124d39;
  --green-700: #176b4c;
  --green-600: #1e8d62;
  --green-500: #2bb673;
  --green-100: #dff8ea;
  --gold: #d3a95a;
  --gold-soft: #f5e7cf;
  --ink: #14261d;
  --ink-soft: #41544d;
  --line: rgba(14, 40, 31, 0.08);
  --shadow: 0 28px 60px rgba(15, 35, 27, 0.14);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: radial-gradient(circle at top, rgba(43, 182, 115, 0.09), transparent 30%), var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0 0 auto;
  height: 100vh;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.22), transparent 45%);
}

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

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section-alt {
  background: var(--surface);
}

.feature-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(242, 250, 245, 0.9));
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--green-700);
}

.eyebrow.accent {
  color: var(--gold);
}

h1,
h2,
h3 {
  margin: 0 0 18px;
  color: var(--ink);
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.7rem, 5vw, 5rem);
  letter-spacing: -0.06em;
}

h2 {
  font-size: clamp(2.1rem, 3vw, 3.3rem);
  letter-spacing: -0.05em;
}

h3 {
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

p {
  margin: 0 0 18px;
  color: var(--ink-soft);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.96rem 1.75rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--green-700), var(--green-950));
  color: #fff;
  box-shadow: 0 18px 36px rgba(11, 35, 27, 0.24);
}

.button-secondary {
  background: var(--surface);
  border-color: rgba(13, 57, 42, 0.12);
  color: var(--green-900);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(237, 246, 240, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 18px;
}

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

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--green-600), var(--green-900));
  box-shadow: inset 0 2px 12px rgba(255, 255, 255, 0.18), 0 16px 28px rgba(13, 51, 39, 0.2);
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 12px;
}

.brand-g {
  position: relative;
  z-index: 1;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.brand-text strong {
  font-size: 1.14rem;
  color: var(--ink);
}

.brand-text small {
  color: var(--ink-soft);
  font-weight: 600;
}

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

.site-nav a {
  color: var(--ink);
  font-weight: 600;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--green-800);
}

.site-nav .button {
  margin-left: 8px;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  background: var(--surface);
  border: 1px solid rgba(13, 57, 42, 0.12);
  border-radius: 14px;
  padding: 9px 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--green-900);
  margin: 6px 0;
}

.hero {
  position: relative;
  padding: 96px 0 56px;
  background: radial-gradient(circle at top right, rgba(43, 182, 115, 0.14), transparent 20%), linear-gradient(180deg, rgba(220, 247, 231, 0.82), rgba(237, 246, 240, 0.2));
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 34px;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.lead {
  max-width: 620px;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 22px;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  color: var(--ink);
  font-weight: 600;
}

.hero-points li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--green-600);
}

.hero-card {
  background: linear-gradient(180deg, #fff, #f4faf7);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(43, 182, 115, 0.12), transparent 70%);
}

.hero-card > * {
  position: relative;
  z-index: 1;
}

.card-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--green-700);
  background: rgba(43, 182, 115, 0.08);
  border-radius: 999px;
  padding: 7px 12px;
  margin-bottom: 18px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-500);
  display: inline-block;
}

.card-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.mini-logo {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--green-600), var(--green-950));
  color: #fff;
  font-weight: 800;
  font-size: 1.8rem;
  box-shadow: 0 12px 28px rgba(12, 48, 36, 0.18);
}

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

.card-brand strong {
  color: var(--ink);
  font-size: 1.1rem;
}

.card-brand small {
  color: var(--ink-soft);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.info-grid div {
  background: rgba(14, 40, 31, 0.03);
  border: 1px solid rgba(14, 40, 31, 0.05);
  border-radius: 14px;
  padding: 14px 12px;
}

.info-grid span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.72rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.info-grid strong {
  display: block;
  font-size: 0.96rem;
  color: var(--ink);
}

.contact-mini {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 600;
  color: var(--green-800);
}

.metrics {
  background: linear-gradient(135deg, var(--green-950), var(--green-700));
  color: #fff;
  padding: 22px 0;
}

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

.metric {
  padding: 18px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.metric strong {
  display: block;
  font-size: clamp(1.06rem, 1.7vw, 1.55rem);
  margin-bottom: 6px;
}

.metric span {
  color: rgba(255, 255, 255, 0.78);
}

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

.feature-card {
  background: linear-gradient(180deg, #fff, #f4faf7);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px 20px;
  box-shadow: 0 12px 24px rgba(19, 33, 27, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(43, 182, 115, 0.14), rgba(211, 169, 90, 0.18));
  color: var(--green-900);
  font-weight: 800;
}

.feature-card h3 {
  margin-bottom: 10px;
}

.feature-card p {
  margin: 0;
}

.trust-bar {
  background: linear-gradient(180deg, rgba(13, 58, 42, 0.02), rgba(13, 58, 42, 0.05));
}

.trust-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
}

.trust-copy {
  max-width: 620px;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(440px, 100%);
}

.trust-stats div {
  padding: 20px 18px;
  border-radius: 18px;
  background: rgba(13, 58, 42, 0.02);
  border: 1px solid rgba(13, 58, 42, 0.06);
}

.trust-stats strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--green-900);
}

.trust-stats span {
  color: var(--ink-soft);
}

.premium-cta {
  background: linear-gradient(135deg, rgba(13, 58, 42, 0.96), rgba(10, 32, 25, 1));
  color: white;
}

.premium-cta .eyebrow,
.premium-cta h2,
.premium-cta .trust-stats strong,
.premium-cta .trust-stats span,
.premium-cta .trust-stats div {
  color: white;
}

.premium-cta .trust-stats div {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.06);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
}

.about-panel {
  background: linear-gradient(180deg, #fff, #f5faf7);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 26px rgba(15, 35, 27, 0.04);
  padding: 28px;
}

.check-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.check-list span {
  display: inline-flex;
  align-items: center;
  background: var(--green-100);
  color: var(--green-800);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 700;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading.narrow {
  max-width: 660px;
}

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

.service-card {
  background: linear-gradient(180deg, #fff, #f7faf8);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: 0 12px 26px rgba(18, 35, 30, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover,
.feature-card:hover,
.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(18, 35, 30, 0.08);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--green-100), var(--gold-soft));
  color: var(--green-900);
  font-weight: 800;
  margin-bottom: 18px;
}

.process-section {
  background: linear-gradient(180deg, rgba(234, 247, 238, 0.9), rgba(245, 250, 247, 0.7));
}

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

.process-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: 0 12px 24px rgba(14, 31, 26, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--green-600), var(--green-900));
  color: #fff;
  font-weight: 800;
  margin-bottom: 14px;
}

.cta-band {
  background: linear-gradient(135deg, rgba(13, 58, 42, 0.96), rgba(10, 32, 25, 1));
  color: white;
}

.cta-band h2,
.cta-band .eyebrow {
  color: white;
}

.cta-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  align-items: stretch;
}

.contact-card,
.map-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(14, 28, 22, 0.04);
}

.contact-card {
  padding: 34px 28px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 16px;
}

.contact-list li {
  padding: 14px 12px;
  border-radius: 12px;
  background: rgba(13, 58, 42, 0.02);
}

.contact-list span {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  font-weight: 800;
  margin-bottom: 6px;
}

.contact-list a,
.contact-list p {
  margin: 0;
  color: var(--ink);
  font-weight: 600;
}

.map-card {
  overflow: hidden;
}

.map-card iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
}

.map-link {
  display: block;
  padding: 16px 18px;
  font-weight: 700;
  color: var(--green-800);
  text-align: center;
  background: rgba(13, 58, 42, 0.03);
}

.site-footer {
  padding: 30px 0 42px;
  background: #0a221b;
  color: rgba(255, 255, 255, 0.8);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.footer-wrap strong {
  color: white;
}

@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .process-grid,
  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 18px 16px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }

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

  .site-nav .button {
    width: 100%;
    margin-left: 0;
  }

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

  .trust-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 76px 0;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .card-grid,
  .process-grid,
  .metric-grid,
  .info-grid,
  .feature-grid,
  .trust-stats {
    grid-template-columns: 1fr;
  }

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

  .brand-text small {
    font-size: 0.7rem;
  }

  .brand-mark {
    width: 50px;
    height: 50px;
  }
}
