:root {
  --navy: #061427;
  --navy-2: #0b1f3a;
  --blue: #1473c8;
  --blue-bright: #1d8cf0;
  --blue-soft: #d7ebff;
  --orange: #e85a24;
  --orange-hot: #ff5a1f;
  --ice: #f3f7fb;
  --white: #ffffff;
  --text: #142033;
  --muted: #5b6b80;
  --line: #dbe6f2;
  --shadow: 0 18px 50px rgba(6, 20, 39, 0.12);
  --radius: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.skip {
  position: absolute; left: -999px;
}
.skip:focus { left: 12px; top: 12px; background: #fff; padding: 8px 12px; z-index: 99; }

.topbar {
  background: var(--navy);
  color: #c9d7ea;
  font-size: 0.88rem;
  padding: 8px 0;
}
.topbar .container {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.topbar a { color: #fff; font-weight: 600; }
.topbar a:hover { color: var(--blue-soft); }

.header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(6, 20, 39, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 86px; gap: 20px;
}
.logo {
  display: flex; align-items: center; flex-shrink: 0;
}
.logo img {
  height: 78px; width: auto;
  background: transparent;
  object-fit: contain;
}
.nav-links {
  display: flex; align-items: center; gap: 26px; list-style: none;
  color: #e8eef7;
  font-weight: 500;
}
.nav-links a { position: relative; }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a.active::after,
.nav-links a:hover::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -8px;
  height: 2px; background: var(--orange);
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; border-radius: 999px; padding: 12px 22px; cursor: pointer;
  font-weight: 700; transition: 0.2s ease;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: #cf4b1b; transform: translateY(-1px); }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: var(--blue-soft); }
.btn-outline {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.menu-toggle {
  display: none; background: none; border: 0; color: #fff; font-size: 1.6rem; cursor: pointer;
}

.hero {
  position: relative; min-height: 88vh;
  display: grid; align-items: center;
  color: #fff; overflow: hidden;
  background:
    linear-gradient(100deg, rgba(6,20,39,0.88) 8%, rgba(6,20,39,0.45) 58%, rgba(20,115,200,0.25)),
    url("https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?auto=format&fit=crop&w=1800&q=80") center/cover;
}
.hero-inner { padding: 72px 0 88px; max-width: 740px; }
.eyebrow {
  display: inline-flex; gap: 8px; align-items: center;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 6px 12px; border-radius: 999px;
  font-size: 0.82rem; letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 18px;
}
.hero h1 {
  font-family: Outfit, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.1rem);
  line-height: 1.08; margin-bottom: 18px;
}
.hero p { font-size: 1.12rem; color: #dce7f5; max-width: 58ch; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px; margin-top: 48px; max-width: 560px;
}
.hero-stats strong { display: block; font-size: 1.6rem; font-family: Outfit, sans-serif; }
.hero-stats span { color: #b7c7db; font-size: 0.9rem; }

.section { padding: 88px 0; }
.section.alt { background: var(--ice); }
.section-head { max-width: 640px; margin-bottom: 40px; }
.kicker { color: var(--blue); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.8rem; }
h2, h3 { font-family: Outfit, sans-serif; line-height: 1.15; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin: 8px 0 12px; }
h3 { font-size: 1.25rem; }
.lede { color: var(--muted); font-size: 1.05rem; }

.cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow); transition: 0.2s ease;
}
.card:hover { transform: translateY(-4px); }
.card .icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 16px;
  background: var(--blue-soft); color: var(--blue); font-size: 1.3rem;
}
.card p { color: var(--muted); margin: 10px 0 16px; }
.card a { color: var(--blue); font-weight: 700; }

.split {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center;
}
.split img, .media {
  border-radius: 24px; width: 100%; height: 460px; object-fit: cover;
  box-shadow: var(--shadow);
}
.split img.logo-showcase {
  object-fit: contain;
  background: var(--ice);
  padding: 36px 28px;
  height: auto;
  min-height: 320px;
}
.checklist { list-style: none; margin: 20px 0 28px; }
.checklist li {
  padding: 8px 0 8px 28px; position: relative;
}
.checklist li::before {
  content: "✓"; position: absolute; left: 0; color: var(--orange); font-weight: 800;
}

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step {
  background: var(--navy); color: #fff; border-radius: var(--radius); padding: 24px; min-height: 210px;
}
.step span {
  display: inline-block; color: var(--orange); font-family: Outfit, sans-serif;
  font-weight: 800; font-size: 1.4rem; margin-bottom: 12px;
}
.step p { color: #c5d3e6; margin-top: 8px; }

.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.quote {
  background: #fff; border-radius: var(--radius); padding: 24px; border: 1px solid var(--line);
}
.quote p { margin-bottom: 16px; }
.quote strong { display: block; }
.quote small { color: var(--muted); }

.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 16px 18px; margin-bottom: 10px;
}
.faq summary { cursor: pointer; font-weight: 700; }
.faq p { color: var(--muted); margin-top: 8px; }

.cta-band {
  background: linear-gradient(120deg, var(--navy), #0d3a6e 55%, var(--blue));
  color: #fff; border-radius: 28px; padding: 48px;
  display: flex; justify-content: space-between; gap: 24px; align-items: center;
}
.cta-band p { color: #d5e3f5; margin-top: 8px; }

.page-hero {
  background:
    linear-gradient(rgba(6,20,39,0.82), rgba(6,20,39,0.7)),
    var(--page-img, url("https://images.unsplash.com/photo-1484154218962-a197022b5858?auto=format&fit=crop&w=1600&q=80")) center/cover;
  color: #fff; padding: 92px 0 64px;
}
.page-hero h1 { font-family: Outfit, sans-serif; font-size: clamp(2rem, 4vw, 3.2rem); margin: 10px 0; }
.breadcrumb { color: #c9d7ea; font-size: 0.92rem; }
.breadcrumb a { color: #fff; }

.form {
  position: relative;
  display: grid; gap: 14px; background: #fff; padding: 28px; border-radius: var(--radius);
  box-shadow: var(--shadow); border: 1px solid var(--line);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { font-size: 0.9rem; font-weight: 650; display: grid; gap: 6px; }
input, select, textarea {
  border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; background: #fbfdff;
}
textarea { min-height: 130px; resize: vertical; }
.form-note { color: var(--muted); font-size: 0.88rem; }
.success {
  display: none; background: #e8f8ee; color: #146c36; padding: 14px; border-radius: 12px; font-weight: 650;
}
.form-error {
  display: none; background: #fdecea; color: #9b1c1c; padding: 14px; border-radius: 12px; font-weight: 650;
}
.hp {
  position: absolute; left: -9999px; height: 0; overflow: hidden;
}

.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 32px; }
.info-box {
  background: var(--navy); color: #fff; border-radius: 24px; padding: 32px;
}
.info-box a { color: #fff; }
.info-box p, .info-box li { color: #c9d7ea; }
.info-box ul { list-style: none; margin-top: 18px; }
.info-box li { margin: 10px 0; }

.footer {
  background: var(--navy); color: #c9d7ea; padding: 56px 0 24px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; }
.footer h3 { color: #fff; margin-bottom: 14px; }
.footer a:hover { color: #fff; }
.footer ul { list-style: none; }
.footer li { margin: 8px 0; }
.footer-logo {
  height: 92px; width: auto; margin-bottom: 14px;
  background: transparent; object-fit: contain;
}
.legal {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 36px; padding-top: 16px; font-size: 0.85rem;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}

@media (max-width: 980px) {
  .cards, .steps, .quote-grid, .split, .contact-grid, .footer-grid, .form-row {
    grid-template-columns: 1fr 1fr;
  }
  .cta-band, .split { grid-template-columns: 1fr; }
  .menu-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 86px; left: 0; right: 0;
    background: var(--navy-2); flex-direction: column; padding: 20px; gap: 16px;
  }
  .nav-links.open { display: flex; }
  .nav { position: relative; }
  .hero-stats { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 640px) {
  .cards, .steps, .quote-grid, .footer-grid, .form-row, .contact-grid, .hero-stats {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; }
  .cta-band { padding: 28px; }
}
