/* ── HOME PAGE — DARK THEME ────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--navy);
  /* padding-top: 66px; */
  position: relative;
  overflow: hidden;
}
.hero__canvas {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 70% at 70% 30%,
      rgba(27, 79, 138, 0.22) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 50% 50% at 10% 80%,
      rgba(245, 166, 35, 0.07) 0%,
      transparent 50%
    );
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(27, 79, 138, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 79, 138, 0.055) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(
    ellipse 85% 85% at 50% 40%,
    black 20%,
    transparent 100%
  );
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero__orb--1 {
  width: 500px;
  height: 500px;
  top: -120px;
  right: -60px;
  background: radial-gradient(
    circle,
    rgba(27, 79, 138, 0.28) 0%,
    transparent 70%
  );
}
.hero__orb--2 {
  width: 280px;
  height: 280px;
  bottom: 60px;
  left: 5%;
  background: radial-gradient(
    circle,
    rgba(245, 166, 35, 0.1) 0%,
    transparent 70%
  );
  animation: orbFloat 12s ease-in-out infinite;
}
.hero__orb--3 {
  width: 380px;
  height: 380px;
  top: 40%;
  right: 22%;
  background: radial-gradient(
    circle,
    rgba(74, 158, 240, 0.1) 0%,
    transparent 70%
  );
  animation: orbFloat 17s ease-in-out infinite reverse;
}
@keyframes orbFloat {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(14px, -22px);
  }
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding: var(--s-py) var(--s-px);
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr 400px;
  }
}
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.3);
  border-radius: var(--r-full);
  padding: 7px 16px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.hero__title {
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: clamp(38px, 7vw, 68px);
  line-height: 1.04;
  letter-spacing: -2.5px;
  color: var(--white);
  margin-bottom: 18px;
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(
    90deg,
    var(--gold),
    var(--gold-light) 40%,
    var(--blue-glow)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__desc {
  font-size: clamp(15px, 2vw, 17px);
  color: var(--muted);
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: 32px;
}
.hero__desc strong {
  color: var(--off-white);
  font-weight: 500;
}
.hero__btns {
  margin-bottom: 44px;
}
.hero__proof {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.hero__proof-val {
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 22px;
  color: var(--white);
  line-height: 1;
}
.hero__proof-val span {
  color: var(--gold);
  font-size: 13px;
}
.hero__proof-label {
  font-size: 11px;
  color: var(--muted);
  margin-top: 3px;
}
.hero__divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.12);
}

/* Rings visual */
.hero__visual {
  display: none;
}
@media (min-width: 1024px) {
  .hero__visual {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.hero__rings {
  width: 360px;
  height: 360px;
  position: relative;
  flex-shrink: 0;
}
.ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: spin linear infinite;
}
.ring--1 {
  border: 1px solid rgba(27, 79, 138, 0.4);
  animation-duration: 22s;
}
.ring--2 {
  inset: 28px;
  border: 1px dashed rgba(245, 166, 35, 0.28);
  animation-duration: 17s;
  animation-direction: reverse;
}
.ring--3 {
  inset: 66px;
  border: 1px solid rgba(74, 158, 240, 0.28);
  animation-duration: 28s;
}
@keyframes spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.ring__dot {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  top: -4.5px;
  left: 50%;
  transform: translateX(-50%);
}
.ring__dot--gold {
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
}
.ring__dot--blue {
  background: var(--blue-glow);
  box-shadow: 0 0 10px var(--blue-glow);
}
.hero__core {
  position: absolute;
  inset: 108px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(27, 79, 138, 0.5) 0%,
    rgba(5, 13, 26, 0.92) 100%
  );
  border: 1px solid rgba(27, 79, 138, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow:
    0 0 60px rgba(27, 79, 138, 0.28),
    inset 0 0 30px rgba(27, 79, 138, 0.15);
}
.hero__core-icon {
  font-size: 40px;
  margin-bottom: 6px;
}
.hero__core-label {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  line-height: 1.4;
}

/* Float badges */
.float-badges {
  position: relative;
  width: 100%;
  height: 100%;
}
.float-badge {
  position: absolute;
  background: rgba(10, 22, 40, 0.95);
  border: 1px solid rgba(27, 79, 138, 0.5);
  border-radius: var(--r-lg);
  padding: 10px 15px;
  backdrop-filter: blur(12px);
  animation: floatB 7s ease-in-out infinite;
}
.float-badge:nth-child(1) {
  top: 14px;
  left: -60px;
  animation-delay: 0s;
}
.float-badge:nth-child(2) {
  bottom: 60px;
  right: -48px;
  animation-delay: -2.5s;
}
.float-badge:nth-child(3) {
  bottom: -4px;
  left: 10px;
  animation-delay: -5s;
}
@keyframes floatB {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}
.fb-val {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 17px;
  color: var(--gold);
  display: block;
}
.fb-label {
  font-size: 10px;
  color: var(--muted);
  margin-top: 2px;
  display: block;
  white-space: nowrap;
}

/* About preview */
.home-about__grid {
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 1024px) {
  .home-about__grid {
    grid-template-columns: 1fr 1fr;
    gap: 72px;
  }
}
.about-card {
  background: linear-gradient(
    180deg,
    rgba(10, 22, 40, 0.95),
    rgba(5, 13, 26, 0.96)
  );
  border: 1px solid rgba(27, 79, 138, 0.45);
  border-radius: var(--r-2xl);
  overflow: hidden;
  position: relative;
}
.about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--blue-glow));
}
.about-card__portrait {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
}
.about-card__bg-num {
  position: absolute;
  bottom: -10px;
  right: 14px;
  font-family: var(--font-ui);
  font-size: 100px;
  font-weight: 800;
  color: rgba(27, 79, 138, 0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.about-card__quote {
  font-size: 16px;
  font-style: italic;
  color: var(--off-white);
  line-height: 1.78;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.about-card__quote::before {
  content: '"';
  font-family: var(--font-ui);
  font-size: 44px;
  color: rgba(245, 166, 35, 0.18);
  line-height: 0.55;
  display: block;
  margin-bottom: 8px;
}
.ceo-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ceo-av {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(
    135deg,
    rgba(245, 166, 35, 0.2),
    rgba(27, 79, 138, 0.3)
  );
  border: 2px solid rgba(245, 166, 35, 0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
}
.ceo-name {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
}
.ceo-role {
  font-size: 11px;
  color: var(--gold);
  font-weight: 600;
  margin-top: 2px;
}
.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 18px;
}
.ms {
  background: rgba(5, 13, 26, 0.6);
  border: 1px solid rgba(27, 79, 138, 0.28);
  border-radius: var(--r-md);
  padding: 11px;
  text-align: center;
}
.ms__val {
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 16px;
  color: var(--gold);
  display: block;
}
.ms__label {
  font-size: 10px;
  color: var(--muted);
  margin-top: 2px;
}
.about-text p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.82;
  margin-bottom: 14px;
}
.about-text p strong {
  color: var(--off-white);
  font-weight: 500;
}
.pillars {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pillar {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.pillar__icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: var(--r-lg);
  background: rgba(245, 166, 35, 0.09);
  border: 1px solid rgba(245, 166, 35, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.pillar h4 {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 13px;
  color: var(--white);
  margin-bottom: 3px;
}
.pillar p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

/* Services preview */
.svc-intro-row {
  display: grid;
  gap: 24px;
  margin-bottom: 28px;
  align-items: end;
}
@media (min-width: 1024px) {
  .svc-intro-row {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}
.svc-preview-grid {
  display: grid;
  gap: 14px;
}
@media (min-width: 640px) {
  .svc-preview-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.spc {
  background: var(--navy-2);
  border: 1px solid var(--card-border);
  border-radius: var(--r-xl);
  padding: 24px;
  transition: var(--t);
}
.spc:hover {
  border-color: rgba(245, 166, 35, 0.38);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.spc--flag {
  border-color: rgba(245, 166, 35, 0.28);
}
.spc__icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}
.spc__title {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
  margin-bottom: 8px;
}
.spc__desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 13px;
}

/* Why grid */
.why-grid {
  display: grid;
  gap: 12px;
}
@media (min-width: 640px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.why-card {
  background: rgba(5, 13, 26, 0.65);
  border: 1px solid var(--card-border);
  border-radius: var(--r-xl);
  padding: 24px;
  transition: var(--t);
  backdrop-filter: blur(10px);
}
.why-card:hover {
  border-color: rgba(245, 166, 35, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
}
.why-num {
  font-family: var(--font-ui);
  font-size: 36px;
  font-weight: 800;
  color: rgba(245, 166, 35, 0.09);
  line-height: 1;
  margin-bottom: 10px;
}
.why-title {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 7px;
  line-height: 1.35;
}
.why-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

/* Proof bar */
.proof-bar {
  background: linear-gradient(135deg, var(--navy-3), rgba(27, 79, 138, 0.2));
  border: 1px solid rgba(27, 79, 138, 0.45);
  border-radius: var(--r-xl);
  padding: 28px 32px;
  margin-top: 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.proof-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--blue-glow));
}
@media (min-width: 768px) {
  .proof-bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.proof-bar__title {
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 5px;
}
.proof-bar__sub {
  font-size: 13px;
  color: var(--muted);
}
.proof-bar__stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.pbs {
  text-align: center;
}
.pbs__val {
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 28px;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.pbs__label {
  font-size: 10px;
  color: var(--muted);
  margin-top: 3px;
  white-space: nowrap;
}

/* Impact header */
.impact-header {
  display: grid;
  gap: 24px;
  margin-bottom: 36px;
  align-items: end;
}
@media (min-width: 1024px) {
  .impact-header {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
}
