:root {
  --ink: #0f1b30;
  --muted: #56677d;
  --line: #dde2ea;
  --paper: #f7f8fb;
  --surface: #ffffff;
  --forest: #0b2545;
  --forest-2: #163a6b;
  --gold: #d6a84f;
  --sky: #eaf1fb;
  --soft: #eef1f6;
  --shadow: 0 24px 70px rgba(10, 20, 38, 0.16);
  --radius: 8px;
  --font-display: Georgia, "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
}

* {
  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(--paper);
  line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.section-pad {
  padding: 72px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 252, 248, 0.9);
  border-bottom: 1px solid rgba(220, 228, 222, 0.8);
  backdrop-filter: blur(16px);
}

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

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

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--forest), var(--forest-2));
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(15, 106, 71, 0.22);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest);
  font-weight: 800;
  font-size: 0.92rem;
  white-space: nowrap;
}

.phone-link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.lang-toggle {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.lang-toggle:hover {
  border-color: var(--forest-2);
  color: var(--forest-2);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-menu a:hover {
  color: var(--forest);
}

.nav-cta {
  color: white !important;
  background: var(--forest);
  padding: 11px 16px;
  border-radius: var(--radius);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(247, 248, 251, 0.98) 0%, rgba(247, 248, 251, 0.88) 48%, rgba(234, 241, 251, 0.78) 100%),
    radial-gradient(circle at 78% 24%, rgba(214, 168, 79, 0.2), transparent 30%),
    linear-gradient(135deg, #f7f9fc, #eaf1fb);
}

.hero::after {
  content: "";
  position: absolute;
  right: max(-80px, -8vw);
  bottom: -120px;
  width: min(520px, 72vw);
  aspect-ratio: 1;
  border: 1px solid rgba(11, 37, 69, 0.14);
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(234, 241, 251, 0.28)),
    repeating-linear-gradient(90deg, rgba(11, 37, 69, 0.08) 0 1px, transparent 1px 18px);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 48px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--forest-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.6vw, 5rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.12;
  letter-spacing: 0;
}

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

.hero-text {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.22rem);
}

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

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 13px 18px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.btn-primary {
  color: white;
  background: var(--forest);
  box-shadow: 0 16px 34px rgba(11, 37, 69, 0.24);
}

.btn-secondary {
  color: var(--forest);
  background: white;
  border-color: var(--line);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span {
  color: var(--forest);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.86rem;
  font-weight: 800;
}

.hero-media {
  position: relative;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.hero-panel {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(220, 228, 222, 0.9);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

@media (min-width: 901px) {
  .hero-panel {
    position: absolute;
    left: 6%;
    bottom: -32px;
    width: min(280px, 68%);
  }
}

.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.panel-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.panel-head strong {
  color: var(--forest);
  text-align: right;
}

.coverage-list {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.coverage-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.coverage-list span,
.steps span {
  width: 34px;
  height: 34px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--forest);
  background: var(--soft);
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 900;
}

.panel-link {
  display: inline-flex;
  color: var(--forest);
  font-weight: 900;
}

.trust-badges {
  padding: 26px 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--forest);
  font-weight: 800;
  font-size: 0.86rem;
}

.trust-badge svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: var(--forest-2);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p,
.split-heading p,
.contact-copy p {
  color: var(--muted);
}

.compact {
  max-width: 720px;
}

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

.service-card {
  position: relative;
  min-height: 240px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-card.featured {
  color: white;
  background: linear-gradient(145deg, var(--forest), #142845);
  border-color: transparent;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.service-card.featured .card-icon {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.badge-pill {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--gold);
  color: #2b2110;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.card-icon {
  display: inline-grid;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  place-items: center;
  color: var(--forest);
  background: var(--soft);
  border-radius: var(--radius);
}

.card-icon svg {
  width: 24px;
  height: 24px;
}

.card-icon.small {
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--forest-2);
}

.card-icon.small svg {
  width: 18px;
  height: 18px;
}

.muted-band {
  background: var(--soft);
}

.split-heading,
.value-grid,
.contact-grid,
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: start;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.service-strip article {
  min-height: 170px;
  padding: 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-strip p,
.steps p,
.value-list p,
.footer p,
.footer span {
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.steps article {
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.steps span {
  margin-bottom: 28px;
  background: var(--forest);
  color: white;
}

.process-cta {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.value-band {
  color: white;
  background: #0b1626;
}

.value-band .eyebrow {
  color: var(--gold);
}

.value-list {
  display: grid;
  gap: 16px;
}

.value-list div {
  padding: 0 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.value-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.contact-section {
  background: linear-gradient(180deg, var(--paper), #ffffff);
}

.contact-note {
  margin-top: 24px;
  padding: 18px;
  background: var(--sky);
  border-radius: var(--radius);
}

.contact-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--forest);
  font-weight: 800;
}

.contact-phone svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: var(--forest-2);
}

.contact-phone small {
  display: block;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.78rem;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.contact-details svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--forest-2);
}

.contact-details a {
  color: var(--forest);
  font-weight: 700;
}

.mobile-cta-bar {
  display: none;
  position: fixed;
  z-index: 30;
  left: 0;
  right: 0;
  bottom: 0;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(251, 252, 248, 0.96);
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 30px rgba(23, 33, 28, 0.12);
  backdrop-filter: blur(12px);
}

.mobile-cta-bar .btn {
  flex: 1;
}

.request-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 7px;
}

label {
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 12px 13px;
  color: var(--ink);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--forest-2);
  outline: 3px solid rgba(15, 106, 71, 0.14);
}

textarea {
  resize: vertical;
}

.consent-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.consent-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.consent-check a {
  color: var(--forest);
  font-weight: 800;
  text-decoration: underline;
  white-space: nowrap;
}

.form-submit {
  width: 100%;
  cursor: pointer;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--forest);
  font-weight: 800;
}

.policy-hero {
  padding-bottom: 30px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--forest-2);
  font-weight: 800;
}

.policy-effective {
  color: var(--muted);
  font-weight: 700;
}

.policy-note {
  max-width: 720px;
  padding: 16px 18px;
  margin-top: 18px;
  background: var(--soft);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.92rem;
}

.policy-content {
  padding-top: 0;
}

.policy-grid {
  display: grid;
  gap: 34px;
}

.policy-grid article {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.policy-grid article:last-child {
  border-bottom: none;
}

.policy-grid h2 {
  font-size: 1.5rem;
}

.policy-grid p {
  max-width: 780px;
  color: var(--muted);
}

.legal-note {
  padding: 24px 0;
  color: var(--muted);
  background: #eef4ef;
  font-size: 0.84rem;
}

.legal-note p {
  margin-bottom: 10px;
}

.legal-link {
  display: inline-block;
  color: var(--forest);
  font-weight: 800;
  text-decoration: underline;
}

.footer {
  padding: 46px 0;
  background: #081420;
  color: white;
}

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

.footer h2 {
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.footer-grid > div > a,
.footer-grid > div > span {
  display: block;
  margin-bottom: 8px;
}

.footer-brand {
  margin-bottom: 18px;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .phone-text {
    display: none;
  }

  .nav-menu {
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 12px;
  }

  .nav-cta {
    text-align: center;
  }

  .hero-grid,
  .split-heading,
  .value-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-panel {
    margin-top: -48px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .cards-grid,
  .steps {
    grid-template-columns: 1fr;
  }

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

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

  .mobile-cta-bar {
    display: flex;
  }

  body {
    padding-bottom: 74px;
  }
}

@media (max-width: 620px) {
  .container,
  .nav {
    width: min(100% - 24px, 1120px);
  }

  .section-pad {
    padding: 56px 0;
  }

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

  .hero-panel,
  .request-form,
  .service-card,
  .steps article {
    padding: 20px;
  }

  .service-strip,
  .trust-badges-grid {
    grid-template-columns: 1fr;
  }

  .nav-right {
    gap: 10px;
  }
}
