:root {
  --bg: #060d19;
  --surface: #0b1729;
  --surface-soft: #12233d;
  --text: #ecf3ff;
  --muted: #aebed8;
  --accent: #57d5a0;
  --accent-2: #5eb9ff;
  --border: #2a3c5d;
  --ring: rgba(94, 185, 255, 0.32);
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 10px 26px rgba(0, 0, 0, 0.24);
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background:
    radial-gradient(circle at 90% -10%, rgba(94, 185, 255, 0.18), transparent 30%),
    radial-gradient(circle at -10% 25%, rgba(87, 213, 160, 0.14), transparent 35%),
    linear-gradient(160deg, #081225 0%, var(--bg) 48%, #050b15 100%);
  color: var(--text);
  line-height: 1.6;
  letter-spacing: 0.01em;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 13, 25, 0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(180, 194, 218, 0.16);
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  position: relative;
}

.nav-toggle {
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border-radius: 12px;
  border: 1px solid rgba(180, 194, 218, 0.22);
  background: rgba(13, 28, 49, 0.66);
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s ease, filter 0.2s ease;
}

.nav-toggle:hover {
  border-color: #96b4df;
  filter: brightness(1.06);
}

.nav-toggle-bars {
  display: block;
  width: 20px;
  height: 14px;
  background:
    linear-gradient(currentColor, currentColor) 0 0 / 100% 2px no-repeat,
    linear-gradient(currentColor, currentColor) 0 6px / 100% 2px no-repeat,
    linear-gradient(currentColor, currentColor) 0 12px / 100% 2px no-repeat;
}

.nav-backdrop {
  display: none;
}

.nav-cta {
  flex-shrink: 0;
}

.brand {
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.3px;
  font-size: 1.04rem;
}

.main-nav {
  display: flex;
  gap: 1.2rem;
}

.main-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.22s ease;
}

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

.main-nav a.active {
  color: var(--text);
  border-bottom: 2px solid rgba(87, 213, 160, 0.9);
  padding-bottom: 6px;
}

.hero {
  padding: 6.4rem 0 4.6rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.6rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.36rem 0.72rem;
  background: rgba(87, 213, 160, 0.1);
  color: #9aebc7;
  border: 1px solid rgba(154, 235, 199, 0.24);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4.2vw, 3.55rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(95deg, #a8ddff, #82ffc4);
  -webkit-background-clip: text;
  background-clip: text;
}

h2 {
  margin: 0 0 0.95rem;
  font-size: clamp(1.65rem, 2.6vw, 2.2rem);
  line-height: 1.16;
  letter-spacing: -0.01em;
}

h3 {
  margin-top: 0;
  font-size: 1.16rem;
  letter-spacing: -0.01em;
}

.hero-text {
  color: var(--muted);
  max-width: 58ch;
  font-size: 1.02rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.86rem;
  margin: 1.5rem 0 1.1rem;
}

.hero-points {
  margin: 0;
  padding-left: 1.1rem;
  color: #ccdaee;
}

.contact-next {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: #b8cbe4;
  font-size: 0.92rem;
  line-height: 1.55;
}

.contact-next li {
  margin-bottom: 0.35rem;
}

.trust-bar {
  padding: 0.8rem 0 0.2rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.trust-item {
  text-align: center;
  padding: 0.74rem 0.7rem;
  border: 1px solid rgba(174, 190, 216, 0.22);
  border-radius: 12px;
  background: rgba(12, 26, 44, 0.7);
  color: #d4e2f6;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-card,
.card,
.price-card,
.contact-card {
  background:
    linear-gradient(180deg, rgba(28, 49, 81, 0.52), rgba(11, 23, 41, 0.95)),
    linear-gradient(180deg, var(--surface-soft), var(--surface));
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.hero-card {
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.quote-form {
  display: grid;
  gap: 0.56rem;
}

label {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.78rem 0.86rem;
  border-radius: 12px;
  border: 1px solid #334c6d;
  background: #081426;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(94, 185, 255, 0.92);
  box-shadow: 0 0 0 3px var(--ring);
}

textarea {
  resize: vertical;
  min-height: 110px;
}

input[type="file"] {
  padding: 0.55rem 0.6rem;
  background: #071323;
}

.input-help {
  margin: -0.12rem 0 0.2rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.form-note {
  min-height: 1.2rem;
  margin: 0.3rem 0 0;
  font-size: 0.88rem;
  color: #95ebc2;
  font-weight: 500;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: rgba(9, 20, 35, 0.66);
  border-top: 1px solid rgba(180, 194, 218, 0.1);
  border-bottom: 1px solid rgba(180, 194, 218, 0.1);
}

.section-tight {
  padding: 2rem 0 2.5rem;
}

.calculator-teaser .calculator-teaser-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 72ch;
}

.calculator-teaser a {
  color: var(--accent-2);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(94, 185, 255, 0.35);
  white-space: nowrap;
}

.calculator-teaser a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.12rem;
}

.card {
  padding: 1.2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: #3f5a82;
  box-shadow: var(--shadow);
}

.card p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem;
  align-items: center;
}

.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.checklist li {
  padding: 0.78rem 0.92rem;
  background: rgba(87, 213, 160, 0.08);
  border: 1px solid rgba(87, 213, 160, 0.2);
  border-radius: 12px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.12rem;
}

.price-card {
  padding: 1.2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  border-color: #4a6894;
  box-shadow: var(--shadow);
}

.price-card ul {
  margin: 0 0 1rem;
  padding-left: 1rem;
  color: var(--muted);
}

.price-card .price {
  margin: 0.3rem 0 0.82rem;
  font-size: 1.7rem;
  font-weight: 800;
  color: #afe2ff;
}

.price-card.featured {
  border-color: rgba(87, 213, 160, 0.6);
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.42);
}

.badge {
  display: inline-block;
  margin: 0 0 0.6rem;
  font-size: 0.74rem;
  font-weight: 700;
  color: #041122;
  background: linear-gradient(130deg, var(--accent), #89ecc3);
  padding: 0.29rem 0.56rem;
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

#contact {
  scroll-margin-top: 5.5rem;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.25rem;
  align-items: center;
}

.contact-card {
  padding: 1.15rem;
  min-width: 300px;
}

.contact-card a {
  color: #b7e3ff;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.site-footer {
  padding: 1.85rem 0 2rem;
  border-top: 1px solid rgba(180, 194, 218, 0.14);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.92rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 0.72rem 1.04rem;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #80eac0);
  color: #022617;
  box-shadow: 0 10px 24px rgba(87, 213, 160, 0.26);
}

.btn-primary:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.btn-secondary {
  background: linear-gradient(135deg, #7fccff, var(--accent-2));
  color: #07111f;
  box-shadow: 0 10px 24px rgba(94, 185, 255, 0.24);
}

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

.btn-outline {
  border-color: #5874a0;
  color: var(--text);
  background: rgba(13, 28, 49, 0.66);
}

.btn-outline:hover {
  border-color: #96b4df;
  transform: translateY(-1px);
}

.micro-trust {
  margin: 0.35rem 0 0;
  max-width: 52ch;
  font-size: 0.9rem;
  color: #9eb6d4;
  line-height: 1.5;
}

.privacy-note {
  margin: 0.15rem 0 0.35rem;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.45;
}

.section-commitments {
  padding-top: 2.2rem;
  padding-bottom: 2.2rem;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.commitment-card {
  padding: 1.05rem 1.1rem;
  border-radius: 14px;
  border: 1px solid rgba(174, 190, 216, 0.2);
  background: rgba(11, 23, 41, 0.55);
  box-shadow: var(--shadow-soft);
}

.commitment-title {
  margin: 0 0 0.45rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #d8e6fb;
}

.commitment-text {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.5;
}

.inline-link {
  color: var(--accent-2);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(94, 185, 255, 0.35);
}

.inline-link:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.compare-wrap {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(180, 194, 218, 0.12);
}

.compare-heading {
  margin: 0 0 0.45rem;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}

.compare-lead {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 62ch;
}

.compare-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(8, 18, 32, 0.45);
}

.compare-table {
  width: 100%;
  min-width: 36rem;
  border-collapse: collapse;
  font-size: 0.86rem;
}

.compare-table th,
.compare-table td {
  padding: 0.72rem 0.85rem;
  border-bottom: 1px solid rgba(42, 60, 93, 0.85);
  vertical-align: top;
}

.compare-table thead th {
  background: rgba(87, 213, 160, 0.09);
  color: #c9ddf5;
  font-weight: 700;
  text-align: center;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.compare-table thead th:first-child {
  text-align: left;
}

.compare-table tbody th {
  text-align: left;
  color: var(--text);
  font-weight: 600;
  max-width: 11rem;
}

.compare-table td {
  text-align: center;
  color: #b9cce8;
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.pricing-footnote {
  margin-top: 1.25rem;
  text-align: center;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.faq-list {
  margin-top: 1.75rem;
  display: grid;
  gap: 0.65rem;
  max-width: 46rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.05rem 1rem 0.85rem;
  background: rgba(11, 23, 41, 0.45);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 0.85rem 0 0.5rem;
  list-style: none;
  color: #dce8fb;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--accent-2);
  font-weight: 800;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0;
  padding-top: 0.35rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.faq-cta {
  margin: 2.25rem 0 0;
  padding: 1.25rem 1.35rem;
  border-radius: 16px;
  border: 1px solid rgba(174, 190, 216, 0.22);
  background: rgba(11, 23, 41, 0.72);
  box-shadow: var(--shadow-soft);
  max-width: 46rem;
}

.faq-cta-lead {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #c5d6ee;
}

.faq-cta-lead strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
  color: var(--text);
  letter-spacing: -0.01em;
}

.faq-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

@media (max-width: 480px) {
  .faq-cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

.footer-disclaimer {
  padding: 0 0 2rem;
  max-width: min(1120px, 92%);
  margin: 0 auto;
}

.footer-disclaimer p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: #7a8ca8;
  text-align: center;
}

@media (max-width: 960px) {
  .site-header {
    backdrop-filter: none;
    background: rgba(6, 13, 25, 0.94);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 60;
    background: rgba(3, 8, 16, 0.62);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease;
  }

  .nav-backdrop.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    pointer-events: none;
    width: min(320px, 100% - 2.5rem);
    max-width: 100%;
    margin: 0;
    padding: calc(4.25rem + env(safe-area-inset-top, 0px)) 1.15rem 1.25rem;
    padding-right: max(1.15rem, env(safe-area-inset-right, 0px));
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    background: rgba(8, 15, 28, 0.97);
    border-left: 1px solid rgba(180, 194, 218, 0.14);
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.45);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    transition: transform 0.26s ease;
  }

  .main-nav.is-open {
    transform: translateX(0);
    pointer-events: auto;
  }

  .main-nav a {
    display: block;
    padding: 0.72rem 0.5rem;
    border-radius: 10px;
    font-size: 1rem;
  }

  .main-nav a.active {
    border-bottom: none;
    padding-bottom: 0.72rem;
    background: rgba(87, 213, 160, 0.1);
  }

  .nav-wrap .nav-cta {
    margin-left: auto;
    margin-right: 0;
    padding: 0.58rem 0.82rem;
    font-size: 0.82rem;
  }

  .brand {
    min-width: 0;
    flex: 1;
  }

  .hero {
    padding-top: 5.5rem;
  }

  .hero-grid,
  .split,
  .pricing-grid,
  .cards,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

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

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

  .contact-card {
    min-width: 0;
  }

  .price-card.featured {
    transform: none;
  }

  input,
  select,
  textarea {
    font-size: 16px;
  }

  label {
    font-size: 0.78rem;
  }
}

@media (max-width: 420px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .commitment-grid {
    grid-template-columns: 1fr;
  }

  .nav-wrap .nav-cta {
    padding: 0.5rem 0.65rem;
    font-size: 0.76rem;
  }
}

@media (max-width: 640px) {
  .calculator-teaser a {
    white-space: normal;
  }
}

body.nav-drawer-open {
  overflow: hidden;
}

body.nav-drawer-open .site-header {
  z-index: 80;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: max(1.2rem, env(safe-area-inset-top, 0px))
    max(1.2rem, env(safe-area-inset-right, 0px))
    max(1.2rem, env(safe-area-inset-bottom, 0px))
    max(1.2rem, env(safe-area-inset-left, 0px));
}

.modal-overlay.open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 11, 21, 0.72);
  backdrop-filter: blur(10px);
}

.modal-content {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  max-height: min(85vh, 100dvh - 2.5rem);
  overflow: auto;
  padding: 1.4rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(28, 49, 81, 0.52), rgba(11, 23, 41, 0.95)),
    linear-gradient(180deg, var(--surface-soft), var(--surface));
  border: 1px solid var(--border);
}

.modal-body .quote-form {
  display: grid;
  gap: 0.56rem;
}

.modal-close {
  position: absolute;
  top: 0.6rem;
  right: 0.7rem;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(180, 194, 218, 0.22);
  background: rgba(7, 19, 35, 0.7);
  color: var(--text);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.modal-close:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.modal-open {
  overflow: hidden;
}
