*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --accent: #d0a741;
  --accent-dark: #8a6a1a;
  --accent-light: #6b4e3f;
  --dark: #0f1410;
  --dark-navy: #0c1109;
  --white: #ffffff;
  --offwhite: #f4f3f0;
  --sky: #1e3a8a;
  --sky-light: #1e3a8a;
  --gold: #d0a741;
  --gold-light: #e8c96a;
  --border: #eaedf5;
  --text-muted: #898d98;
  --text-body: #494b53;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  background: var(--white);
  color: var(--white);
  overflow-x: hidden;
}


/* HERO */
#hero {
  position: relative;
  max-height: 85vh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 80px;
  padding-bottom: 130px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      to right,
      rgba(26, 57, 98, 0.616) 5%,
      rgba(8, 14, 8, 0) 90%
    ),
    linear-gradient(to top, rgba(14, 12, 8, 0.92) 0%, transparent 15%);
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero-visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px;
}

.hero-top-row {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 22px;
}

.hero-title-col {
  flex: 1;
}

.hero-title {
  font-size: clamp(32px, 4.8vw, 58px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 10px;
}

.hero-sub {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
   max-width: 820px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary-vort {
  background: #fff;
  color: #0f1410;
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  font-size: 14.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-primary-vort:hover {
  opacity: 0.88;
  color: #0f1410;
}

.scroll-hint {
  position: absolute;
  bottom: 28px;
  right: 60px;
  z-index: 2;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  gap: 6px;
}

.scroll-hint svg {
  width: 14px;
  height: 14px;
}

/* SECTION BODY */
.section-body {
  width: 100%;
}

.industries-sidebar {
  padding: 36px 0 0 40px;
  border-right: 1px solid #e8eaef;
  position: sticky;
  top: 80px;
}

.industry-link {
  display: block;
  padding: 16px 30px 16px 0;
  font-size: 15px;
  font-weight: 500;
  color: #5a6082;
  text-decoration: none;
  border-right: 3px solid transparent;
  transition:
    color 0.2s,
    border-color 0.2s;
  cursor: pointer;
  line-height: 1.4;
  margin-right: -1px;
}

.industry-link:hover {
  color: var(--gold);
}

.industry-link.active {
  color: var(--accent-light);
  font-weight: 700;
  border-right-color: var(--gold);
}

.content-panel {
  padding: 40px 48px 60px 48px;
  animation: fadeSlide 0.35s ease;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content-panel h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: #1a2a6c;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.content-panel .intro {
  font-size: 17px;
  color: #555c78;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 780px;
}

.content-panel h3 {
  font-size: 18px;
  font-weight: 800;
  color: #1a2a6c;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

/* ── TOP INTRO SECTION ──────────────────────────────────────────────── */
.intro-section {
  padding: 56px 56px 48px;
  border-bottom: 1px solid var(--border);
  /* background: linear-gradient(135deg, #f8f9ff 0%, #fff 60%); */
}

.intro-overline {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--sky);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.intro-heading {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.intro-heading span {
  color: var(--gold);
}

.intro-body {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.85;
  /* max-width: 720px; */
  margin-bottom: 36px;
}

.intro-pillars {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.intro-pillar {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #1a2a6c;
  transition:
    box-shadow 0.2s,
    border-color 0.2s;
}

.intro-pillar:hover {
  box-shadow: 0 4px 18px rgba(30, 58, 138, 0.08);
  border-color: #bfcfee;
}

.intro-pillar-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sky);
  flex-shrink: 0;
}

/* ── SERVICE SECTION ────────────────────────────────────────────────── */
.service-section {
  padding: 52px 56px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.service-section:last-of-type {
  border-bottom: none;
}

.service-section:hover {
  /* background: #fafbff; */
}

.svc-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

.svc-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f3c967, #b29d11);
  /* box-shadow: 0 8px 24px rgba(26, 58, 107, 0.25); */
}

.svc-icon-wrap svg {
  width: 24px;
  height: 24px;
}

.svc-meta {
  flex: 1;
}

.svc-number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 5px;
}

.svc-title {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.svc-intro {
  font-size: 14.5px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 680px;
}

.svc-bullets {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 10px;
  margin-top: 100px;
}

.svc-bullet {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border-bottom: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  transition:
    box-shadow 0.2s,
    border-color 0.2s,
    transform 0.2s;
}

.svc-bullet:hover {
  box-shadow: 0 6px 22px rgba(26, 58, 138, 0.09);
  border-color: #bfcfee;
  transform: translateY(-2px);
}

.svc-bullet-check {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  flex-shrink: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 58, 107, 0.1),
    rgba(34, 81, 163, 0.08)
  );
  border: 1px solid rgba(26, 58, 138, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.svc-bullet-check svg {
  width: 12px;
  height: 12px;
}

.svc-bullet-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-body);
  line-height: 1.5;
}

/* ── WHY CHOOSE US ──────────────────────────────────────────────────── */
#why-us {
  background: #09111f;
  padding: 80px 56px;
  position: relative;
  overflow: hidden;
}

#why-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(208, 167, 65, 0.4),
    transparent
  );
}

.why-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.why-heading {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.why-heading span {
  color: var(--gold);
}

.why-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 52px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  overflow: hidden;
}

.why-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 32px 30px;
  transition: background 0.2s;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.06);
}

.why-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  margin-bottom: 16px;
  background: rgba(208, 167, 65, 0.12);
  border: 1px solid rgba(208, 167, 65, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-card-icon svg {
  width: 20px;
  height: 20px;
}

.why-card-title {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.why-card-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

/* ── FINAL CTA STRIP ────────────────────────────────────────────────── */
.final-cta {
  padding: 72px 56px;
  text-align: center;
  /* background: linear-gradient(135deg, #f7f8fc 0%, #fff 100%); */
  background-image: url("/services/gold.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-top: 1px solid var(--border);
  border-radius: 20px;
}

.final-cta-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--sky);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.final-cta-title {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: #2c2c2c;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.final-cta-sub {
  font-size: 15px;
  color: var(--text-body);
  max-width: 500px;
  margin: 0 auto 34px;
  line-height: 1.7;
}

.final-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-navy {
  background: #2f2f2f;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  font-size: 13.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
}

.btn-navy:hover {
  background: #2a2b2b;
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: #363636;
  border: 1px solid #2f2f2f;
  border-radius: 50px;
  padding: 12px 30px;
  font-size: 13.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.btn-outline:hover {
  background: #252525;
  color: #fff;
  border-color: #2b2c2d;
}

footer {
  padding: 30px 40px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}

/* ── ANIMATIONS ─────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-section {
  animation: fadeUp 0.45s ease both;
}

.service-section:nth-child(1) {
  animation-delay: 0.05s;
}

.service-section:nth-child(2) {
  animation-delay: 0.1s;
}

.service-section:nth-child(3) {
  animation-delay: 0.15s;
}

.service-section:nth-child(4) {
  animation-delay: 0.2s;
}

.service-section:nth-child(5) {
  animation-delay: 0.25s;
}

.service-section:nth-child(6) {
  animation-delay: 0.3s;
}

.service-section:nth-child(7) {
  animation-delay: 0.35s;
}

/* ── RESPONSIVE ─────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .services-layout {
    grid-template-columns: 1fr;
  }

  .services-sidebar {
    position: static;
    height: auto;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 20px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .service-section {
    padding: 36px 24px;
  }

  .intro-section {
    padding: 36px 24px 32px;
  }

  .hero-content {
    padding: 0 24px;
  }

  #why-us {
    padding: 56px 24px;
  }

  .final-cta {
    padding: 48px 24px;
  }

  .sidebar-cta-card {
    margin: 16px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
}
