:root {
  --ink: #18191b;
  --muted: #5c626b;
  --line: #d8dde3;
  --paper: #f7f8f9;
  --soft: #eef2f5;
  --orange: #f06422;
  --orange-dark: #c84d16;
  --blue: #24384d;
  --black: #101418;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(16, 24, 32, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}

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

.notice {
  background: var(--black);
  color: #fff;
  font-size: 0.86rem;
  padding: 0.55rem 1rem;
  text-align: center;
}

.topbar { background: var(--blue); color: #fff; }
.topbar-inner, .nav, .section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.92rem;
}

.topbar strong { color: #fff4ed; }

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

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

.brand img { width: 112px; height: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.nav-links a, .brand { text-decoration: none; }
.nav-links a[aria-current="page"] { color: var(--orange); font-weight: 800; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 1.05rem;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-dark); }
.btn-secondary { border-color: var(--line); color: var(--ink); background: #fff; }

.hero, .page-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(13, 18, 24, 0.86), rgba(13, 18, 24, 0.54) 48%, rgba(13, 18, 24, 0.16)),
    url("https://static.wixstatic.com/media/99eff6_bbe658e50ec94012ad3afd15a328498f%7Emv2.jpg/v1/fit/w_2500,h_1330,al_c/99eff6_bbe658e50ec94012ad3afd15a328498f%7Emv2.jpg") center / cover;
}

.hero-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 410px;
  gap: 2rem;
  align-items: center;
  padding: 74px 0 44px;
}

.page-hero .section-inner {
  min-height: 420px;
  display: grid;
  align-items: end;
  padding: 74px 0 58px;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: #ffd2bf;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

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

h1 {
  max-width: 800px;
  margin-bottom: 1.1rem;
  font-size: clamp(2.7rem, 5vw, 5.25rem);
  line-height: 0.98;
}

.page-hero h1 { max-width: 880px; }

.hero-copy, .page-copy {
  max-width: 660px;
  font-size: 1.18rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions, .inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 2rem;
  max-width: 700px;
}

.proof { border-left: 3px solid var(--orange); padding-left: 0.85rem; }
.proof strong { display: block; font-size: 1.2rem; }
.proof span { color: rgba(255, 255, 255, 0.78); font-size: 0.91rem; }

.quote-card {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  border-radius: 8px;
  padding: 1.35rem;
  box-shadow: var(--shadow);
}

.quote-card h2 { margin-bottom: 0.25rem; font-size: 1.4rem; }
.quote-card p { color: var(--muted); font-size: 0.95rem; }
.quote-form { display: grid; gap: 0.8rem; }

label {
  display: grid;
  gap: 0.28rem;
  color: #30343a;
  font-size: 0.84rem;
  font-weight: 850;
}

input, select, textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.75rem 0.85rem;
  font: inherit;
  background: #fff;
}

textarea { min-height: 124px; resize: vertical; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.8rem; }

.section { padding: 82px 0; }
.section-soft { background: var(--paper); }
.section-dark { background: #181c20; color: #fff; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: 2rem;
}

.section-head h2 {
  max-width: 760px;
  font-size: clamp(2rem, 3.6vw, 3.5rem);
  line-height: 1.02;
  margin-bottom: 0;
}

.section-head p { max-width: 470px; color: var(--muted); margin-bottom: 0; }
.section-dark .section-head p, .section-dark .muted { color: rgba(255, 255, 255, 0.72); }

.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.two-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.four-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 3rem; align-items: center; }

.image-card, .panel, .step, .trust-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.image-card img { width: 100%; height: 190px; object-fit: cover; }
.image-card div, .panel, .step, .trust-card { padding: 1.25rem; }
.image-card h3, .step h3 { margin-bottom: 0.4rem; font-size: 1.22rem; }
.image-card p, .step p, .trust-card p { color: var(--muted); margin-bottom: 0; }

.link-card {
  display: block;
  min-height: 210px;
  padding: 1.25rem;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
}

.link-card strong { display: block; font-size: 1.3rem; margin-bottom: 0.5rem; }
.link-card span { color: var(--muted); }

.quick-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: -34px;
  position: relative;
  z-index: 3;
}

.quick-strip a {
  display: block;
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(16, 24, 32, 0.08);
  text-decoration: none;
  font-weight: 850;
}

.route-list, .tick-list { display: grid; gap: 0.75rem; padding: 0; margin: 0; list-style: none; }
.route-list li, .tick-list li { display: flex; gap: 0.75rem; align-items: start; }
.route-list li::before, .tick-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-top: 0.48rem;
  border-radius: 50%;
  background: var(--orange);
}

.area-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.75rem; }
.area-grid a {
  display: block;
  padding: 0.85rem 0.95rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  text-decoration: none;
}

.step::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
  margin-bottom: 1rem;
}
.step-1::before { content: "1"; }
.step-2::before { content: "2"; }
.step-3::before { content: "3"; }
.step-4::before { content: "4"; }

.cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
}

.cta h2 { margin-bottom: 0.35rem; font-size: clamp(1.75rem, 3vw, 2.8rem); }
.cta p { margin-bottom: 0; color: rgba(255, 255, 255, 0.78); }

footer { padding: 36px 0; background: var(--black); color: rgba(255, 255, 255, 0.74); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem; }
.footer-credit {
  grid-column: 1 / -1;
  margin-top: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}
footer a { color: #fff; }

@media (max-width: 960px) {
  .nav-links { display: none; }
  .hero-inner, .split, .cta { grid-template-columns: 1fr; }
  .quote-card { max-width: 560px; }
  .card-grid, .four-grid, .quick-strip, .area-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .topbar-inner { align-items: start; flex-direction: column; padding: 0.7rem 0; }
  .brand img { width: 94px; }
  .nav-actions .btn-secondary { display: none; }
  .hero-inner { min-height: auto; padding: 48px 0 34px; }
  h1 { font-size: 2.55rem; }
  .proof-row, .card-grid, .two-grid, .four-grid, .quick-strip, .area-grid, .footer-grid, .form-grid { grid-template-columns: 1fr; }
  .section { padding: 58px 0; }
  .section-head { display: block; }
}
