:root {
  --red: #d71920;
  --red-dark: #a91419;
  --black: #111111;
  --dark: #171717;
  --text: #252525;
  --muted: #666666;
  --light: #f4f5f7;
  --border: #e1e1e1;
  --white: #ffffff;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-w: 1180px;

  --topbar-h: 34px;
  --header-h: 92px;

  --radius: 10px;
  --shadow: 0 8px 30px rgba(0,0,0,.10);
}

/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

/* TYPO */
h1,
h2,
h3,
h4 {
  line-height: 1.15;
  color: var(--dark);
}

h1 {
  font-size: clamp(2.45rem, 5vw, 4.6rem);
  font-weight: 850;
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(1.85rem, 3vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.25rem;
  font-weight: 750;
}

p {
  max-width: 70ch;
}

/* LAYOUT */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}

.section {
  padding-block: clamp(52px, 6vw, 86px);
}

.bg-light {
  background: var(--light);
}

.bg-dark {
  background: var(--dark);
  color: var(--white);
}

.bg-dark h2,
.bg-dark h3 {
  color: var(--white);
}

.text-red {
  color: var(--red);
}

.eyebrow {
  display: inline-block;
  color: var(--red);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .76rem;
  margin-bottom: 1rem;
}

.section-header {
  margin-bottom: 2.3rem;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered p {
  margin-inline: auto;
  color: var(--muted);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .82rem 1.55rem;
  border-radius: 7px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .86rem;
  transition: .2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.btn-outline {
  border-color: var(--red);
  color: var(--red);
}

.btn-outline:hover {
  background: var(--red);
  color: var(--white);
}

.btn-outline-white {
  border-color: var(--white);
  color: var(--white);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--dark);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: .94rem;
}

.btn-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* TOPBAR */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--topbar-h);
  background: var(--red);
  color: var(--white);
  z-index: 1001;
  font-size: .8rem;
}

.topbar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar a {
  color: var(--white);
}

.topbar span {
  white-space: nowrap;
}

/* HEADER */
.site-header {
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  right: 0;
  height: var(--header-h);
  background: var(--dark);
  z-index: 1000;
  box-shadow: 0 2px 18px rgba(0,0,0,.25);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header-logo img {
  height: 48px;
  width: auto;
}

.header-nav {
  flex: 1;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: .35rem;
}

.nav-link {
  display: block;
  color: rgba(255,255,255,.9);
  padding: .55rem .75rem;
  font-size: .92rem;
  font-weight: 700;
  border-radius: 6px;
  background: none;
  border: 0;
  cursor: pointer;
}

.nav-link:hover {
  background: rgba(255,255,255,.08);
  color: var(--white);
}

.nav-item {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 245px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: .5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: .2s ease;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: .65rem 1.25rem;
  color: var(--dark);
  font-size: .9rem;
}

.dropdown a:hover {
  background: #f5f5f5;
  color: var(--red);
}

.header-cta {
  margin-left: auto;
}

/* MOBILE MENU */
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

/* HERO */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--topbar-h) + var(--header-h));
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,.88),
    rgba(0,0,0,.74),
    rgba(0,0,0,.55)
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: 4rem;
}

.hero-title {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  color: rgba(255,255,255,.86);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  margin-bottom: 2.2rem;
}

/* TRUST */
.trust-bar {
  background: var(--white);
  padding: 2rem 0;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.trust-number {
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--red);
  display: block;
}

.trust-label {
  font-size: .82rem;
  text-transform: uppercase;
  font-weight: 800;
  color: #555;
  letter-spacing: .08em;
}

/* GRIDS */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 42px;
  align-items: center;
}

/* CARDS */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.6rem;
  box-shadow: 0 2px 14px rgba(0,0,0,.04);
}

.card h3 {
  margin-bottom: .55rem;
}

.card p {
  color: var(--muted);
  font-size: .96rem;
}

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(215,25,32,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-weight: 900;
  margin-bottom: 1rem;
}

/* CHECKLIST */
.checklist {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 1.2rem;
}

.checklist li {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
}

.checklist li::before {
  content: "✓";
  color: var(--red);
  font-weight: 900;
}

/* CTA */
.cta-band {
  background: var(--red);
  color: var(--white);
  padding: clamp(46px,5vw,70px) 0;
  text-align: center;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: .8rem;
}

.cta-band p {
  margin: 0 auto 1.7rem;
  color: rgba(255,255,255,.9);
}

/* FORM */
.form-card {
  background: var(--white);
  border-radius: 16px;
  padding: clamp(24px,4vw,40px);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-full {
  grid-column: 1 / -1;
}

.form-label {
  display: block;
  font-weight: 750;
  font-size: .9rem;
  margin-bottom: .4rem;
}

.form-control {
  width: 100%;
  padding: .85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
}

textarea.form-control {
  min-height: 120px;
}

.form-check {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  font-size: .82rem;
  color: var(--muted);
}

.form-check input {
  margin-top: .25rem;
  accent-color: var(--red);
}

.form-control.error {
  border-color: #c00;
}

/* FOOTER */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,.7);
  padding: 60px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 42px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding-bottom: 38px;
}

.footer-grid h4 {
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .85rem;
  margin-bottom: 1rem;
}

.footer-grid li {
  margin-bottom: .55rem;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 22px;
  font-size: .78rem;
  color: rgba(255,255,255,.45);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  :root {
    --topbar-h: 0px;
    --header-h: 76px;
  }

  .topbar {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .header-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #151515;
    padding: 1.2rem 1.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: .25s ease;
    max-height: calc(100vh - var(--header-h));
    overflow: auto;
  }

  .header-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-link {
    padding: .75rem 0;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: #202020;
    box-shadow: none;
    display: none;
    margin: .4rem 0 .8rem;
    width: 100%;
  }

  .nav-item.open .dropdown {
    display: block;
  }

  .dropdown a {
    color: rgba(255,255,255,.75);
  }

  .grid-3,
  .grid-2,
  .trust-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 72vh;
  }

  .btn-group {
    flex-direction: column;
    align-items: flex-start;
  }
}