:root {
  --navy: #0c2d5d;
  --navy-deep: #081b39;
  --orange: #f28c18;
  --orange-soft: #ffb24b;
  --sand: #f6f3ee;
  --white: #ffffff;
  --text: #1a2740;
  --muted: #617089;
  --line: rgba(12, 45, 93, 0.1);
  --shadow: 0 18px 50px rgba(8, 27, 57, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(12, 45, 93, 0.08);
  box-shadow: 0 8px 24px rgba(8, 27, 57, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a,
.mobile-nav a {
  text-decoration: none;
}

.nav-link,
.mobile-nav a {
  color: var(--navy);
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 8px;
  transition: 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-nav a:hover {
  color: var(--navy);
  background: rgba(12, 45, 93, 0.08);
}

.nav-cta,
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 10px;
  padding: 13px 22px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s ease;
}

.nav-cta,
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-soft));
  color: var(--white);
  box-shadow: 0 10px 24px rgba(242, 140, 24, 0.22);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.btn-secondary.dark {
  border-color: var(--navy);
  color: var(--navy);
}

.nav-cta:hover,
.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(12, 45, 93, 0.14);
  background: transparent;
  color: var(--navy);
  border-radius: 10px;
  font-size: 18px;
}

.mobile-nav {
  display: none;
  padding: 0 16px 16px;
  background: var(--white);
  border-top: 1px solid rgba(12, 45, 93, 0.08);
}

.mobile-nav.open {
  display: grid;
  gap: 6px;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 27, 57, 0.9), rgba(12, 45, 93, 0.76)),
    url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=80&fit=crop") center/cover no-repeat;
}

.hero {
  padding: 86px 0 76px;
}

.page-hero {
  padding: 84px 0 58px;
}

.hero-grid,
.split-grid,
.contact-grid,
.service-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--orange-soft);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 14px;
  line-height: 1.2;
}

h1 {
  font-size: clamp(34px, 5vw, 58px);
}

h2 {
  font-size: clamp(28px, 3.6vw, 42px);
}

.lead,
.section-text {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
}

.hero-card,
.metric-card,
.panel,
.service-card,
.info-card,
.faq-item,
.contact-card,
.service-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.hero-side {
  display: grid;
  gap: 16px;
}

.hero-card {
  padding: 24px;
  color: var(--text);
}

.hero-card h3,
.panel h3,
.service-card h3,
.service-box h3,
.contact-card h3,
.info-card h3 {
  color: var(--navy);
}

.hero-points,
.check-list,
.link-list,
.contact-list,
.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-points li,
.check-list li,
.contact-list li,
.service-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.hero-points li:last-child,
.check-list li:last-child,
.contact-list li:last-child,
.service-list li:last-child {
  border-bottom: 0;
}

section {
  padding: 72px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-head p,
.panel p,
.service-card p,
.service-box p,
.contact-card p,
.faq-body,
.muted {
  color: var(--muted);
}

.cards-3,
.cards-4,
.service-grid,
.stats-grid,
.faq-grid {
  display: grid;
  gap: 20px;
}

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

.cards-4,
.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.panel,
.service-card,
.service-box,
.contact-card,
.info-card {
  padding: 26px;
}

.metric-card {
  padding: 22px;
  text-align: center;
}

.metric-card strong {
  display: block;
  font-size: 34px;
  color: var(--orange);
  line-height: 1;
}

.metric-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.accent {
  color: var(--orange);
}

.alt {
  background: var(--sand);
}

.cta-band {
  padding: 72px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 27, 57, 0.94), rgba(12, 45, 93, 0.9)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1600&q=80&fit=crop") center/cover no-repeat;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.8);
}

.contact-list a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
}

.contact-list .label {
  display: block;
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

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

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

label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 15px;
  border-radius: 12px;
  border: 1px solid rgba(12, 45, 93, 0.14);
  background: #fbfcfe;
  font: inherit;
  color: var(--text);
}

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

.map-frame {
  width: 100%;
  min-height: 380px;
  border: 0;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.faq-item {
  overflow: hidden;
}

.faq-head {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 22px 24px;
  text-align: left;
  font: inherit;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}

.faq-body {
  display: none;
  padding: 0 24px 24px;
}

.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.82);
  padding: 54px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a {
  text-decoration: none;
}

.link-list li {
  margin-bottom: 10px;
}

.footer-bottom {
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14px;
}

@media (max-width: 960px) {
  .site-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-grid,
  .split-grid,
  .contact-grid,
  .service-layout,
  .cards-3,
  .cards-4,
  .service-grid,
  .stats-grid,
  .faq-grid,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }
}
