:root {
  --bg: #0d1522;
  --surface: #121f31;
  --surface-alt: #f5f7fb;
  --text: #162033;
  --text-light: #f7fafc;
  --muted: #c3cfdd;
  --primary: #f97316;
  --primary-dark: #d85f0b;
  --border: #d5deea;
  --radius: 14px;
  --shadow: 0 12px 28px rgba(13, 21, 34, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.5;
  color: var(--text);
  background: #fff;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

[id] {
  scroll-margin-top: 92px;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.site-header {
  background: var(--bg);
  color: var(--text-light);
  position: sticky;
  top: 0;
  z-index: 20;
  /* box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25); */
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}

.brand img {
  width: 160px;
}

.nav-toggle {
  border: 0;
  background: transparent;
  padding: 0.35rem;
  display: grid;
  gap: 5px;
  cursor: pointer;
  position: relative;
  z-index: 40;
}

.nav-toggle span {
  width: 27px;
  height: 3px;
  border-radius: 99px;
  background: #fff;
  display: block;
}

.site-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(18, 31, 49, 0.98);
  padding: 6.5rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  z-index: 30;
}

.site-nav.open {
  transform: translateX(0);
}

.site-nav a {
  text-decoration: none;
  color: var(--text-light);
  padding: 0.8rem 0.85rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.05rem;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
  text-decoration: none;
  border-radius: 11px;
  font-weight: 700;
  padding: 0.8rem 1.05rem;
  transition: 0.18s ease;
  cursor: pointer;
}

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


.btn.is-submitting,
.btn:disabled {
  background: #f6a162;
  border-color: #f6a162;
  cursor: not-allowed;
  opacity: 0.75;
}

.btn.is-submitting:hover,
.btn:disabled:hover {
  background: #f6a162;
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

.btn-small {
  text-align: center;
}

.hero {
  background-color: var(--bg);;
  /* background: linear-gradient(140deg, #101d2f, #1b2d45); */
  color: var(--text-light);
  padding: 2.5rem 0 2rem;
}

.hero-grid {
  display: grid;
  gap: 1.25rem;
}

.eyebrow {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

h1 {
  margin: 0;
  line-height: 1.1;
  font-size: clamp(1.8rem, 4.8vw, 2.85rem);
}

.lead {
  font-size: clamp(1rem, 3vw, 1.2rem);
  margin: 1rem 0;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.helper-text {
  margin-top: 0.95rem;
  color: var(--muted);
}

.helper-text a {
  color: #fff;
}

.heavy-disclaimer {
  color: #4b5563;
}

.hero-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1rem;
  border-radius: var(--radius);
}

.hero-card h2 {
  margin-top: 0;
  font-size: 1.25rem;
}

.section {
  padding: 2.6rem 0;
}

.section.alt {
  background: var(--surface-alt);
}

h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.45rem, 3.2vw, 2rem);
}

h3 {
  margin-top: 0;
}

.section-intro {
  margin-top: 0;
  margin-bottom: 1.2rem;
  max-width: 70ch;
}

.cards {
  display: grid;
  gap: 1rem;
}

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  background: #fff;
}

.service-disclaimers-section {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-disclaimers {
  margin-top: 1rem;
  display: grid;
  gap: 0.45rem;
}

.service-disclaimers p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #1d1d1d;
}

.service-disclaimers img {
  width: 24px;
  height: 24px;
}
.table-wrap {
  overflow-x: hidden;
  margin-bottom: 1rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

caption {
  text-align: left;
  padding-bottom: 0.5rem;
  font-weight: 700;
}

th,
td {
  border: 1px solid var(--border);
  padding: 0.7rem;
  text-align: left;
}

th {
  /* background: #eef3f9; */
  background-color: var(--bg, .7);
  color: #fff;
}

th:last-child,
td:last-child {
  white-space: nowrap;
}

@media (max-width: 520px) {
  th,
  td {
    padding: 0.6rem 0.55rem;
    font-size: 0.95rem;
  }

  th:last-child,
  td:last-child {
    width: 1%;
  }
}

.contact-grid {
  display: grid;
  gap: 1rem;
}

.quote-form {
  display: grid;
  gap: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  background: #fff;
}

label {
  display: grid;
  gap: 0.3rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #b9c7da;
  border-radius: 10px;
  padding: 0.75rem;
  font: inherit;
}


.service-fieldset {
  margin: 0;
  border: 1px solid #b9c7da;
  border-radius: 10px;
  padding: 0.75rem;
}

.service-fieldset legend {
  padding: 0 0.35rem;
  font-weight: 600;
}

.checkbox-grid {
  display: grid;
  gap: 0.4rem;
}

.checkbox-option {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 500;
}

.checkbox-option input {
  width: auto;
  padding: 0;
}

.form-helper {
  margin: -0.2rem 0 0;
}

.form-note {
  margin: 0;
  color: #14532d;
  font-weight: 600;
}

.site-footer {
  background: var(--bg);
  color: var(--text-light);
  padding: 1rem 0;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  flex-wrap: wrap;
}

@media (min-width: 800px) {
  .brand img {
    width: 215px;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    transform: none;
    transition: none;
    display: flex;
    width: auto;
    height: auto;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
    flex-direction: row;
    align-items: center;
    gap: 0.15rem;
  }

  .site-nav a {
    font-size: 1rem;
    padding: 0.65rem 0.75rem;
  }

  .hero {
    padding: 4rem 0;
  }

  .hero-grid {
    grid-template-columns: 1.3fr 0.85fr;
    align-items: center;
    gap: 2rem;
  }

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

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}
