:root {
  --bg: #fffaf2;
  --surface: #ffffff;
  --ink: #151515;
  --muted: #66645f;
  --line: #ece4d8;
  --red: #ed1c24;
  --red-dark: #bb1219;
  --yellow: #ffc400;
  --green: #16966d;
  --shadow: 0 20px 60px rgba(22, 22, 22, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

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

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

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px max(20px, calc((100vw - 1120px) / 2));
  background: rgba(255, 250, 242, 0.92);
  border-bottom: 1px solid rgba(236, 228, 216, 0.8);
  backdrop-filter: blur(14px);
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #332f2b;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--red);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 9px;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 76px);
  display: flex;
  align-items: center;
  padding: 72px 0 46px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 196, 0, 0.16), rgba(255, 250, 242, 0.5) 42%, rgba(237, 28, 36, 0.12)),
    radial-gradient(circle at 82% 22%, rgba(255, 196, 0, 0.36), transparent 28%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr 0.88fr;
  gap: 44px;
  align-items: center;
}

.hero-copy {
  max-width: 700px;
  min-width: 0;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
  word-break: normal;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.55rem, 6vw, 5.65rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-text {
  max-width: 620px;
  margin: 26px 0 0;
  color: #46413a;
  font-size: clamp(1.06rem, 2vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 2px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 14px 26px rgba(237, 28, 36, 0.22);
}

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

.button.secondary {
  background: #fff;
  border-color: #f1dcb0;
  color: #332c20;
}

.hero-visual {
  justify-self: center;
  width: min(480px, 100%);
  min-width: 0;
}

.hero-visual img {
  filter: drop-shadow(0 26px 38px rgba(15, 15, 15, 0.15));
}

.metrics {
  position: relative;
  z-index: 2;
  margin-top: -22px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.metrics-grid div {
  min-height: 112px;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.metrics-grid div:last-child {
  border-right: 0;
}

.metrics-grid strong {
  display: block;
  font-size: 1.3rem;
}

.metrics-grid span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.section {
  padding: 92px 0;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 34px;
}

.section-heading.compact {
  margin-inline: auto;
  text-align: center;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 18px 0 10px;
  font-size: 1.18rem;
}

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

.service {
  min-height: 390px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service img {
  width: 150px;
  aspect-ratio: 1;
  object-fit: contain;
}

.service p,
.results-grid p,
.contact-grid p {
  color: var(--muted);
}

.contrast {
  background: #151515;
  color: #fff;
}

.contrast .eyebrow {
  color: var(--yellow);
}

.results-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 44px;
  align-items: center;
}

.contrast p {
  color: #d4d1ca;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--yellow);
  border-radius: 50%;
}

.result-image {
  margin: 0;
}

.result-image img {
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
}

.partners {
  background: #fff;
}

.partner-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 30px;
}

.partner-strip img {
  width: 100%;
  max-height: 92px;
  min-height: 92px;
  object-fit: contain;
  padding: 20px;
  background: #fffaf2;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-section {
  background: #fff2d3;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border: 1px solid #ead4a2;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #332f2b;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #dacdb9;
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  outline: 3px solid rgba(237, 28, 36, 0.12);
}

.honeypot {
  position: absolute;
  left: -10000px;
}

.site-footer {
  padding: 34px 0;
  background: #111;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
}

.footer-grid p {
  margin: 0;
  color: #d6d2ca;
}

.footer-grid a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 920px) {
  .menu-button {
    display: inline-block;
  }

  .nav {
    position: absolute;
    inset: 76px 20px auto 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

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

  .hero {
    min-height: auto;
    padding-top: 58px;
  }

  .hero-grid,
  .results-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2rem, 8vw, 3.4rem);
    line-height: 1.02;
  }

  .hero-text {
    max-width: 56ch;
  }

  .hero-visual {
    width: min(420px, 78vw);
  }

  .services-grid,
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .metrics-grid div {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    min-height: 68px;
    width: 100%;
    padding: 12px 14px;
  }

  .brand img {
    width: 150px;
  }

  .nav {
    top: 68px;
  }

  .hero {
    padding: 42px 0 34px;
  }

  .hero-grid {
    gap: 28px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(1.95rem, 9.5vw, 2.65rem);
    line-height: 1.02;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .button {
    width: 100%;
    max-width: 100%;
  }

  .services-grid,
  .metrics-grid,
  .partner-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .metrics-grid div,
  .metrics-grid div:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metrics-grid div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 64px 0;
  }

  .service {
    min-height: 0;
  }
}
