:root {
  color-scheme: light;
  --ink: #141414;
  --muted: #5e6365;
  --paper: #f4f7ef;
  --paper-strong: #fffdf6;
  --night: #0e1414;
  --night-soft: #142020;
  --teal: #087d73;
  --teal-light: #169b62;
  --amber: #d5a51c;
  --danger: #c33f3d;
  --blue: #21539a;
  --line: rgba(20, 20, 20, 0.14);
  --line-dark: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 70px rgba(17, 19, 21, 0.18);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.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-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px clamp(18px, 5vw, 56px);
  color: #fffdf8;
  background: rgba(17, 19, 21, 0.88);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fffdf8;
  font-weight: 800;
  letter-spacing: 0;
  background: linear-gradient(135deg, var(--teal), var(--amber) 58%, var(--blue));
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
}

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

.brand strong {
  font-size: 1rem;
  line-height: 1.05;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 253, 248, 0.68);
  font-size: 0.76rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 12px;
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.92rem;
  border-radius: 6px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fffdf8;
  background: rgba(255, 255, 255, 0.09);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fffdf8;
  background: transparent;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
}

.nav-toggle span[aria-hidden="true"],
.nav-toggle span[aria-hidden="true"]::before,
.nav-toggle span[aria-hidden="true"]::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 10px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span[aria-hidden="true"] {
  position: relative;
}

.nav-toggle span[aria-hidden="true"]::before,
.nav-toggle span[aria-hidden="true"]::after {
  position: absolute;
  left: 0;
  content: "";
}

.nav-toggle span[aria-hidden="true"]::before {
  top: -6px;
}

.nav-toggle span[aria-hidden="true"]::after {
  top: 6px;
}

.nav-open .nav-toggle span[aria-hidden="true"] {
  background: transparent;
}

.nav-open .nav-toggle span[aria-hidden="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle span[aria-hidden="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(650px, calc(100svh - 106px));
  overflow: hidden;
  color: #fffdf8;
  background: var(--night);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(14, 20, 20, 0.97) 0%, rgba(14, 20, 20, 0.83) 38%, rgba(14, 20, 20, 0.34) 76%),
    linear-gradient(180deg, rgba(14, 20, 20, 0.04), rgba(14, 20, 20, 0.8));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.06);
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(42px, 6vw, 74px) clamp(18px, 5vw, 56px) clamp(28px, 4vw, 48px);
}

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

.hero h1 {
  max-width: 950px;
  margin: 0;
  font-size: clamp(2.45rem, 5.1vw, 4.75rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 253, 248, 0.78);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  gap: 10px;
  font-weight: 750;
  border: 1px solid transparent;
  border-radius: 7px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button svg,
.icon-button svg,
.card-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button:hover,
.button:focus-visible,
.icon-button:hover,
.icon-button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button-primary {
  color: #fffdf8;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 38px rgba(13, 122, 112, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(135deg, #066d65, #128a58);
}

.button-secondary {
  color: #fffdf8;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line-dark);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  color: #fffdf8;
  background: #30302c;
}

.trust-band span {
  display: grid;
  min-height: 76px;
  place-items: center;
  padding: 16px;
  color: rgba(255, 253, 248, 0.8);
  font-size: 0.88rem;
  font-weight: 740;
  text-align: center;
  background: var(--night-soft);
}

.section {
  scroll-margin-top: 72px;
  padding: clamp(66px, 10vw, 118px) clamp(18px, 5vw, 56px);
}

.section-heading {
  width: min(100%, var(--max));
  margin: 0 auto clamp(28px, 5vw, 48px);
}

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

.section-heading p:not(.eyebrow),
.proof-panel p,
.contact-copy p {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.service-card {
  min-height: 278px;
  padding: 28px;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(17, 19, 21, 0.06);
}

.card-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 38px;
  color: var(--teal);
  background: rgba(13, 122, 112, 0.1);
  border: 1px solid rgba(13, 122, 112, 0.22);
  border-radius: 8px;
}

.service-card h3,
.timeline h3 {
  margin: 0 0 12px;
  font-size: 1.18rem;
}

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

.proof-section {
  color: #fffdf8;
  background:
    linear-gradient(135deg, rgba(8, 125, 115, 0.36), transparent 38%),
    linear-gradient(315deg, rgba(213, 165, 28, 0.16), transparent 40%),
    var(--night);
}

.proof-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(28px, 5vw, 58px);
  width: min(100%, var(--max));
  margin: 0 auto;
  align-items: start;
}

.proof-panel p {
  color: rgba(255, 253, 248, 0.72);
}

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

.proof-list li {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
}

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

.proof-list strong {
  color: #fffdf8;
}

.proof-list span {
  margin-top: 6px;
  color: rgba(255, 253, 248, 0.65);
}

.method-section {
  background: #edf2e5;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, var(--max));
  padding: 0;
  margin: 0 auto;
  list-style: none;
  counter-reset: step;
}

.timeline li {
  position: relative;
  min-height: 260px;
  padding: 26px 22px;
  background: rgba(255, 250, 241, 0.74);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 32px;
  margin-bottom: 58px;
  color: var(--danger);
  font-size: 0.84rem;
  font-weight: 850;
  border: 1px solid rgba(185, 67, 63, 0.26);
  border-radius: 8px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.72fr);
  gap: clamp(30px, 6vw, 70px);
  align-items: start;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.contact-email {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  margin-top: 26px;
  padding: 8px 8px 8px 14px;
  background: #fffaf1;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-email a {
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--teal);
  font-weight: 800;
}

.icon-button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.icon-button.is-copied {
  color: #fffdf8;
  background: var(--teal);
  border-color: var(--teal);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  background: #fffaf1;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #333331;
  font-size: 0.88rem;
  font-weight: 760;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid rgba(20, 20, 20, 0.18);
  border-radius: 7px;
  outline: none;
}

.contact-form textarea {
  min-height: 138px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(13, 122, 112, 0.12);
}

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

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

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 5vw, 56px);
  color: rgba(255, 253, 248, 0.72);
  background: var(--night);
  border-top: 1px solid var(--line-dark);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #fffdf8;
  font-weight: 760;
}

@media (max-width: 920px) {
  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(14, 20, 20, 0.96) 0%, rgba(14, 20, 20, 0.78) 58%, rgba(14, 20, 20, 0.6)),
      linear-gradient(180deg, rgba(14, 20, 20, 0.04), rgba(14, 20, 20, 0.82));
  }

  .trust-band,
  .service-grid,
  .proof-panel,
  .timeline,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .service-card,
  .timeline li {
    min-height: 0;
  }

  .card-icon,
  .timeline span {
    margin-bottom: 28px;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
    padding-inline: 16px;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    top: 68px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 4px;
    padding: 12px;
    pointer-events: none;
    visibility: hidden;
    background: rgba(17, 19, 21, 0.96);
    border: 1px solid var(--line-dark);
    border-radius: 8px;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .nav-open .site-nav {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 13px 12px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: 32px;
    padding-bottom: 22px;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 10.8vw, 3.15rem);
  }

  .hero-copy {
    margin-top: 18px;
    font-size: 0.95rem;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .trust-band span {
    min-height: 58px;
  }

  .contact-form {
    padding: 18px;
  }

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

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