:root {
  --teal: #2bb394;
  --teal-dark: #123f38;
  --teal-deep: #0f463f;
  --teal-soft: #e9f8f4;
  --ink: #153b36;
  --muted: #5f706d;
  --line: #cfeee7;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(18, 63, 56, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(207, 238, 231, 0.8);
  backdrop-filter: blur(16px);
}

.brand img,
.footer img {
  display: block;
  width: min(260px, 52vw);
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a,
.header-call,
.button,
.contact-panel a {
  text-decoration: none;
}

.nav a:hover,
.contact-panel a:hover {
  color: var(--teal-deep);
}

.header-call,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
}

.header-call {
  min-height: 42px;
  padding: 0 18px;
  background: var(--teal);
  color: var(--white);
  white-space: nowrap;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
  padding: clamp(40px, 5vw, 68px) clamp(22px, 6vw, 88px) clamp(54px, 6vw, 76px);
  background:
    radial-gradient(circle at top right, rgba(43, 179, 148, 0.17), transparent 34rem),
    linear-gradient(180deg, #f6fffc 0%, #ffffff 68%);
}

.hero-copy {
  max-width: 720px;
}

.eyebrow,
.section-kicker,
.service-label {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--teal-dark);
  font-size: clamp(3rem, 6.4vw, 5.35rem);
  line-height: 1;
  font-weight: 800;
}

h2 {
  color: var(--teal-dark);
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.04;
  margin-bottom: 0;
}

h3 {
  color: var(--teal-dark);
  font-size: 1.45rem;
  line-height: 1.15;
}

.hero-text {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.22rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  min-height: 52px;
  padding: 0 22px;
}

.button.primary {
  background: var(--teal);
  color: var(--white);
}

.button.secondary {
  border: 1px solid var(--line);
  color: var(--teal-deep);
}

.hero-card {
  position: relative;
  overflow: hidden;
  height: 470px;
  border-radius: 8px;
  background: var(--teal-soft);
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.quote-card {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(15, 70, 63, 0.18);
}

.quote-card span {
  display: block;
  margin-bottom: 4px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quote-card strong {
  color: var(--teal-dark);
  font-size: 1.18rem;
}

.intro,
.trust,
.cta,
.services {
  padding-inline: clamp(22px, 6vw, 88px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  padding-top: 76px;
  padding-bottom: 42px;
}

.intro p:last-child,
.cta p {
  color: var(--muted);
  font-size: 1.08rem;
}

.services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding-bottom: 82px;
}

.service-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(26px, 4vw, 40px);
  background: var(--white);
  box-shadow: 0 16px 48px rgba(18, 63, 56, 0.08);
}

.service-card.accent {
  background: var(--teal-soft);
}

.service-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 24px;
  color: #2d4541;
  font-size: 1rem;
}

.service-card li::before {
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.cadence {
  margin-bottom: 0;
  color: var(--teal-deep);
  font-weight: 800;
}

.trust {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  padding-top: 82px;
  padding-bottom: 82px;
  background: var(--teal-dark);
  color: var(--white);
}

.trust h2,
.trust h3 {
  color: var(--white);
}

.steps {
  display: grid;
  gap: 16px;
}

.steps article {
  display: grid;
  grid-template-columns: 46px 1fr;
  column-gap: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.steps span {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-weight: 800;
}

.steps h3 {
  margin-bottom: 5px;
  font-size: 1.16rem;
}

.steps p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(26px, 6vw, 84px);
  align-items: center;
  padding-top: 84px;
  padding-bottom: 84px;
}

.contact-panel {
  display: grid;
  gap: 12px;
  padding: 26px;
  border-radius: 8px;
  background: var(--teal-soft);
  border: 1px solid var(--line);
}

.contact-panel a:first-child {
  font-size: 1.8rem;
  font-weight: 800;
}

.contact-panel a {
  color: var(--teal-dark);
  font-size: 1.08rem;
  font-weight: 700;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(22px, 6vw, 88px);
  background: #f8fffc;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer p {
  margin-bottom: 0;
}

@media (max-width: 860px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .header-call {
    width: 100%;
  }

  .hero,
  .intro,
  .trust,
  .cta {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .hero-card img {
    height: 420px;
  }

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

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

@media (max-width: 560px) {
  .nav {
    flex-wrap: wrap;
  }

  .brand img,
  .footer img {
    width: min(230px, 78vw);
  }

  .hero {
    padding-top: 42px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  h1 {
    font-size: 3rem;
  }

  .service-card,
  .steps article,
  .contact-panel {
    padding: 22px;
  }

  .intro,
  .trust,
  .cta,
  .services {
    padding-inline: 24px;
  }

  .intro,
  .trust,
  .cta {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .contact-panel a:first-child {
    font-size: 1.45rem;
  }
}
