:root {
  --navy: #0a2f74;
  --navy-deep: #061f4f;
  --gold: #f2a01a;
  --gold-soft: #ffd27c;
  --ink: #122033;
  --text: #27384a;
  --muted: #617183;
  --line: rgba(18, 32, 51, 0.08);
  --soft: #f5f7fb;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(7, 24, 52, 0.12);
  --radius: 24px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.section { padding: 90px 0; }
.section-soft { background: var(--soft); }

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(278deg, var(--navy-deep), var(--navy));
  box-shadow: 0 10px 30px rgba(0,0,0,0.16);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.brand-mark {
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 900;
}
.brand-logo {
  font-weight: 900;
  font-size: 2rem;
  color: #fff;
  letter-spacing: -0.05em;
}
.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav a {
  color: rgba(255,255,255,.92);
  font-size: .96rem;
  font-weight: 700;
}
.nav a:hover { color: #fff; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary,
.btn-nav {
  background: linear-gradient(135deg, #eb9206, var(--gold));
  color: #fff !important;
  box-shadow: 0 14px 35px rgba(242,160,26,.28);
}
.btn-outline-light {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.55);
  color: #fff;
}
.full { width: 100%; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 3px;
  margin: 6px 0;
  border-radius: 99px;
  background: #fff;
}

.hero-slider {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: #03142f;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  background-size: cover;
  background-position: center;
  transition: opacity .8s ease, visibility .8s ease;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4,20,52,.84) 0%, rgba(6,31,79,.6) 40%, rgba(6,31,79,.22) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  min-height: 760px;
  display: flex;
  align-items: center;
}
.glass-panel {
  max-width: 760px;
  padding: 34px;
  border-radius: 26px;
  background: rgba(7, 24, 52, .34);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(7px);
}
.eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  color: var(--gold-soft);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.hero-copy h1 {
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -.05em;
}
.hero-copy h1 span { color: #ffc23a; }
.hero-copy p {
  margin: 0;
  color: rgba(255,255,255,.9);
  font-size: 1.08rem;
  max-width: 650px;
}
.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.slider-controls {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 18px;
}
.slider-arrow {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 1.15rem;
  cursor: pointer;
}
.slider-dots { display: flex; gap: 10px; }
.slider-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.4);
  cursor: pointer;
}
.slider-dot.active { background: var(--gold); }

.split-grid,
.mv-grid,
.contact-grid,
.service-grid,
.values-grid,
.advantage-grid,
.client-grid,
.contact-card-list,
.mini-stats,
.timeline.refined {
  display: grid;
  gap: 24px;
}
.split-grid,
.contact-grid { grid-template-columns: 1.05fr .95fr; align-items: center; }
.service-grid,
.values-grid,
.advantage-grid,
.client-grid { grid-template-columns: repeat(3, 1fr); }
.mv-grid { grid-template-columns: 1.1fr .9fr; align-items: stretch; }
.mini-stats { grid-template-columns: repeat(2, 1fr); margin-top: 26px; }
.mini-stats div,
.contact-card,
.service-card,
.values-grid article,
.client-grid article,
.mv-card,
.timeline article,
.quote-form,
.advantage-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.image-card,
.card-image,
.image-panel {
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.large-photo { min-height: 560px; }
.tall { min-height: 620px; }
.image-panel { min-height: 520px; }
.content-block h2,
.section-head h2,
.cta-band h2,
.contact-section h2 {
  margin: 18px 0 14px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -.04em;
  color: var(--ink);
}
.content-block p,
.section-head p,
.cta-band p,
.contact-card span,
.timeline p,
.service-card p,
.values-grid p,
.advantage-grid p,
.client-grid article,
.footer p,
.mini-stats span,
.quote-form label,
.form-notice { color: var(--muted); }
.section-head { margin-bottom: 36px; }
.section-head.center { text-align: center; margin-inline: auto; }
.section-head.narrow { max-width: 780px; }
.section-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 800;
  color: var(--navy);
  background: rgba(10,47,116,.08);
  border: 1px solid rgba(10,47,116,.12);
}
.section-tag.gold {
  color: #a86400;
  background: rgba(242,160,26,.12);
  border-color: rgba(242,160,26,.2);
}
.section-tag.gold-dark {
  color: #fff2cf;
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.12);
}
.card-image { height: 220px; border-radius: 24px 24px 0 0; }
.card-body { padding: 26px; }
.service-number {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--navy), #295eb6);
  color: #fff;
  font-weight: 900;
  margin-bottom: 16px;
}
.service-card h3,
.values-grid h3,
.advantage-grid h3,
.timeline h3,
.contact-card strong,
.mv-card h3 { margin: 0 0 8px; color: var(--ink); }
.mini-stats div { padding: 22px; }
.mini-stats strong { display: block; margin-bottom: 6px; color: var(--navy); }

.mission-vision { background: linear-gradient(180deg, #fff 0%, #f7f9fd 100%); }
.mv-stack { display: grid; gap: 22px; }
.mv-card { padding: 30px; }
.navy-card {
    background: linear-gradient(265deg, #72007b 0%, #cb7f03 100%);
    border-color: rgba(255, 255, 255, .1);
}

.navy-card h3,
.premium-band .section-head h2,
.premium-band .advantage-grid h3,
.cta-band h2,
.cta-band p { color: #fff; }
.navy-card h3 { color: #fff; }

.values-grid article,
.client-grid article,
.advantage-grid article { padding: 28px; }
.values-grid article { position: relative; overflow: hidden; }
.values-grid article::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), #ffd17a);
}

.premium-band {
  background: linear-gradient(135deg, #081d48 0%, #0d347d 100%);
}
.light-text h2 { color: #fff; }
.advantage-grid article {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.12);
  box-shadow: none;
}
.premium-band .advantage-grid p { color: rgba(255,255,255,.8); }

.timeline article {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: start;
  padding: 22px;
}
.timeline article span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gold), #ffc85b);
  color: #fff;
  font-weight: 900;
  font-size: 1.1rem;
}

.cta-band {
  background: linear-gradient(135deg, rgba(8,29,72,.98), rgba(13,52,125,.92)), url('../img/hero-supply-meeting.png') center/cover;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.contact-section { background: #fff; }
.contact-card-list { margin-top: 24px; }
.contact-card { padding: 22px 24px; }
.quote-form { padding: 30px; }
.quote-form h3 { margin-top: 0; color: var(--ink); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.quote-form label {
  display: block;
  font-size: .92rem;
  font-weight: 700;
  margin-bottom: 7px;
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(18,32,51,.12);
  border-radius: 14px;
  padding: 14px 15px;
  font: inherit;
  color: var(--ink);
  background: #fff;
  margin-bottom: 16px;
}
.form-notice {
  display: none;
  margin: 14px 0 0;
  font-weight: 700;
}
.form-notice.show { display: block; }

.footer {
  background: #061a42;
  color: rgba(255,255,255,.8);
  padding: 30px 0;
}
.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-links a { color: rgba(255,255,255,.9); }

@media (max-width: 1080px) {
  .split-grid,
  .contact-grid,
  .mv-grid,
  .service-grid,
  .values-grid,
  .advantage-grid,
  .client-grid,
  .mini-stats,
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
  .service-grid article:last-child,
  .values-grid article:last-child,
  .advantage-grid article:last-child,
  .client-grid article:last-child { grid-column: span 2; }
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, var(--navy), var(--navy-deep));
    padding: 18px 20px 24px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .nav.show { display: flex; }
  .split-grid,
  .contact-grid,
  .mv-grid,
  .service-grid,
  .values-grid,
  .advantage-grid,
  .client-grid,
  .mini-stats,
  .form-row,
  .cta-inner {
    grid-template-columns: 1fr;
    display: grid;
  }
  .hero-slider,
  .hero-content { min-height: 680px; }
  .glass-panel { padding: 28px; }
  .content-block h2,
  .section-head h2,
  .cta-band h2,
  .contact-section h2 { font-size: 2.15rem; }
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  .service-grid article:last-child,
  .values-grid article:last-child,
  .advantage-grid article:last-child,
  .client-grid article:last-child { grid-column: auto; }
}

@media (max-width: 560px) {
  .container { width: min(var(--container), calc(100% - 24px)); }
  .section { padding: 72px 0; }
  .hero-slider,
  .hero-content { min-height: 620px; }
  .brand-logo { font-size: 1.7rem; }
  .btn { width: 100%; }
  .hero-actions { flex-direction: column; }
  .slider-controls { gap: 10px; }
  .slider-arrow { width: 42px; height: 42px; }
}
