:root {
  color-scheme: light;
  --ink: #101820;
  --muted: #5b6773;
  --line: #dce4e8;
  --panel: #ffffff;
  --soft: #f3f7f8;
  --teal: #00a6a6;
  --teal-dark: #007d82;
  --lime: #b9d53d;
  --gold: #f0a633;
  --red: #d94f45;
  --blue: #276ef1;
  --shadow: 0 22px 70px rgba(16, 24, 32, 0.16);
  --radius: 8px;
  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;
  color: var(--ink);
  background: #fbfcfc;
  font-size: 16px;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 18px clamp(18px, 4vw, 54px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 40px rgba(16, 24, 32, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  min-width: 220px;
  text-decoration: none;
}

.brand-logo {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: var(--radius);
  background: #101820;
  object-fit: cover;
}

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

.brand strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: currentColor;
  font-size: 0.76rem;
  opacity: 0.74;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 0.92rem;
}

.nav a,
.header-cta {
  text-decoration: none;
}

.nav a {
  opacity: 0.86;
}

.nav a:hover,
.header-cta:hover {
  opacity: 1;
}

.header-cta {
  justify-self: end;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.13);
  font-weight: 800;
}

.is-scrolled .header-cta {
  border-color: var(--line);
  background: var(--ink);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 92svh;
  overflow: clip;
  color: #fff;
  background: #101820;
}

.hero picture,
.hero img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 13, 18, 0.94) 0%, rgba(8, 16, 22, 0.79) 35%, rgba(8, 16, 22, 0.18) 70%, rgba(8, 16, 22, 0.38) 100%),
    linear-gradient(0deg, rgba(8, 16, 22, 0.84) 0%, rgba(8, 16, 22, 0) 35%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 92svh;
  width: min(760px, 100%);
  flex-direction: column;
  justify-content: center;
  padding: 128px clamp(22px, 5vw, 72px) 52px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #9be9e6;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 16px 0 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  padding: 13px 20px;
  background: var(--teal);
  color: #fff;
  box-shadow: 0 18px 42px rgba(0, 166, 166, 0.35);
}

.button.primary:hover {
  background: var(--teal-dark);
}

.button.secondary {
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 670px;
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(18px);
}

.hero-stats div {
  padding: 16px;
  background: rgba(10, 20, 27, 0.38);
}

.hero-stats dt {
  font-weight: 950;
}

.hero-stats dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.trust-strip span {
  min-height: 74px;
  padding: 20px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-weight: 900;
  text-align: center;
}

.trust-strip span:last-child {
  border-right: 0;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 118px) 0;
}

.section-heading {
  max-width: 690px;
}

.section-heading h2,
.proof-panel h2,
.contact-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.7fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: end;
}

.intro > p {
  color: var(--muted);
  font-size: 1.1rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.service-card {
  min-height: 236px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 30px rgba(16, 24, 32, 0.05);
}

.service-card.feature {
  grid-column: span 2;
  background: var(--ink);
  color: #fff;
}

.service-card.caution {
  border-color: rgba(217, 79, 69, 0.24);
  background: #fff8f7;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
  line-height: 1.15;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-card.feature p {
  color: rgba(255, 255, 255, 0.72);
}

.service-card.caution .icon {
  background: #ffe6e3;
  color: #a2352d;
}

.icon {
  display: inline-grid;
  min-width: 44px;
  width: auto;
  height: 44px;
  place-items: center;
  padding: 0 10px;
  margin-bottom: 24px;
  border-radius: var(--radius);
  background: #e6f6f6;
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 950;
}

.feature .icon {
  background: var(--lime);
  color: var(--ink);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.steps li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.steps span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: var(--soft);
  color: var(--teal-dark);
  font-weight: 950;
}

.steps h3 {
  margin-bottom: 8px;
}

.steps p {
  margin-bottom: 0;
  color: var(--muted);
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  gap: 22px;
  align-items: stretch;
}

.proof-panel {
  padding: clamp(28px, 5vw, 58px);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 166, 166, 0.18), rgba(185, 213, 61, 0.16)),
    #f7fbfb;
}

.proof-panel p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.quote-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
}

.quote-card p {
  font-size: 1.28rem;
  line-height: 1.35;
}

.quote-card strong {
  color: #9be9e6;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.pricing-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.pricing-grid .highlight {
  border-color: rgba(0, 166, 166, 0.36);
  box-shadow: var(--shadow);
}

.pricing-grid span {
  color: var(--muted);
  font-weight: 900;
}

.pricing-grid strong {
  display: block;
  margin: 12px 0;
  font-size: 2.15rem;
  line-height: 1;
}

.pricing-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  width: 100%;
  padding-right: clamp(20px, 5vw, 72px);
  padding-left: clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: #fff;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-list a,
.contact-list span {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 850;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(0, 166, 166, 0.22);
  border-color: var(--teal);
}

.contact-form .button {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #fff;
  font-size: 0.94rem;
}

.footer a {
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 13, 18, 0.94) 0%, rgba(8, 16, 22, 0.72) 58%, rgba(8, 16, 22, 0.35) 100%),
      linear-gradient(0deg, rgba(8, 16, 22, 0.88) 0%, rgba(8, 16, 22, 0) 42%);
  }

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

  .intro,
  .split,
  .proof,
  .contact {
    grid-template-columns: 1fr;
  }

  .service-card.feature {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 0.9rem;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .header-cta {
    padding: 9px 12px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: 760px;
  }

  .hero img {
    object-position: 67% center;
  }

  .hero-content {
    min-height: 760px;
    padding-top: 104px;
  }

  h1 {
    font-size: clamp(2.5rem, 14vw, 4.4rem);
  }

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

  .hero-stats,
  .trust-strip,
  .service-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip span {
    min-height: 54px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-card,
  .steps li,
  .pricing-grid article,
  .quote-card,
  .contact-form {
    padding: 20px;
  }

  .steps li {
    grid-template-columns: 1fr;
  }
}
