:root {
  color-scheme: light;
  --ink: #111827;
  --muted: #5f6b7a;
  --line: #d7dee8;
  --paper: #ffffff;
  --soft: #f4f7fb;
  --night: #101820;
  --night-2: #172331;
  --red: #c81e3a;
  --red-dark: #a5162e;
  --blue: #174b78;
  --gold: #d8a83f;
  --green: #2f7d5c;
  --shadow: 0 18px 45px rgba(16, 24, 32, 0.14);
  --radius: 8px;
  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: var(--paper);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  background: var(--night);
  color: white;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  min-width: 210px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  background: var(--night);
  color: white;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-name {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.1;
}

.brand-sub {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.94rem;
  font-weight: 650;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--red);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.phone-link {
  color: var(--muted);
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
}

.phone-link:hover {
  color: var(--red);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
  border-radius: var(--radius);
  padding: 0.65rem 0.85rem;
  font-weight: 750;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 780;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

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

.btn-primary {
  background: var(--red);
  color: white;
}

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

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.42);
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.btn-outline {
  border-color: var(--line);
  background: white;
  color: var(--ink);
}

.btn-wide {
  width: 100%;
}

.hero {
  min-height: 82vh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--night);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.95) 0%, rgba(16, 24, 32, 0.78) 48%, rgba(16, 24, 32, 0.4) 100%),
    linear-gradient(0deg, rgba(16, 24, 32, 0.35), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 7rem 0 5rem;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  font-size: 0.8rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  color: white;
  font-size: clamp(2.5rem, 6vw, 5.3rem);
  max-width: 860px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  font-size: 1.18rem;
}

.lead {
  font-size: clamp(1.06rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.86);
  max-width: 700px;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.notice {
  margin-top: 1.4rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  max-width: 720px;
}

.section {
  padding: 5rem 0;
}

.section-soft {
  background: var(--soft);
}

.section-dark {
  background: var(--night);
  color: white;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2.2rem;
}

.section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

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

.section-dark .section-heading p,
.section-dark .muted,
.section-dark .legal-small {
  color: rgba(255, 255, 255, 0.72);
}

.grid {
  display: grid;
  gap: 1.1rem;
}

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

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

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.service-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  background: rgba(200, 30, 58, 0.1);
  color: var(--red);
  font-weight: 800;
  margin-bottom: 1rem;
}

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

.price {
  color: var(--red);
  font-weight: 850;
  margin-top: 0.6rem;
}

.card-link {
  margin-top: 1rem;
  color: var(--blue);
  font-weight: 750;
  text-decoration: none;
}

.steps {
  counter-reset: step;
}

.step {
  position: relative;
  padding-left: 4.4rem;
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  background: var(--night);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 850;
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.feature-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 440px;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pricing-table {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

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

th {
  background: var(--night);
  color: white;
  font-size: 0.92rem;
}

tr:last-child td {
  border-bottom: 0;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.badge {
  border: 1px solid var(--line);
  background: white;
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.form-panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: 0 8px 22px rgba(16, 24, 32, 0.06);
}

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

.form-grid .full {
  grid-column: 1 / -1;
}

label {
  display: block;
  font-weight: 760;
  font-size: 0.92rem;
  margin-bottom: 0.35rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.78rem 0.86rem;
  font: inherit;
  color: var(--ink);
  background: white;
}

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

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(200, 30, 58, 0.16);
  border-color: var(--red);
}

.form-note {
  font-size: 0.86rem;
  color: var(--muted);
  margin-top: 0.85rem;
}

.fine-print {
  font-size: 0.84rem;
  color: var(--muted);
}

.legal-hero {
  background: var(--night);
  color: white;
  padding: 5rem 0 4rem;
}

.legal-page {
  max-width: 900px;
}

.legal-page section {
  border-bottom: 1px solid var(--line);
  padding: 2rem 0;
}

.legal-page section:last-child {
  border-bottom: 0;
}

.legal-page h2 {
  font-size: 1.65rem;
  margin-bottom: 1rem;
}

.legal-page li {
  margin-bottom: 0.55rem;
}

.callout {
  border-left: 4px solid var(--red);
  background: rgba(200, 30, 58, 0.06);
  padding: 1rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--night);
  color: white;
}

.site-footer {
  background: var(--night);
  color: white;
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: 2rem;
}

.footer-grid a {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  margin: 0.45rem 0;
}

.footer-grid a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 2rem;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
}

.legal-small {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.62);
}

.hidden {
  display: none !important;
}

@media (max-width: 980px) {
  .nav-links,
  .header-actions {
    display: none;
  }

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

  .mobile-nav {
    display: grid;
    gap: 0.7rem;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 1rem;
  }

  .mobile-nav a {
    text-decoration: none;
    font-weight: 750;
    padding: 0.85rem 0;
    border-top: 1px solid var(--line);
  }

  .grid-3,
  .grid-4,
  .split,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-image {
    min-height: 300px;
  }
}

@media (max-width: 700px) {
  .hero {
    min-height: 760px;
  }

  .hero-content {
    padding: 5rem 0 3rem;
  }

  .section {
    padding: 3.4rem 0;
  }

  .grid-3,
  .grid-4,
  .split,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .cta-band,
  .footer-bottom {
    display: grid;
  }

  .brand {
    min-width: 0;
  }

  .brand-name {
    font-size: 0.94rem;
  }

  .step {
    padding-left: 0;
    padding-top: 4rem;
  }
}
