:root {
  --ink: #102033;
  --muted: #5c6b7a;
  --line: #dbe7ef;
  --soft: #f4f9fb;
  --white: #ffffff;
  --blue: #0b63ce;
  --blue-dark: #073f88;
  --teal: #009e9a;
  --teal-soft: #dff7f5;
  --lime: #b7ef2a;
  --lime-soft: #f0fbd1;
  --lime-dark: #4d6500;
  --amber: #f7b731;
  --shadow: 0 18px 48px rgba(16, 32, 51, 0.14);
}

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

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(219, 231, 239, 0.9);
  backdrop-filter: blur(14px);
}

.home-page .site-header {
  position: absolute;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

.home-page .site-header .brand,
.home-page .site-header .nav-links a {
  color: var(--white);
}

.home-page .site-header .nav-links a:hover,
.home-page .site-header .nav-links a:focus {
  color: var(--lime);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue-dark), var(--lime));
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a,
.footer-links a {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 8px;
}

.nav-links a:hover,
.nav-links a:focus,
.footer-links a:hover,
.footer-links a:focus {
  color: var(--lime-dark);
}

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

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

.hero {
  min-height: min(690px, 76svh);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(7, 16, 29, 0.62), rgba(7, 63, 136, 0.16) 44%, rgba(7, 16, 29, 0.46)),
    url("https://images.unsplash.com/photo-1506929562872-bb421503ef21?auto=format&fit=crop&w=2400&q=80");
  background-position: center;
  background-size: cover;
}

.hero-content {
  padding: 150px 0 112px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--lime);
}

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

h1 {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 18px;
  font-size: 58px;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 700;
  line-height: 1.04;
}

h2 {
  margin-bottom: 14px;
  font-size: 36px;
  line-height: 1.15;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.25;
}

.hero-subheadline {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
}

.hero-actions,
.search-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--lime);
  color: #111827;
  box-shadow: 0 12px 28px rgba(119, 152, 0, 0.28);
}

.button-primary:hover,
.button-primary:focus {
  background: #cdf65b;
}

.button-secondary {
  background: var(--white);
  color: var(--ink);
}

.button-outline {
  background: var(--white);
  color: #111827;
  border-color: #b8ce6e;
}

.search-actions .button-primary {
  background: #111827;
  color: var(--white);
  box-shadow: none;
}

.search-actions .button-primary:hover,
.search-actions .button-primary:focus {
  background: #243244;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.hero-proof span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 700;
}

.search-section {
  position: relative;
  z-index: 3;
  margin-top: 0;
  padding: 54px 0;
  background: var(--lime);
}

.search-box {
  padding: 28px;
  border: 1px solid rgba(219, 231, 239, 0.98);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.search-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.search-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.search-tabs span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 8px;
  background: #f5fee1;
  color: var(--lime-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.search-heading p:last-child,
.section-heading p,
.benefit-card p,
.step p,
.disclosure-box p,
.contact-card p,
.legal-page p,
.legal-page li {
  color: var(--muted);
}

.search-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) minmax(260px, 1.5fr) minmax(130px, 0.7fr);
  gap: 14px;
  margin-bottom: 18px;
}

.field {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.field input {
  width: 100%;
  min-height: 52px;
  border: 1px solid #cbdce8;
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fbfdff;
}

.field input:focus {
  border-color: #9ac900;
  outline: 3px solid rgba(183, 239, 42, 0.28);
}

.date-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.status-message {
  margin: 18px 0 0;
  padding: 14px 16px;
  border: 1px solid #d8ef82;
  border-radius: 8px;
  background: var(--lime-soft);
  color: #354800;
  font-weight: 700;
}

.section {
  padding: 72px 0;
}

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

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.benefit-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(16, 32, 51, 0.06);
}

.benefit-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.benefit-body {
  padding: 22px;
}

.benefit-tag {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 9px;
  border-radius: 6px;
  background: var(--lime-soft);
  color: var(--lime-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

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

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

.steps {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--lime);
  color: #111827;
  font-weight: 900;
}

.disclosure-box,
.contact-card {
  border-radius: 8px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #fbfff0, #eefbf9);
}

.disclosure-box {
  display: grid;
  gap: 18px;
  padding: 32px;
}

.text-link {
  color: var(--lime-dark);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus {
  text-decoration: underline;
}

.contact-card {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 34px;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: #f8fbfd;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-brand .brand-mark {
  width: 32px;
  height: 32px;
  font-size: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  height: 230px;
  overflow: hidden;
}

.gallery-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.legal-hero {
  padding: 64px 0 34px;
  background: linear-gradient(135deg, #eef8ff, #effbf8);
  border-bottom: 1px solid var(--line);
}

.legal-hero p {
  max-width: 720px;
  color: var(--muted);
}

.legal-page {
  max-width: 860px;
  padding: 54px 0 78px;
}

.legal-page section {
  margin-bottom: 34px;
}

.legal-page ul {
  padding-left: 22px;
}

.legal-page a {
  color: var(--blue);
  font-weight: 700;
}

@media (max-width: 920px) {
  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 30px;
  }

  .search-grid,
  .benefit-grid,
  .split-layout {
    grid-template-columns: 1fr;
  }

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

  .gallery-strip {
    grid-template-columns: repeat(3, 1fr);
    height: 360px;
  }

  .footer-inner,
  .contact-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .nav {
    min-height: 68px;
  }

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

  .nav-links {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 68px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .home-page .nav-links {
    background: var(--white);
  }

  .home-page .nav-links a {
    color: var(--muted);
  }

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

  .hero {
    min-height: min(650px, 76svh);
  }

  .hero-content {
    padding: 54px 0 110px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 26px;
  }

  .hero-subheadline {
    font-size: 18px;
  }

  .search-box,
  .disclosure-box,
  .contact-card {
    padding: 22px;
  }

  .date-inputs,
  .benefit-grid,
  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .gallery-strip {
    height: auto;
  }

  .gallery-strip img {
    height: 190px;
  }

  .button {
    width: 100%;
  }

  .hero-actions .button {
    width: auto;
  }
}

@media (max-width: 430px) {
  .brand {
    font-size: 15px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  h1 {
    font-size: 32px;
  }

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

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