:root {
  --ink: #111827;
  --muted: #5d6675;
  --line: #e4e7ec;
  --paper: #ffffff;
  --soft: #f5f7fa;
  --dark: #121820;
  --red: #c82012;
  --red-dark: #9d1e13;
  --blue: #164c7c;
  --green: #0c7c59;
  --shadow: 0 18px 46px rgba(17, 24, 39, .13);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html { width: 100%; max-width: 100%; overflow-x: hidden; }
body {
  margin: 0;
  font-family: Aptos, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
.skip-link {
  position: absolute;
  top: -60px;
  left: 12px;
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  z-index: 20;
}
.skip-link:focus { top: 12px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.topbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 8px clamp(18px, 4vw, 52px);
  color: white;
  background: var(--dark);
  font-size: 14px;
}
.topbar a { font-weight: 800; color: white; }
.nav-shell {
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 0 clamp(18px, 4vw, 52px);
}
.brand img { width: 178px; height: auto; }
.site-menu {
  display: flex;
  justify-content: center;
  gap: 2px;
  flex-wrap: wrap;
}
.site-menu a {
  padding: 10px 12px;
  border-radius: 6px;
  font-weight: 750;
  font-size: 15px;
  color: #273143;
}
.site-menu a:hover,
.site-menu a[aria-current="page"] {
  background: #fff1ef;
  color: var(--red-dark);
}
.nav-call,
.button,
.hero-form button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 850;
  border: 0;
  cursor: pointer;
}
.nav-call,
.button.primary,
.hero-form button {
  background: var(--red);
  color: white;
  box-shadow: 0 12px 24px rgba(237, 50, 27, .22);
}
.button.quiet {
  background: white;
  color: var(--ink);
  border: 1px solid var(--line);
}
.menu-toggle { display: none; }
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .45fr);
  min-height: 720px;
  overflow: hidden;
  background: #0f1720;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media {
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  opacity: .32;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15,23,32,.94), rgba(15,23,32,.72) 52%, rgba(15,23,32,.2)),
    radial-gradient(circle at 75% 15%, rgba(237,50,27,.2), transparent 34%);
}
.hero-content,
.hero-form {
  position: relative;
  z-index: 1;
  min-width: 0;
}
.hero-content {
  align-self: center;
  max-width: 760px;
  padding: 74px 0 74px clamp(20px, 5vw, 72px);
  color: white;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  font-weight: 900;
}
.hero-content .eyebrow { color: #ffb5ad; }
h1, h2, h3 { line-height: 1.08; letter-spacing: 0; }
h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(42px, 6vw, 74px);
  text-wrap: balance;
}
h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 4vw, 48px);
}
p { color: var(--muted); }
.hero-content p {
  max-width: 690px;
  color: rgba(255,255,255,.86);
  font-size: 18px;
}
.hero-content .problem {
  margin: 22px 0 10px;
  color: white;
  font-weight: 900;
  font-size: clamp(20px, 3vw, 28px);
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 28px 0 22px;
}
.trust-row,
.check-list,
.proof-band ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.trust-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.trust-row li {
  border: 1px solid rgba(255,255,255,.18);
  color: white;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  font-weight: 700;
  font-size: 14px;
}
.hero-form {
  align-self: center;
  margin: 42px clamp(18px, 4vw, 54px) 42px 0;
  background: rgba(255,255,255,.98);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-head,
.wide {
  grid-column: 1 / -1;
}
.form-head span {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  font-weight: 900;
}
.form-head strong {
  display: block;
  font-size: 28px;
  line-height: 1.05;
}
label span {
  display: block;
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: 800;
  color: #2b3445;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid #d9dee7;
  border-radius: 6px;
  padding: 12px 12px;
  font: inherit;
  color: var(--ink);
  background: white;
}
textarea { resize: vertical; }
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(237,50,27,.18);
  border-color: var(--red);
}
.trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-error {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--red-dark);
  font-size: 14px;
  font-weight: 800;
}
.hero-form button,
.form-note {
  grid-column: 1 / -1;
}
.form-note {
  margin: 0;
  text-align: center;
  font-size: 14px;
}
.form-note a { color: var(--red-dark); font-weight: 850; }
.section {
  padding: clamp(58px, 8vw, 105px) clamp(20px, 5vw, 72px);
}
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(300px, .7fr);
  gap: 46px;
  align-items: start;
}
.intro-grid p { font-size: 18px; }
.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.check-list li {
  padding: 16px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: 6px;
  background: white;
  font-weight: 800;
}
.split {
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 72px);
  background: var(--soft);
}
.image-stack {
  display: grid;
  gap: 14px;
}
.image-stack img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.image-stack img:nth-child(2) {
  width: 78%;
  margin-left: auto;
  margin-top: -80px;
  border: 8px solid var(--soft);
}
.copy-block {
  padding: 0 0 24px;
  border-bottom: 1px solid var(--line);
}
.copy-block + .copy-block { padding-top: 28px; }
.copy-block h2 { font-size: clamp(28px, 3vw, 42px); }
.copy-block p { font-size: 18px; }
.proof-band {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(300px, .8fr);
  gap: 42px;
  background: var(--dark);
  color: white;
}
.proof-band .eyebrow { color: #ffb5ad; }
.proof-band h2 { color: white; }
.proof-band ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.proof-band li {
  padding: 18px;
  border-radius: 6px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  font-weight: 850;
}
.services-strip { background: white; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.service-card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(180deg, #fff, #fafbfc);
}
.service-card:hover {
  border-color: rgba(237,50,27,.45);
  box-shadow: var(--shadow);
}
.service-card span {
  color: var(--red);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 900;
}
.service-card strong {
  display: block;
  margin: 14px 0;
  font-size: 24px;
}
.service-card small {
  color: var(--muted);
  font-size: 15px;
}
.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(340px, .7fr);
  gap: 42px;
  align-items: start;
  background:
    linear-gradient(135deg, rgba(237,50,27,.06), rgba(22,76,124,.06)),
    white;
}
.contact-panel .hero-form {
  margin: 0;
  background: white;
}
.contact-links {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.contact-links a {
  padding: 16px;
  border-left: 4px solid var(--red);
  background: white;
  border-radius: 6px;
  font-weight: 850;
  box-shadow: 0 8px 24px rgba(17,24,39,.07);
}
.faq {
  max-width: 980px;
  margin: 0 auto;
}
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
  margin-top: 12px;
  background: white;
}
summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 18px;
}
details p { margin-bottom: 0; }
.site-footer {
  display: grid;
  grid-template-columns: 1.2fr .7fr .8fr;
  gap: 30px;
  padding: 52px clamp(20px, 5vw, 72px);
  color: white;
  background: #0d1219;
}
.site-footer p,
.site-footer span { color: rgba(255,255,255,.72); }
.site-footer a,
.site-footer strong,
.site-footer span {
  display: block;
  margin: 8px 0;
}
.site-footer a { color: white; }
@media (max-width: 1020px) {
  .nav-shell {
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .menu-toggle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid var(--line);
    background: white;
    border-radius: 6px;
    font-weight: 850;
  }
  .site-menu {
    grid-column: 1 / -1;
    display: none;
    justify-content: start;
    padding-bottom: 16px;
  }
  .site-menu.is-open { display: flex; }
  .nav-call { display: none; }
  .hero,
  .intro-grid,
  .split,
  .proof-band,
  .contact-panel,
  .site-footer {
    grid-template-columns: 1fr;
  }
  .hero-content {
    padding: 52px 20px 12px;
  }
  .hero-form {
    margin: 20px;
  }
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 680px) {
  .topbar {
    display: none;
  }
  .nav-shell {
    min-height: 72px;
    padding: 0 16px;
  }
  .menu-toggle {
    position: fixed;
    top: 15px;
    right: auto;
    left: min(calc(100vw - 88px), 304px);
    z-index: 30;
  }
  .brand img { width: 140px; }
  h1 {
    font-size: clamp(36px, 9.5vw, 40px);
  }
  .hero {
    display: block;
    min-height: auto;
  }
  .hero-content {
    max-width: none;
    width: 100vw;
    padding-right: 20px;
  }
  .hero-content > * {
    max-width: min(330px, 100%);
  }
  .hero-content p {
    max-width: min(330px, 100%);
    font-size: 16px;
    overflow-wrap: break-word;
  }
  .hero-content .problem {
    overflow-wrap: break-word;
  }
  .hero-form,
  .check-list,
  .proof-band ul,
  .service-grid {
    grid-template-columns: 1fr;
  }
  .form-head strong {
    font-size: 24px;
  }
  .hero-form {
    width: calc(100vw - 40px);
  }
  .hero-actions .button {
    width: 100%;
  }
  .trust-row {
    max-width: 350px;
  }
  .section {
    padding: 52px 18px;
  }
  .image-stack img:nth-child(2) {
    width: 100%;
    margin: 0;
    border: 0;
  }
}
