:root {
  --blue: #174a9c;
  --blue-dark: #0c2d66;
  --blue-soft: #eaf2ff;
  --yellow: #ffd84d;
  --red: #d8352a;
  --mint: #58c4c7;
  --ink: #172033;
  --muted: #667085;
  --line: #d9e2ef;
  --paper: #ffffff;
  --sand: #f7f4ee;
  --shadow: 0 24px 70px rgba(12, 45, 102, 0.14);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--blue);
  color: #fff;
  padding: .75rem 1rem;
  border-radius: 999px;
  z-index: 20;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(23,74,156,.12);
}
.nav-wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: .85rem 0;
}
.logo { display: inline-flex; align-items: center; gap: .75rem; text-decoration: none; }
.logo img { width: 276px; height: auto; }
.nav { display: flex; align-items: center; gap: .35rem; flex-wrap: wrap; justify-content: flex-end; }
.nav a {
  text-decoration: none;
  color: var(--blue-dark);
  font-weight: 800;
  font-size: .86rem;
  letter-spacing: .02em;
  padding: .62rem .78rem;
  border-radius: 999px;
}
.nav a:hover, .nav a.active { background: var(--blue-soft); color: var(--blue); }
.nav .call { background: var(--blue); color: #fff; box-shadow: 0 10px 24px rgba(23,74,156,.22); }
.nav .call:hover { background: var(--blue-dark); color: #fff; }

main { overflow: hidden; }
.section { padding: 88px 0; }
.section-tight { padding: 58px 0; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
}
.kicker::before { content: ""; width: 34px; height: 4px; border-radius: 999px; background: linear-gradient(90deg, var(--yellow), var(--red)); }
h1, h2, h3 { line-height: 1.08; margin: 0 0 1rem; color: var(--blue-dark); }
h1 { font-size: clamp(2.45rem, 5.2vw, 4.85rem); letter-spacing: -.055em; }
h2 { font-size: clamp(2rem, 4vw, 3.7rem); letter-spacing: -.04em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.7rem); }
p { margin: 0 0 1.1rem; color: var(--muted); }
.lead { font-size: clamp(1.1rem, 2vw, 1.35rem); color: #3d4b66; max-width: 760px; }

.hero {
  position: relative;
  padding: 68px 0 90px;
  background:
    radial-gradient(circle at 12% 20%, rgba(255,216,77,.36), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(216,53,42,.16), transparent 27%),
    linear-gradient(135deg, #ffffff 0%, #edf5ff 52%, #fff8dd 100%);
}
.hero-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr); gap: 38px; align-items: center; }
.hero-card {
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(23,74,156,.13);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1.25rem, 2.7vw, 2rem);
}
.hero-logo { width: min(390px, 100%); margin-bottom: 1.35rem; }
.hero-actions, .button-row { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.5rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 48px;
  padding: .85rem 1.2rem;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  border: 2px solid transparent;
}
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 16px 34px rgba(23,74,156,.24); }
.btn-primary:hover { background: var(--blue-dark); }
.btn-secondary { background: #fff; color: var(--blue); border-color: rgba(23,74,156,.22); }
.btn-secondary:hover { border-color: var(--blue); }
.hero-media { position: relative; justify-self: end; width: 100%; max-width: 568px; }
.hero-media img { border-radius: 34px; box-shadow: var(--shadow); aspect-ratio: 4 / 3; object-fit: cover; object-position: 52% center; width: 100%; }
.badge-stack {
  position: absolute;
  left: -22px;
  bottom: -24px;
  display: grid;
  gap: .6rem;
}
.badge {
  background: #fff;
  border: 1px solid rgba(23,74,156,.12);
  border-left: 7px solid var(--yellow);
  border-radius: 18px;
  padding: .75rem 1rem;
  box-shadow: 0 14px 34px rgba(12,45,102,.16);
  font-weight: 900;
  color: var(--blue-dark);
}
.badge:nth-child(2) { border-left-color: var(--red); }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.stat { background: #fff; border: 1px solid rgba(23,74,156,.12); border-radius: 22px; padding: 1rem; }
.stat strong { display: block; font-size: 1.8rem; color: var(--blue); line-height: 1; }
.stat span { color: var(--muted); font-weight: 700; font-size: .9rem; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 2.2rem; }
.split > .cards { grid-template-columns: 1fr; margin-top: 0; }
.card {
  background: var(--paper);
  border: 1px solid rgba(23,74,156,.12);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(12,45,102,.08);
}
.card img { width: 100%; height: 220px; object-fit: cover; }
.card-body { padding: 1.35rem; }
.card .tag { color: var(--blue); font-weight: 900; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.card p { margin-bottom: 0; }

.split { display: grid; grid-template-columns: .85fr 1.15fr; gap: 44px; align-items: start; }
.panel { background: #fff; border: 1px solid rgba(23,74,156,.12); border-radius: var(--radius); padding: clamp(1.3rem, 3vw, 2.2rem); box-shadow: var(--shadow); }
.feature-list { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: .85rem; }
.feature-list li { padding-left: 2rem; position: relative; color: #3d4b66; }
.feature-list li::before { content: ""; position: absolute; left: 0; top: .45rem; width: 13px; height: 13px; border-radius: 50%; background: linear-gradient(135deg, var(--yellow), var(--red)); box-shadow: 0 0 0 5px rgba(255,216,77,.2); }

.band { background: var(--blue-dark); color: #fff; }
.band h2, .band h3, .band p { color: #fff; }
.band p { opacity: .82; }
.band .kicker { color: #fff; }
.band .card { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.14); box-shadow: none; }
.band .card-body p { color: rgba(255,255,255,.78); }
.band .card .tag { color: var(--yellow); }
.band .service-box { background: #fff; border-color: rgba(255,255,255,.22); }
.band .service-box h3 { color: var(--blue-dark); }
.band .service-box p { color: #3d4b66; opacity: 1; }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 2rem; }
.gallery-item { position: relative; overflow: hidden; border-radius: 22px; min-height: 220px; background: #ddd; }
.gallery-item img { width: 100%; height: 100%; min-height: 220px; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 1rem; color: #fff; font-weight: 900; background: linear-gradient(transparent, rgba(0,0,0,.72)); }
.gallery-item.wide { grid-column: span 2; }

.service-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 1.5rem; }
.service-box { background: #fff; border: 1px solid rgba(23,74,156,.12); border-radius: 24px; padding: 1.35rem; }
.service-box h3 { display: flex; align-items: center; gap: .75rem; }
.service-box h3 { color: var(--blue-dark); }
.service-box p { color: #3d4b66; }
.dot {
  width: 30px;
  height: 30px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--mint));
  box-shadow: 0 10px 22px rgba(23,74,156,.18);
  flex: 0 0 30px;
  position: relative;
}
.dot::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 7px;
  width: 8px;
  height: 13px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.contact-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 28px; align-items: stretch; }
.contact-card { background: #fff; border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); border: 1px solid rgba(23,74,156,.12); }
.contact-card a { color: var(--blue); font-weight: 900; text-decoration: none; }
.map-shell { position: relative; min-height: 420px; border-radius: var(--radius); overflow: hidden; box-shadow: inset 0 0 0 1px rgba(23,74,156,.16), var(--shadow); background: linear-gradient(135deg, #eaf2ff, #fff8dd); }
.map { border: 0; width: 100%; min-height: 420px; height: 100%; border-radius: var(--radius); filter: saturate(1.05) contrast(1.02); }
.map-note { position: absolute; left: 22px; bottom: 22px; max-width: calc(100% - 44px); background: rgba(255,255,255,.94); border: 1px solid rgba(23,74,156,.14); border-left: 7px solid var(--blue); border-radius: 18px; box-shadow: 0 14px 34px rgba(12,45,102,.16); padding: .9rem 1rem; }
.map-note strong, .map-note span { display: block; }
.map-note strong { color: var(--blue-dark); }
.map-note span { color: #3d4b66; font-weight: 700; }
.regions { columns: 2; column-gap: 2rem; color: var(--muted); }

.legal-page { background: #fff; }
.legal { max-width: 860px; }
.legal h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
.legal h2 { font-size: 1.45rem; margin-top: 2rem; }
.legal p, .legal li { color: #3d4b66; }

.site-footer { background: #071d42; color: #fff; padding: 42px 0; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; }
.footer-logo { width: 260px; background: #fff; border-radius: 18px; padding: .35rem; }
.footer-links { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: flex-end; }
.footer-links a { color: #fff; text-decoration: none; opacity: .82; font-weight: 800; }
.footer-links a:hover { opacity: 1; }
.footer-note { color: rgba(255,255,255,.68); margin: .8rem 0 0; }

@media (max-width: 980px) {
  .nav-wrap { align-items: flex-start; flex-direction: column; }
  .nav { justify-content: flex-start; }
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .badge-stack { position: static; margin-top: 1rem; }
}
@media (max-width: 640px) {
  .section { padding: 58px 0; }
  .nav a { font-size: .8rem; padding: .5rem .6rem; }
  .logo img { width: 210px; }
  .cards, .service-row, .stats { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .regions { columns: 1; }
}
