:root {
  --ink: #102034;
  --muted: #5b6778;
  --brand: #0f766e;
  --brand-dark: #115e59;
  --accent: #f59e0b;
  --soft: #f4f7f6;
  --line: #dbe3e1;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(16, 32, 52, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

.topbar {
  background: var(--ink);
  color: var(--white);
  font-size: 0.92rem;
}

.topbar .container,
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar .container {
  min-height: 42px;
}

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

.nav .container {
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 950;
}

.mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  background: var(--brand);
  color: var(--white);
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.phone,
.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 8px;
  font-weight: 950;
}

.phone {
  color: var(--brand);
}

.btn {
  border: 0;
  padding: 13px 18px;
  background: var(--accent);
  color: #1f1300;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(245, 158, 11, 0.25);
}

.btn.secondary {
  background: var(--white);
  color: var(--ink);
  box-shadow: none;
}

.btn.dark {
  background: var(--brand);
  color: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 690px;
  color: var(--white);
  background: var(--ink);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(90deg, rgba(16, 32, 52, 0.96), rgba(16, 32, 52, 0.8) 43%, rgba(16, 32, 52, 0.22)),
    url("hero.png");
  background-position: center;
  background-size: cover;
}

.hero .container {
  position: relative;
  display: grid;
  min-height: 690px;
  align-items: center;
  padding: 70px 0;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: #7dd3fc;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 6vw, 5.65rem);
  line-height: 0.98;
  letter-spacing: 0;
}

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

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

.hero p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.18rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
  max-width: 780px;
}

.trust-pill {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
  font-weight: 850;
}

.section {
  padding: 82px 0;
}

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

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

.section-head {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-head p,
.lead {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.grid-3,
.grid-4,
.grid-2 {
  display: grid;
  gap: 18px;
}

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

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

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

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

.card p,
.check-list li,
.faq p {
  color: var(--muted);
  line-height: 1.65;
}

.icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 8px;
  background: rgba(15, 118, 110, 0.12);
  color: var(--brand);
}

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

.check-list li {
  display: flex;
  gap: 10px;
  font-weight: 800;
}

.check-list li::before {
  content: "✓";
  color: var(--brand);
  font-weight: 950;
}

.quote-card {
  position: sticky;
  top: 98px;
  border-radius: 8px;
  padding: 26px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.quote-card form {
  display: grid;
  gap: 13px;
}

label {
  display: grid;
  gap: 7px;
  font-size: 0.86rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cfd9d7;
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
}

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

.banner {
  background: var(--brand);
  color: var(--white);
}

.banner .container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 34px 0;
}

.banner h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
}

.faq {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}

.faq h3 {
  font-size: 1rem;
}

.footer {
  padding: 44px 0 86px;
  background: var(--ink);
  color: var(--white);
}

.footer p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.sticky-mobile {
  display: none;
}

@media (max-width: 900px) {
  .navlinks,
  .nav .phone {
    display: none;
  }

  .hero,
  .hero .container {
    min-height: 640px;
  }

  .trust-row,
  .grid-3,
  .grid-4,
  .grid-2,
  .split,
  .banner .container {
    grid-template-columns: 1fr;
  }

  .quote-card {
    position: static;
  }
}

@media (max-width: 640px) {
  .topbar {
    display: none;
  }

  .section {
    padding: 58px 0;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .sticky-mobile {
    position: fixed;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 40;
    display: inline-flex;
  }

  .footer {
    padding-bottom: 105px;
  }
}
