:root {
  --bg: #f3f7fb;
  --ink: #0f1b2d;
  --muted: #4d5d74;
  --line: #d4dcea;
  --surface: #ffffff;
  --surface-soft: #eaf0f8;
  --primary: #ff5a1f;
  --primary-strong: #da4310;
  --accent: #0f4ac6;
  --accent-soft: #1f74ff;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow: 0 22px 42px rgba(15, 27, 45, 0.12);
  --shadow-soft: 0 10px 26px rgba(15, 27, 45, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 6% 4%, rgba(31, 116, 255, 0.16), transparent 26%),
    radial-gradient(circle at 90% 3%, rgba(255, 90, 31, 0.17), transparent 28%),
    var(--bg);
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.18;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.02em;
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

section[id] {
  scroll-margin-top: 90px;
}

.container {
  width: min(1160px, 92%);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #fff;
  color: var(--ink);
  padding: 0.75rem 1rem;
  border-radius: 10px;
  z-index: 10000;
  font-weight: 700;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(9, 16, 31, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(11px);
}

.header-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.72rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  min-width: 0;
}

.brand-mark {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), #ff8a1f);
  box-shadow: 0 9px 20px rgba(255, 90, 31, 0.48);
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
}

.brand-copy {
  min-width: 0;
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy strong {
  color: #f5f8ff;
  font-size: 1.02rem;
}

.brand-copy small {
  color: #c3d2f2;
  font-size: 0.74rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.main-nav a {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  color: #e1ecff;
  font-size: 0.88rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.38rem;
  padding: 0.74rem 1.12rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 0.92rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:focus-visible {
  outline: 3px solid rgba(31, 116, 255, 0.35);
  outline-offset: 2px;
}

.btn-call {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 20px rgba(255, 90, 31, 0.42);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 22px rgba(15, 74, 198, 0.36);
}

.btn-primary:hover {
  background: var(--accent-soft);
}

.btn-secondary {
  color: #0a3a9e;
  border-color: #b8cbef;
  background: #edf4ff;
}

.hero {
  padding: 2.1rem 0 2.6rem;
}

.hero-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: stretch;
}

.hero-content {
  background: linear-gradient(155deg, #0c1c36, #11315e 58%, #1a4f8e);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(1.2rem, 3vw, 2.1rem);
  box-shadow: var(--shadow);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.68rem;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  color: #7cb3ff;
}

.hero h1 {
  font-size: clamp(2rem, 5.6vw, 3.35rem);
  margin-bottom: 0.7rem;
}

.hero-lead {
  color: #dce9ff;
  max-width: 50ch;
}

.hero-actions {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero-tags {
  list-style: none;
  margin-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-tags li {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  padding: 0.36rem 0.65rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-panel {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 1rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 0.92rem;
}

.hero-panel h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.dispatch-list {
  display: grid;
  gap: 0.65rem;
}

.dispatch-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.72rem;
  background: #fbfcfe;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #15b85a;
  box-shadow: 0 0 0 5px rgba(21, 184, 90, 0.18);
  margin-top: 0.22rem;
}

.dispatch-list h3 {
  font-size: 1.24rem;
  color: #11284d;
}

.dispatch-list p {
  margin-top: 0.12rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-panel img {
  width: 100%;
  border-radius: 14px;
  min-height: 220px;
  object-fit: cover;
}

.section {
  padding: clamp(2rem, 4vw, 3.4rem) 0;
}

.section-head {
  max-width: 720px;
}

.section-head h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}

.section-issue {
  background: linear-gradient(180deg, rgba(234, 240, 248, 0.72), rgba(234, 240, 248, 0));
}

.issue-grid {
  margin-top: 1rem;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.issue-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1rem;
  box-shadow: var(--shadow-soft);
}

.issue-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.issue-card p {
  color: var(--muted);
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.proof-grid figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
}

.proof-grid figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-content {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1rem, 3vw, 1.8rem);
  box-shadow: var(--shadow-soft);
  display: grid;
  align-content: center;
  gap: 0.9rem;
}

.proof-content h2 {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
}

.proof-content ul {
  list-style: none;
  display: grid;
  gap: 0.56rem;
}

.proof-content li {
  border-left: 3px solid var(--accent);
  background: #f1f6ff;
  padding: 0.5rem 0.7rem;
  border-radius: 8px;
}

.section-process {
  background: #0f1a2b;
  color: #fff;
}

.section-process .eyebrow {
  color: #81b8ff;
}

.section-process .section-head h2 {
  color: #fff;
}

.process-list {
  list-style: none;
  margin-top: 1rem;
  display: grid;
  gap: 0.72rem;
}

.process-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 0.82rem;
}

.process-list span {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  background: linear-gradient(145deg, var(--primary), #ff8e1e);
}

.process-list h3 {
  font-size: 1.4rem;
}

.process-list p {
  color: #dae7ff;
}

.gallery-grid {
  margin-top: 1rem;
  display: grid;
  gap: 0.82rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-grid figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  min-height: 160px;
  box-shadow: var(--shadow-soft);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-area {
  background: linear-gradient(160deg, rgba(15, 74, 198, 0.09), rgba(255, 90, 31, 0.06));
}

.area-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 1.1rem;
  align-items: start;
}

.area-shell h2 {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
}

.area-shell p {
  color: var(--muted);
}

.area-shell ul {
  list-style: none;
  display: grid;
  gap: 0.5rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.area-shell li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-align: center;
  padding: 0.45rem 0.5rem;
  font-weight: 700;
  color: #21395e;
}

.faq-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.62rem;
}

.faq-list details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem 0.85rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin-top: 0.45rem;
  color: var(--muted);
}

.contact-band {
  background: linear-gradient(146deg, #0f2f61, #143a78 52%, #1650aa);
  color: #fff;
  padding: 2rem 0;
}

.contact-shell {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.contact-shell h2 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  margin-bottom: 0.45rem;
}

.contact-shell p {
  color: #dce8ff;
}

.contact-actions {
  display: grid;
  gap: 0.58rem;
}

.contact-actions .btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.45);
}

.site-footer {
  background: #0b1525;
  color: #c9d8f4;
  padding: 1rem 0 calc(1rem + env(safe-area-inset-bottom));
}

.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.footer-shell a {
  color: #fff;
  font-weight: 700;
}

.mobile-dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
  padding: 0.58rem max(0.58rem, env(safe-area-inset-left)) max(0.62rem, env(safe-area-inset-bottom)) max(0.58rem, env(safe-area-inset-right));
  background: rgba(6, 13, 24, 0.94);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-dock a {
  display: grid;
  place-items: center;
  min-height: 44px;
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.mobile-dock a:first-child {
  background: var(--primary);
  border-color: transparent;
}

@media (max-width: 1120px) {
  .issue-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .area-shell ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .header-shell {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand call"
      "nav nav";
    row-gap: 0.62rem;
  }

  .brand {
    grid-area: brand;
  }

  .main-nav {
    grid-area: nav;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 0.12rem;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .btn-call {
    grid-area: call;
  }

  .hero-grid,
  .proof-grid,
  .area-shell,
  .contact-shell {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .btn-call {
    padding-inline: 0.85rem;
    font-size: 0.85rem;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

  .brand-copy strong {
    font-size: 0.95rem;
  }

  .hero {
    padding: 1.3rem 0 2.1rem;
  }

  .hero-tags {
    gap: 0.44rem;
  }

  .hero-tags li {
    font-size: 0.78rem;
  }

  .issue-grid,
  .gallery-grid,
  .area-shell ul,
  .contact-actions {
    grid-template-columns: 1fr;
  }

  .process-list span {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
    border-radius: 10px;
  }

  .mobile-dock {
    display: grid;
  }

  .site-footer {
    padding-bottom: calc(4.4rem + env(safe-area-inset-bottom));
  }
}
