:root {
  color-scheme: light;
  --ink: #101820;
  --muted: #52606b;
  --panel: #ffffff;
  --line: #d7dee5;
  --wash: #eef3f7;
  --steel: #2d3d4a;
  --cyan: #00aeea;
  --cyan-dark: #087eaa;
  --green: #2f8f6a;
  --warn: #d49b2a;
  --shadow: 0 18px 45px rgba(16, 24, 32, 0.14);
  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: #f7fafc;
}

a {
  color: inherit;
}

.site-header {
  align-items: center;
  background: rgba(247, 250, 252, 0.92);
  border-bottom: 1px solid rgba(215, 222, 229, 0.8);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 14px clamp(18px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
}

.brand,
.site-header nav,
.phone-link,
.hero-actions,
.form-actions {
  align-items: center;
  display: flex;
}

.brand {
  font-weight: 800;
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  align-items: center;
  background: var(--ink);
  border: 2px solid var(--cyan);
  color: white;
  display: inline-flex;
  font-size: 0.76rem;
  height: 34px;
  justify-content: center;
  letter-spacing: 0.08em;
  width: 44px;
}

.site-header nav {
  gap: 22px;
}

.site-header nav a,
.phone-link {
  color: var(--steel);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.phone-link {
  border: 1px solid var(--line);
  border-radius: 4px;
  min-height: 38px;
  padding: 8px 12px;
}

.hero {
  background: #071018;
  min-height: 92vh;
  overflow: hidden;
  position: relative;
}

.hero-image {
  bottom: auto;
  height: 100%;
  left: 0;
  object-fit: contain;
  object-position: center top;
  position: absolute;
  right: 0;
  top: -110px;
  width: 100%;
  background: #071018;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(7, 13, 18, 0.92), rgba(7, 13, 18, 0.64) 34%, rgba(7, 13, 18, 0.08) 72%),
    linear-gradient(0deg, rgba(7, 13, 18, 0.58), rgba(7, 13, 18, 0.05) 42%);
  inset: 0;
  position: absolute;
}

.hero-content {
  color: white;
  max-width: 560px;
  padding: 48vh clamp(22px, 6vw, 88px) 9vh;
  position: relative;
  z-index: 2;
}

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

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

h1 {
  font-size: clamp(2.4rem, 4.6vw, 3.8rem);
  line-height: 1;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: 0;
  line-height: 1.02;
  margin-bottom: 16px;
}

h2 span {
  display: block;
}

h3 {
  font-size: 1.12rem;
  margin-bottom: 10px;
}

p {
  line-height: 1.6;
}

.hero-copy {
  color: #dce7ee;
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  max-width: 520px;
}

.hero-actions,
.form-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  align-items: center;
  border-radius: 5px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  text-decoration: none;
  transition:
    transform 140ms ease,
    background 140ms ease,
    border-color 140ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--cyan);
  color: #041017;
}

.button.primary:hover {
  background: #35c5f4;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: white;
}

.quote-form .button.secondary {
  border-color: var(--line);
  color: var(--steel);
}

.section {
  padding: clamp(56px, 8vw, 108px) clamp(20px, 6vw, 88px);
}

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

.section-heading > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-section {
  padding-top: clamp(42px, 6vw, 80px);
}

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

.fit-grid article,
.process-grid article,
.exclusions {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 8px 28px rgba(16, 24, 32, 0.06);
  padding: 22px;
}

.fit-grid p,
.process-grid p,
.exclusions li,
.check-list li {
  color: var(--muted);
}

.band {
  background: #e8eef3;
}

.two-column {
  align-items: start;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  margin-top: 28px;
}

.check-list,
.exclusions ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list li,
.exclusions li {
  border-bottom: 1px solid rgba(82, 96, 107, 0.18);
  padding: 0 0 12px 28px;
  position: relative;
}

.check-list li::before,
.exclusions li::before {
  content: "";
  height: 9px;
  left: 0;
  position: absolute;
  top: 8px;
  width: 9px;
}

.check-list li::before {
  background: var(--green);
}

.exclusions li::before {
  background: var(--warn);
}

.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-grid span {
  color: var(--cyan-dark);
  display: inline-block;
  font-size: 0.86rem;
  font-weight: 900;
  margin-bottom: 18px;
}

.quote-section {
  background: #101820;
  color: white;
}

.quote-section .section-heading > p:not(.eyebrow) {
  color: #c6d4de;
}

.quote-form {
  background: white;
  border-radius: 6px;
  box-shadow: var(--shadow);
  color: var(--ink);
  margin-top: 30px;
  max-width: 1040px;
  padding: clamp(20px, 4vw, 34px);
}

.form-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

label {
  color: var(--steel);
  display: grid;
  font-size: 0.9rem;
  font-weight: 800;
  gap: 7px;
}

input,
select,
textarea {
  background: #f8fbfd;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  font: inherit;
  min-height: 44px;
  padding: 10px 12px;
  width: 100%;
}

textarea {
  line-height: 1.5;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--cyan-dark);
  box-shadow: 0 0 0 3px rgba(0, 174, 234, 0.18);
  outline: none;
}

.quote-form > label {
  margin-top: 16px;
}

.field-help {
  color: var(--muted);
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.45;
  margin: 5px 0 8px;
}

.form-note,
.form-status {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 16px 0 0;
}

.form-status.success {
  color: var(--green);
  font-weight: 800;
}

.form-status.info {
  color: var(--cyan);
  font-weight: 800;
}

.form-status.error {
  color: #b63c3c;
  font-weight: 800;
}

.trap-field {
  left: -10000px;
  opacity: 0;
  position: absolute;
}

.site-footer {
  align-items: center;
  background: #071018;
  color: #dce7ee;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  justify-content: space-between;
  padding: 26px clamp(20px, 6vw, 88px);
}

.site-footer a {
  color: var(--cyan);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    position: absolute;
  }

  .site-header nav {
    flex-wrap: wrap;
    gap: 12px;
  }

  .phone-link {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-image {
    top: 34px;
  }

  .hero-content {
    padding-top: 350px;
  }

  .fit-grid,
  .process-grid,
  .two-column,
  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand {
    font-size: 0.95rem;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    padding-left: 18px;
    padding-right: 18px;
    padding-top: 335px;
  }

  h1 {
    font-size: 3rem;
  }

  .button {
    width: 100%;
  }
}
