:root {
  --navy: #0b1f3a;
  --navy-2: #102b50;
  --gold: #f4b400;
  --blue: #1d4ed8;
  --ink: #1a1a1a;
  --muted: #64748b;
  --line: #e5e7eb;
  --soft: #f6f8fb;
  --white: #fff;
  --shadow: 0 24px 70px rgba(11, 31, 58, .14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--white);
  line-height: 1.65;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--navy);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

.section-pad { padding: 96px 0; }
.section-soft { background: var(--soft); }
.eyebrow {
  color: var(--blue);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.section-title {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-title h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  margin: 10px 0 14px;
}

.lead-copy {
  color: var(--muted);
  font-size: 1.06rem;
}

.btn {
  border-radius: 4px;
  font-weight: 800;
  padding: .85rem 1.25rem;
}

.btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.btn-primary:hover,
.btn-primary:focus {
  background: #d99f00;
  border-color: #d99f00;
  color: var(--navy);
}

.btn-outline-light:hover { color: var(--navy); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-navy:hover { background: var(--navy-2); color: var(--white); }

.site-header {
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(229, 231, 235, .8);
  backdrop-filter: blur(16px);
}

.navbar { padding: .85rem 0; }
.navbar-brand { display: flex; align-items: center; gap: .65rem; }
.navbar-brand img { width: 285px; height: auto; }
.nav-link {
  color: var(--navy);
  font-weight: 750;
  margin: 0 .25rem;
}
.nav-link:hover,
.nav-link.active { color: var(--blue); }

.hero {
  height: 600px;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  background: linear-gradient(0deg, rgba(11,31,58,.72), transparent);
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  width: 100%;
  height: 600px;
  background:
    linear-gradient(90deg, rgba(11,31,58,.94), rgba(11,31,58,.68) 55%, rgba(11,31,58,.24)),
    var(--hero-image) center/cover no-repeat;
}

.hero .container { position: relative; z-index: 2; }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.35rem, 5vw, 5.25rem);
  line-height: .96;
  max-width: 980px;
}
.hero p {
  max-width: 720px;
  color: rgba(255,255,255,.86);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

.hero-pagination {
  position: absolute;
  z-index: 3;
  left: calc((100vw - min(1320px, calc(100vw - 24px))) / 2);
  bottom: 34px;
  width: auto !important;
}

.hero-pagination .swiper-pagination-bullet {
  width: 34px;
  height: 4px;
  border-radius: 0;
  background: rgba(255,255,255,.62);
  opacity: 1;
}

.hero-pagination .swiper-pagination-bullet-active {
  background: var(--gold);
}

.stat-strip {
  margin-top: -72px;
  position: relative;
  z-index: 3;
}

.stat-panel {
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.stat-item {
  padding: 28px;
  border-right: 1px solid var(--line);
}
.stat-item:last-child { border-right: 0; }
.stat-number {
  color: var(--navy);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
}
.stat-label { color: var(--muted); font-weight: 750; margin-top: .45rem; }

.premium-card {
  height: 100%;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 40px rgba(11,31,58,.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.premium-card:hover {
  transform: translateY(-8px);
  border-color: rgba(29, 78, 216, .26);
  box-shadow: var(--shadow);
}

.icon-box {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  margin-bottom: 22px;
  color: var(--navy);
  background: linear-gradient(135deg, rgba(244,180,0,.98), rgba(244,180,0,.48));
  font-size: 1.25rem;
}

.image-panel {
  min-height: 520px;
  border-radius: 8px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.industry-card {
  min-height: 320px;
  display: flex;
  align-items: end;
  padding: 28px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(0deg, rgba(11,31,58,.9), rgba(11,31,58,.16)), var(--image) center/cover no-repeat;
  color: var(--white);
}
.industry-card h3 { color: var(--white); }
.industry-card p { color: rgba(255,255,255,.8); }

.value-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.value-card {
  padding: 24px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  min-height: 170px;
}
.value-card i { color: var(--gold); font-size: 1.45rem; margin-bottom: 18px; }
.value-card h3 { color: var(--white); font-size: 1.05rem; }

.cta-band {
  background:
    linear-gradient(90deg, rgba(11,31,58,.96), rgba(11,31,58,.78)),
    url("https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
  color: var(--white);
}
.cta-band h2 { color: var(--white); }

.page-hero {
  min-height: 56vh;
  display: flex;
  align-items: end;
  padding: 160px 0 82px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(11,31,58,.93), rgba(11,31,58,.58)),
    var(--hero-image) center/cover no-repeat;
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 5.4rem);
  line-height: 1;
}
.page-hero p { max-width: 740px; color: rgba(255,255,255,.84); }

.timeline {
  position: relative;
  display: grid;
  gap: 20px;
}
.timeline-item {
  padding: 26px;
  border-left: 4px solid var(--gold);
  background: var(--white);
  border-radius: 0 8px 8px 0;
  box-shadow: 0 10px 34px rgba(11,31,58,.06);
}

.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.process-step {
  position: relative;
  padding: 24px;
  min-height: 150px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
}
.process-step h3 { color: var(--white); font-size: 1.02rem; }
.process-step span { color: var(--gold); font-weight: 800; }

.project-slide,
.testimonial-slide {
  min-height: 420px;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(0deg, rgba(11,31,58,.88), rgba(11,31,58,.14)), var(--image) center/cover no-repeat;
  color: var(--white);
  display: flex;
  align-items: end;
  padding: 32px;
}
.testimonial-slide {
  min-height: 320px;
  background: var(--navy);
}
.project-slide h3,
.testimonial-slide h3 { color: var(--white); }

.accordion-button { font-weight: 800; color: var(--navy); }
.accordion-button:not(.collapsed) { background: rgba(244,180,0,.16); color: var(--navy); }

.contact-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(11,31,58,.08);
}

.form-control {
  border-radius: 4px;
  padding: .9rem 1rem;
  border-color: #d9dee7;
}
.form-control:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 .2rem rgba(29, 78, 216, .14);
}

.map-frame {
  width: 100%;
  min-height: 430px;
  border: 0;
  border-radius: 8px;
  filter: saturate(.9);
}

.site-footer {
  background: #07162a;
  color: rgba(255,255,255,.76);
  padding: 72px 0 24px;
}
.site-footer h3,
.site-footer h4 { color: var(--white); font-size: 1.05rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .55rem; }
.footer-links a:hover { color: var(--gold); }
.social-links { display: flex; gap: .65rem; }
.social-links a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 4px;
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .92rem;
}

@media (max-width: 991px) {
  .section-pad { padding: 72px 0; }
  .hero,
  .hero-slide {
    height: 600px;
    min-height: 600px;
  }
  .navbar-collapse {
    padding: 1rem 0;
    border-top: 1px solid var(--line);
    margin-top: .85rem;
  }
  .stat-strip { margin-top: 0; }
  .stat-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .value-list,
  .process { grid-template-columns: repeat(2, 1fr); }
  .image-panel { min-height: 360px; }
}

@media (max-width: 575px) {
  .section-pad { padding: 58px 0; }
  .hero,
  .hero-slide {
    height: 600px;
    min-height: 600px;
  }
  .hero-actions .btn { width: 100%; }
  .value-list,
  .process { grid-template-columns: 1fr; }
  .premium-card,
  .contact-card { padding: 24px; }
  .industry-card { min-height: 280px; }
}
