:root {
  --ink: #17202a;
  --muted: #5c6976;
  --line: #dfe5eb;
  --brand: #19577d;
  --brand-dark: #102f45;
  --brand-bright: #2278ad;
  --accent: #e1a43b;
  --accent-bright: #ffbd45;
  --soft: #f4f7f9;
  --white: #ffffff;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: var(--white);
}

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

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

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

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  color: var(--brand-dark);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
}

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

.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--brand);
}

.hero {
  min-height: 610px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 24%, rgba(255, 189, 69, 0.22), transparent 30%),
    linear-gradient(90deg, rgba(7, 23, 35, 0.9), rgba(10, 30, 44, 0.42)),
    url("assets/images/image-01.png") center / cover no-repeat;
  display: grid;
  align-items: center;
}

.hero.small {
  min-height: 340px;
}

.hero.air {
  background:
    radial-gradient(circle at 74% 22%, rgba(255, 189, 69, 0.18), transparent 32%),
    linear-gradient(90deg, rgba(10, 30, 44, 0.88), rgba(10, 30, 44, 0.38)),
    url("assets/images/image-02.jpg") center / cover no-repeat;
}

.hero.local {
  background:
    radial-gradient(circle at 76% 24%, rgba(255, 189, 69, 0.16), transparent 31%),
    linear-gradient(90deg, rgba(10, 30, 44, 0.88), rgba(10, 30, 44, 0.42)),
    url("assets/images/image-05.jpg") center / cover no-repeat;
}

.hero-content,
.section,
.footer-inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 22px;
}

.hero-content {
  max-width: 860px;
  margin-left: calc((100% - min(var(--max), 100%)) / 2);
}

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

h1,
h2,
h3 {
  line-height: 1.15;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0 0 16px;
}

.lead {
  max-width: 720px;
  font-size: 1.2rem;
}

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

.trust-strip span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  font-size: 0.86rem;
  font-weight: 800;
  backdrop-filter: blur(6px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 2px solid var(--brand);
  border-radius: 6px;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand), var(--brand-bright));
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(16, 47, 69, 0.16);
}

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

.button.light {
  color: var(--brand);
  background: var(--white);
  border-color: var(--white);
}

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

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

.grid.two {
  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 14px 36px rgba(16, 47, 69, 0.07);
}

.card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 18px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.feature {
  padding: 18px;
  border-left: 4px solid var(--accent);
  background: var(--white);
}

.photo-band {
  min-height: 420px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 23, 35, 0.88), rgba(7, 23, 35, 0.34)),
    url("assets/images/image-05.jpg") center / cover no-repeat;
  display: grid;
  align-items: center;
}

.photo-band-text {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 22px;
}

.photo-band-text p {
  max-width: 650px;
}

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

.step {
  position: relative;
  overflow: hidden;
  padding: 28px 24px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(150deg, var(--brand-dark), var(--brand));
}

.step span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  color: var(--brand-dark);
  background: var(--accent-bright);
  font-weight: 900;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.check-grid div {
  position: relative;
  padding: 17px 18px 17px 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 700;
}

.check-grid div::before {
  content: ">";
  position: absolute;
  left: 17px;
  color: var(--brand-bright);
  font-weight: 900;
}

.faq {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--brand-dark);
  font-weight: 900;
}

details p {
  padding: 0 20px 20px;
}

.cta-band {
  color: var(--white);
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 189, 69, 0.25), transparent 28%),
    linear-gradient(135deg, var(--brand-dark), var(--brand));
}

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

.cta-inner p {
  max-width: 640px;
}

.mini-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.mobile-call {
  display: none;
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 38px;
  align-items: center;
}

.portrait {
  border-radius: 8px;
  max-height: 420px;
  object-fit: cover;
}

.contact-box {
  display: grid;
  gap: 8px;
  padding: 22px;
  border-radius: 8px;
  color: var(--white);
  background: var(--brand-dark);
}

.contact-box a {
  color: var(--white);
}

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid #bdc7d1;
  border-radius: 6px;
  font: inherit;
}

textarea {
  min-height: 150px;
}

.note {
  color: var(--muted);
  font-size: 0.94rem;
}

.site-footer {
  color: #dce8f0;
  background: var(--brand-dark);
}

.footer-inner {
  padding-top: 40px;
  padding-bottom: 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
}

.site-footer a {
  color: var(--white);
}

.footer-links {
  display: grid;
  gap: 8px;
}

@media (max-width: 820px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .hero-content,
  .section,
  .footer-inner {
    padding: 48px 18px;
  }

  .hero-content {
    margin-left: auto;
  }

  .grid,
  .grid.two,
  .three-tight,
  .feature-list,
  .steps,
  .check-grid,
  .split,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 560px;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-call {
    position: fixed;
    right: 14px;
    bottom: 14px;
    z-index: 30;
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 11px 16px;
    border-radius: 999px;
    color: var(--brand-dark);
    background: var(--accent-bright);
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
  }
}
