@import url("https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,200..800;1,6..72,200..800&family=Red+Hat+Text:ital,wght@0,300..700;1,300..700&display=swap");

body,
h1,
h2,
h3,
p,
i,
a,
h4,
li {
   font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

}

:root {
  --navy: #1a6fff;
  --blue: #000080;
  --blue2: #3d85ff;
  --soft: #ffffff;
  --soft2: #f5f7ff;
  --line: rgba(0, 0, 128, 0.1);
  --text: #00040b;
  --muted: #000000;
}

/* ─── HERO INTRO ─── */
.feat-intro {
  padding: 90px 0 60px;
  position: relative;
  overflow: hidden;
}
.feat-intro .bg-stripe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 60px,
    rgba(0, 0, 128, 0.025) 60px,
    rgba(0, 0, 128, 0.025) 61px
  );
  pointer-events: none;
}
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--soft);
  border: 1.5px solid rgba(0, 0, 128, 0.14);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 24px;
}
.badge-pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  animation: blink 1.8s ease infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.intro-title {
  font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.12;
  color: #000080;
}
.intro-title em {
  font-style: italic;
  color: #000080;
}
.intro-desc {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 460px;
  line-height: 1.8;
}
.stat-pill {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--soft);
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: 16px 28px;
  min-width: 110px;
}
.stat-pill strong {
  font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

  font-size: 1.7rem;
  color: var(--navy);
}
.stat-pill span {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ─── ZIGZAG FEATURES ─── */
.feat-section {
  padding: 20px 0 80px;
}

.feat-row {
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 420px;
  border-bottom: 1px solid var(--line);
  padding: 60px 0;
  position: relative;
  opacity: 0;
  transform: translateY(48px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.feat-row.visible {
  opacity: 1;
  transform: translateY(0);
}
.feat-row:last-child {
  border-bottom: none;
}

/* alternating */
.feat-row.reverse {
  flex-direction: row-reverse;
}

/* ── Visual side ── */
.feat-visual {
  flex: 0 0 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  position: relative;
}
.feat-visual-box {
  width: 100%;
  max-width: 380px;
  border-radius: 28px;
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.feat-visual-box .big-num {
  font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

  font-size: 5.5rem;
  line-height: 1;
  font-weight: 400;
  opacity: 0.12;
  position: absolute;
  right: 24px;
  top: 16px;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.feat-row:hover .feat-visual-box .big-num {
  opacity: 0.22;
}

/* colour variants */
.vbox-navy {
  background: var(--navy);
  color: #fff;
}
.vbox-blue {
  background: var(--blue);
  color: #fff;
}
.vbox-soft {
  background: var(--soft);
  border: 2px solid var(--line);
  color: var(--navy);
}
.vbox-soft2 {
  background: var(--soft2);
  border: 2px solid var(--line);
  color: var(--navy);
}
.vbox-navy2 {
  background: #00006a;
  color: #fff;
}
.vbox-gradient {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #fff;
}

/* floating icon in visual */
.v-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.vbox-navy .v-icon,
.vbox-navy2 .v-icon,
.vbox-blue .v-icon,
.vbox-gradient .v-icon {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.vbox-soft .v-icon,
.vbox-soft2 .v-icon {
  background: rgba(0, 0, 128, 0.1);
  color: var(--navy);
}

.v-title {
  font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

  font-size: 1.5rem;
  line-height: 1.25;
  position: relative;
  z-index: 1;
}
.vbox-navy .v-title,
.vbox-navy2 .v-title,
.vbox-blue .v-title,
.vbox-gradient .v-title {
  color: #fff;
}
.vbox-soft .v-title,
.vbox-soft2 .v-title {
  color: var(--navy);
}

/* mini stat chips inside visual */
.v-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.v-chip {
  font-size: 0.73rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 0.04em;
  font-family: montserrat alternates;
}
.vbox-navy .v-chip,
.vbox-navy2 .v-chip,
.vbox-blue .v-chip,
.vbox-gradient .v-chip {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.vbox-soft .v-chip,
.vbox-soft2 .v-chip {
  background: rgba(0, 0, 128, 0.08);
  color: var(--navy);
  border: 1px solid rgba(0, 0, 128, 0.12);
}

/* progress inside visual */
.v-progress {
  position: relative;
  z-index: 1;
}
.v-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  margin-bottom: 6px;
  opacity: 0.7;
}
.v-progress-bar {
  height: 5px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.15);
  overflow: visible;
  position: relative;
}
.vbox-soft .v-progress-bar,
.vbox-soft2 .v-progress-bar {
  background: rgba(0, 0, 128, 0.1);
}
.v-progress-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 1.4s cubic-bezier(0.22, 0.68, 0, 1);
  position: relative;
}
.vbox-navy .v-progress-fill,
.vbox-navy2 .v-progress-fill,
.vbox-gradient .v-progress-fill {
  background: rgba(255, 255, 255, 0.6);
}
.vbox-blue .v-progress-fill {
  background: rgba(255, 255, 255, 0.7);
}
.vbox-soft .v-progress-fill,
.vbox-soft2 .v-progress-fill {
  background: linear-gradient(90deg, var(--navy), var(--blue));
}
.v-progress-fill::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: inherit;
  box-shadow: 0 0 6px currentColor;
}

/* ── Text side ── */
.feat-text {
  flex: 1;
  padding: 20px 48px;
}
.feat-row.reverse .feat-text {
  padding: 20px 48px 20px 24px;
}

.feat-num {
  font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

  font-size: 0.9rem;
  color: var(--blue);
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.feat-num::after {
  content: "";
  flex: 1;
  max-width: 40px;
  height: 1.5px;
  background: var(--blue);
  border-radius: 2px;
}

.feat-heading {
  font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  line-height: 1.18;
  color: var(--text);
  margin-bottom: 18px;
}
.feat-heading span {
  color: var(--navy);
}

.feat-body {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 28px;
  max-width: 420px;
}

/* stats inline */
.feat-stats {
  display: flex;
  gap: 28px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.feat-stat-item {
  display: flex;
  flex-direction: column;
}
.feat-stat-val {
  font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

  font-size: 1.6rem;
  color: var(--navy);
  line-height: 1;
}
.feat-stat-lbl {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 3px;
}

/* tag list */
.feat-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.feat-tag {
  font-size: 0.73rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  background: var(--soft);
  color: var(--navy);
  border: 1.5px solid var(--line);
  letter-spacing: 0.04em;
}

.feat-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 2px solid var(--blue);
  padding-bottom: 2px;
  transition:
    color 0.25s ease,
    gap 0.25s ease;
}
.feat-cta:hover {
  color: var(--blue);
  gap: 14px;
}
.feat-cta .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 0.8rem;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}
.feat-cta:hover .arrow {
  background: var(--blue);
  transform: translateX(4px);
}

/* ─── BOTTOM GRID ─── */
.feat-grid {
  padding: 60px 0 100px;
}
.feat-grid-title {
  font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--text);
  margin-bottom: 40px;
}
.feat-grid-title span {
  color: var(--navy);
  font-style: italic;
}

.mini-card {
  border: 1.5px solid var(--line);
  border-radius: 20px;
  padding: 32px 28px;
  background: #fff;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s cubic-bezier(0.22, 0.68, 0, 1.2),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  opacity: 0;
  transform: translateY(32px);
  cursor: pointer;
}
.mini-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.mini-card:hover {
  transform: translateY(-6px);
  border-color: var(--blue);
  box-shadow: 0 16px 48px rgba(0, 0, 128, 0.11);
}
.mini-card .mc-num {
  font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

  font-size: 3.5rem;
  color: var(--navy);
  opacity: 0.07;
  position: absolute;
  right: 16px;
  top: 8px;
  line-height: 1;
  transition: opacity 0.3s ease;
}
.mini-card:hover .mc-num {
  opacity: 0.16;
}
.mc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.mc-icon-a {
  background: rgba(0, 0, 128, 0.09);
  color: var(--navy);
}
.mc-icon-b {
  background: rgba(26, 111, 255, 0.12);
  color: var(--blue);
}
.mc-icon-c {
  background: rgba(0, 0, 128, 0.06);
  color: #1a4fff;
}
.mc-icon-d {
  background: rgba(26, 111, 255, 0.09);
  color: #2563eb;
}

.mini-card h6 {
  font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 8px;
}
.mini-card p {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.mc-link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s ease;
}
.mc-link:hover {
  gap: 9px;
}

/* ─── CTA BANNER ─── */
.feat-banner {
  background: var(--navy);
  border-radius: 28px;
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s 0.15s ease,
    transform 0.7s 0.15s ease;
}
.feat-banner.visible {
  opacity: 1;
  transform: translateY(0);
}
.feat-banner::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(26, 111, 255, 0.25) 0%,
    transparent 70%
  );
}
.feat-banner::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: 20%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(26, 111, 255, 0.12) 0%,
    transparent 70%
  );
}
.feat-banner h2 {
  font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 12px;
}
.feat-banner h2 em {
  font-style: italic;
  color: #60a5fa;
}
.feat-banner p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  max-width: 420px;
  line-height: 1.75;
}

.btn-white {
  background: #fff;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 13px 30px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-block;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  color: var(--navy);
}

.btn-outline-white {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 13px 30px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-block;
  transition:
    border-color 0.25s ease,
    background 0.25s ease;
}
.btn-outline-white:hover {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

/* delay helpers */
[data-d="1"] {
  transition-delay: 0.04s;
}
[data-d="2"] {
  transition-delay: 0.1s;
}
[data-d="3"] {
  transition-delay: 0.16s;
}
[data-d="4"] {
  transition-delay: 0.22s;
}

/* vertical connector line between rows */
.feat-connector {
  display: flex;
  justify-content: center;
  margin: -10px 0;
  position: relative;
  z-index: 1;
}
.feat-connector-line {
  width: 2px;
  height: 50px;
  background: linear-gradient(to bottom, var(--blue), transparent);
}

@media (max-width: 768px) {
  .feat-row,
  .feat-row.reverse {
    flex-direction: column;
  }
  .feat-visual {
    flex: none;
    width: 100%;
    padding: 16px;
  }
  .feat-text,
  .feat-row.reverse .feat-text {
    padding: 16px 8px 32px;
  }
  .feat-banner {
    padding: 40px 28px;
  }
}
