:root {
  --navy: #21166b;
  --blue: #0878bb;
  --cyan: #16ace6;
  --ink: #31343a;
  --muted: #636873;
  --line: #d9e0e7;
  --soft: #f4f8fb;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(21, 33, 58, 0.14);
}

* {
  box-sizing: border-box;
}

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

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

a {
  color: var(--blue);
}

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

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

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

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

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

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

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

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

.phone-link {
  padding: 10px 14px;
  color: var(--white) !important;
  background: var(--blue);
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(8, 120, 187, 0.22);
}

.hero {
  position: relative;
  min-height: 650px;
  display: grid;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background: #15213a;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(11, 18, 45, 0.84), rgba(11, 18, 45, 0.48) 48%, rgba(11, 18, 45, 0.18)), url("assets/land-hero.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  width: min(690px, 100%);
  padding: 90px 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: #bcecff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  color: inherit;
}

h1 {
  font-size: clamp(2.45rem, 5vw, 4.8rem);
  max-width: 720px;
}

h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  color: var(--navy);
}

h3 {
  font-size: 1.16rem;
  color: var(--ink);
}

.hero p {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.18rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
}

.button.primary {
  color: var(--white);
  background: var(--cyan);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
}

.section {
  padding: 80px 0;
}

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

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

.section-title p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

.card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(31, 46, 77, 0.06);
}

.card p,
.split p,
.page-hero p {
  color: var(--muted);
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(22, 172, 230, 0.14);
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 42px;
  align-items: start;
}

.photo-panel {
  min-height: 420px;
  border-radius: 8px;
  background-image: url("assets/land-hero.jpg");
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.form-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--cyan);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

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

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 750;
}

input,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid #cdd6df;
  border-radius: 5px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

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

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.consent input {
  width: auto;
  min-height: auto;
  margin-top: 3px;
}

.form-card button {
  width: 100%;
  min-height: 50px;
  margin-top: 18px;
  color: var(--white);
  font: inherit;
  font-weight: 850;
  border: 0;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  cursor: pointer;
}

.page-hero {
  padding: 82px 0;
  color: var(--white);
  background: linear-gradient(135deg, rgba(33, 22, 107, 0.92), rgba(8, 120, 187, 0.9)), url("assets/land-hero.jpg");
  background-size: cover;
  background-position: center;
}

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

.page-hero p {
  max-width: 710px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.12rem;
}

.steps {
  counter-reset: step;
}

.step {
  position: relative;
  padding-left: 76px;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 24px;
  top: 28px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 850;
  border-radius: 50%;
  background: var(--navy);
}

.faq-item {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.faq-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.site-footer {
  padding: 44px 0;
  color: rgba(255, 255, 255, 0.78);
  background: #171b27;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer-logo {
  display: none;
}

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

.footer-links a {
  color: var(--white);
  text-decoration: none;
}

@media (max-width: 900px) {
  .header-inner,
  .footer-inner {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 12px;
  }

  .grid.three,
  .grid.two,
  .split,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .brand img {
    width: 235px;
  }

  .hero {
    min-height: 560px;
  }
}

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

  .section {
    padding: 58px 0;
  }

  .hero-content {
    padding: 70px 0;
  }

  .nav {
    gap: 13px;
    font-size: 0.86rem;
  }

  .form-card,
  .card {
    padding: 22px;
  }
}
