/* ============================================================
   HOME PAGE (index.html) — Page-specific styles
   ============================================================ */

/* ── HERO ── */
 .hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px var(--px) 60px;
  overflow: hidden;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(6, 13, 26, 0.98) 0%,
    rgba(6, 13, 26, 0.7) 40%,
    rgba(6, 13, 26, 0.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 960px;
}

.hero-overline {
  margin-bottom: 18px;
}

.hero-title {
  color: white;
  margin-bottom: 24px;
  line-height: 1;
}

.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.scroll-hint {
  position: absolute;
  bottom: clamp(28px, 4vw, 48px);
  right: var(--px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-bar {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--blue), transparent);
  animation: pulse-bar 2.2s ease-in-out infinite;
}

@keyframes pulse-bar {
  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }
}

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--navy-surf);
  border-top: 1px solid var(--bd-dark);
  border-bottom: 1px solid var(--bd-dark);
  padding: 52px var(--px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-n {
  font-family: var(--display);
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-n sup {
  font-size: 0.45em;
  vertical-align: super;
}

.stat-l {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* ── QUOTE ── */
.quote-section {
  background: var(--blue);
  padding: clamp(72px, 9vw, 108px) var(--px);
  text-align: center;
}

.quote-text {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 56px);
  color: white;
  line-height: 1.2;
  max-width: 1000px;
  margin: 0 auto 20px;
  letter-spacing: 0.01em;
}

.quote-attr {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── OFFERINGS GRID ── */
.offerings-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 80px;
  align-items: end;
  margin-bottom: 52px;
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--bd-dark);
  border: 1px solid var(--bd-dark);
}

.off-card {
  background: var(--navy-mid);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: pointer;
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
}

.off-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.off-card:hover {
  background: var(--navy-surf);
}

.off-card:hover::before {
  transform: scaleX(1);
}

.off-num {
  font-family: var(--display);
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  color: var(--blue);
  transition: color 0.25s;
}

.off-card:hover .off-num {
  color: rgba(21, 102, 255, 0.22);
}

.off-title {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

.off-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.off-link {
  font-size: 12px;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.off-card:hover .off-link {
  text-decoration: underline;
}

/* ── SECTORS STRIP ── */
.sectors-strip {
  background: var(--navy-mid);
  padding: 40px var(--px);
  border-top: 1px solid var(--bd-dark);
  border-bottom: 1px solid var(--bd-dark);
}

.sectors-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.sector-item {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 22px;
  border-right: 1px solid var(--bd-dark);
  transition: color 0.2s;
}

.sector-item:first-child {
  padding-left: 0;
}

.sector-item:last-child {
  border-right: none;
}

.sector-item:hover {
  color: var(--blue);
}

.sectors-label {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* ── RECOGNITION ── */
.rec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.rec-card {
  background: white;
  padding: 30px 26px;
  border: 1px solid var(--bd-light);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.22s;
}

.rec-card:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(21, 102, 255, 0.1);
}

.rec-year {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--blue);
  text-transform: uppercase;
}

.rec-title {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.rec-org {
  font-size: 13px;
  color: #7b8ba5;
}

/* ── TESTIMONIAL ── */
.test-section {
  background: var(--navy-mid);
  padding: var(--py) var(--px);
  position: relative;
  overflow: hidden;
}

.test-quote-mark {
  position: absolute;
  top: 24px;
  left: calc(var(--px) - 12px);
  font-size: clamp(140px, 18vw, 220px);
  font-family: Georgia, serif;
  line-height: 1;
  color: rgba(21, 102, 255, 0.08);
  pointer-events: none;
}

.test-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.test-quote {
  font-family: var(--display);
  font-size: clamp(10px, 2vw, 20px);
  font-weight: 600;
  color: white;
  line-height: 1.5;
  margin-bottom: 44px;
}

.test-attr {
  display: flex;
  align-items: center;
  gap: 18px;
}

.test-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--blue);
  flex-shrink: 0;
}

.test-name {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.06em;
}

.test-role {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 3px;
}

.test-stars {
  color: var(--blue);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

/* ── CTA BANNER ── */
.cta-banner {
  padding: var(--py) var(--px);
  background: var(--navy);
  border-top: 1px solid var(--bd-dark);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.cta-title {
  color: white;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .offerings-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .offerings-intro {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: auto;
    height: auto;
    padding-top: 90px;
    padding-bottom: 40px;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .hero-content {
    width: 100%;
    margin-top: 0;
  }

  .hero-title {
    font-size: 34px;
    line-height: 1;
    margin-bottom: 16px;
  }

  .hero-sub {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }

  .scroll-hint {
    display: none;
  }
}

  .stats-strip {
    grid-template-columns: 1fr 1fr;
  }

  .offerings-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-banner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .rec-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sector-item {
    font-size: 11px;
    padding: 5px 12px;
  }


@media (max-width: 480px) {
  .stats-strip {
    gap: 24px;
  }

  .offerings-grid {
    grid-template-columns: 1fr;
  }

  .rec-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-sub {
    font-size: 13px;
  }
}