/* ══════════════════════════════════════
   FONTS  — Sen only, untouched
══════════════════════════════════════ */

@font-face {
  font-family: 'Sen';
  src: url("../assets/font/Sen-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sen';
  src: url("../assets/font/Sen-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sen';
  src: url("../assets/font/Sen-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sen';
  src: url("../assets/font/Sen-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sen';
  src: url("../assets/font/Sen-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* ══════════════════════════════════════
   RESET
══════════════════════════════════════ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Sen', sans-serif;
  background-color: #ffffff;
  overflow-x: hidden;
}


.container {
  width: 100%;
}


:root {
  --blue: #1a47e5;
  --blue-dark: #0f2a8a;
  --navy: #1a2340;
  --gray: #4a5568;
  --gray-light: #6b7280;
  --bg: #ffffff;
  --card-bg: #f0f3fc;
  --border: #d9e0f5;
  --accent-bar: #1a47e5;
  --dark-bg: #07112b;
  --section-bg: #e8edf8;

}

.section {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 20px;
  align-items: center;
}

.left {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-left: 30px;
  width: 100%;
  margin-top: 40px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eef1fb;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 16px;
  width: fit-content;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--blue);
  border-radius: 50%;
}

.badge-text {
  font-family: 'Sen', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
}

.headline {
  font-family: 'Sen', sans-serif;
  font-size: 40px;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 10px;
  line-height: 1.0;
  color: var(--blue);
}

.body-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.body-copy p {
  font-size: 15px;
  font-family: 'Sen', sans-serif;
  line-height: 1.5;
  color: var(--gray);
  width: 79%;
  max-width: 570px;
}

.divider {
  width: 80%;
  height: 1px;
  background: var(--border);
  margin-top: 18px;
}

.stats {
  display: flex;
  gap: 58px;
  margin-top: 15px;
  padding-top: 4px;
  margin-bottom: 20px;
}

.stat-value {
  font-family: 'Sen', sans-serif;
  font-size: 34px;
  font-weight: 600;
  color: var(--blue);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-top: 6px;
}

.right {
  position: relative;
  width: 100%;
  top: 50px;
}

.card-wrapper {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 38px;
  position: relative;
  overflow: visible;
  /* changed from hidden */
}

/* Top-left short horizontal stroke */
.card-wrapper::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 10px;
  width: 120px;
  height: 6px;
  background: var(--blue);
  border-radius: 4px;
}

/* Bottom-right long horizontal stroke */
.card-wrapper::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: -10px;
  width: 75%;
  height: 6px;
  background: var(--blue);
  border-radius: 4px;
}

/* Right-side short vertical stroke — needs extra element */
.right-accent {
  position: absolute;
  top: 50%;
  right: -8px;
  transform: translateY(-50%);
  width: 6px;
  height: 80px;
  background: var(--blue);
  border-radius: 4px;
}

.top-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.card {
  background: #fff;
  border-radius: 14px;
  padding: 22px 20px 22px;
  border: 1px solid var(--border);
  position: relative;
}

.card-bar {
  width: 28px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
  margin-bottom: 14px;
}

.card-title {
  font-family: 'Sen', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.card-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray-light);
}

.mandate-row {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  overflow: hidden;
}

.mandate {
  padding: 20px 18px;
  position: relative;
}

.mandate+.mandate::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background: var(--border);
}

.mandate-label {
  font-family: 'Sen', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}

.mandate-title {
  font-family: 'Sen', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.mandate-desc {
  font-size: 12px;
  line-height: 1.55;
  color: var(--gray-light);
}

/* initial hidden state */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

/* when visible */
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* slide from right */
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}


/* Entrance animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.badge {
  animation: fadeUp 0.5s ease both;
}

.headline {
  animation: fadeUp 0.5s 0.1s ease both;
}

.body-copy {
  animation: fadeUp 0.5s 0.2s ease both;
}

.divider {
  animation: fadeUp 0.5s 0.3s ease both;
}

.stats {
  animation: fadeUp 0.5s 0.35s ease both;
}

.card-wrapper {
  animation: fadeUp 0.6s 0.2s ease both;
}


.starting-page {
  position: relative;
  width: 100%;
  padding: 140px 60px 60px;
  text-align: center;
  color: white;
  overflow: hidden;
}

.starting-page h3 {
  color: white;
}

.starting-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(2, 15, 45, 0.95) 0%,
      rgba(5, 25, 70, 0.85) 40%,
      rgba(8, 35, 95, 0.65) 70%,
      rgba(8, 35, 95, 0.40) 100%),
    url("../assets/img/Background Scene.png") center / cover no-repeat;
  transform: scale(1.1);
  z-index: 0;
}

/* keep all children above the overlay */
.starting-page>* {
  position: relative;
  z-index: 1;
}

.starting-page h3 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  color: white;
  background: #80889c;
  padding: 8px 18px;
  border-radius: 20px;
  width: fit-content;
  margin: 0 auto 36px;
  text-align: center;
}

.heading {
  font-size: 35px;
  font-family: 'Sen';
  font-weight: 600;
  line-height: 1.4;
  color: #ffffff;
  margin-bottom: 18px;
}

.heading span {
  color: #4a7fff;
}

.para {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  max-width: 700px;
  margin: 0 auto;
}

.StartButton {
  display: inline-block;
  padding: 15px 30px;
  font-family: 'Sen', sans-serif;
  font-size: 15px;
  font-weight: 600;
  background-color: #1a5cff;
  border: none;
  border-radius: 10px;
  color: white;
  margin-top: 32px;
  margin-bottom: 70px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.StartButton:hover {
  background-color: #0f46d6;
}

hr {
  border: none;
  width: 90%;
  height: 2px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.18);
}

.fourpoints {
  display: flex;
  flex-wrap: wrap;
  font-family: 'Sen', sans-serif;
  gap: 12px 60px;
  padding: 40px 45px 0px;
  justify-content: center;
}

.fourpoints h4 {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  display: flex;
  align-items: center;
}

.circle {
  width: 6px;
  height: 6px;
  background-color: #1a5cff;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  margin-right: 8px;
}

/* ══════════════════════════════════════
   SECTION 2 – Stats
══════════════════════════════════════ */

.js {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 70px;
  justify-content: center;
  align-items: flex-start;
  padding: 50px 40px;
  background-color: #ffffff;
  margin: 0;
}

.js-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 80px;
}

.js-num {
  font-size: 32px;
  font-weight: 500;
  color: #00123a;
  line-height: 1.1;
}

.js-label {
  font-size: 12px;
  font-weight: 400;
  color: #00123a;
  margin-top: 5px;
  line-height: 1.4;
}


.marquee-container {
  width: 100%;
  overflow: hidden;
  background: #0b1c3d;
  padding: 20px 0;
  margin: 0;
}

.marquee-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  width: max-content;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 18s linear infinite;
  will-change: transform;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  /* items must not compress */
  white-space: nowrap;
  font-size: 14px;
  letter-spacing: 2px;
  color: #6f8fcf;
  font-family: 'Sen', sans-serif;
  font-weight: 600;
}

/* circle inside marquee spans */
.marquee-track span .circle {
  margin-right: 10px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ══════════════════════════════════════
   RESPONSIVE – Tablet (≤ 768px)
══════════════════════════════════════ */

@media (max-width: 768px) {

  /* Hero */
  .starting-page {
    margin-top: 50px;
    padding: 90px 22px 50px;
  }

  .heading {
    font-size: 26px;
    line-height: 1.35;
  }

  .heading br {
    display: none;
  }

  .para {
    font-size: 14px;
    line-height: 1.65;
  }

  .para br {
    display: none;
  }

  .StartButton {
    width: 100%;
    max-width: 320px;
    font-size: 14px;
    padding: 14px 20px;
  }

  .fourpoints {
    gap: 10px 25px;
    padding: 15px 12px 25px;
  }

  .fourpoints h4 {
    font-size: 13px;
  }

  /* Stats — force clean 2×2 grid on tablet */
  .js {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
    padding: 40px 30px;
    background-color: #ffffff;
    margin: 0;
  }

  .js-item {
    min-width: unset;
  }

  .js-num {
    font-size: 28px;
  }

  .js-label {
    font-size: 10px;
  }

  /* Marquee */
  .marquee-container {
    padding: 16px 0;
    margin: 0;
    overflow: hidden;
  }

  .marquee-track {
    gap: 45px;
    animation-duration: 18s;
  }

  .marquee-track span {
    font-size: 11px;
    letter-spacing: 1.8px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE – Mobile (≤ 480px)
══════════════════════════════════════ */

@media (max-width: 480px) {

  /* Hero */
  .starting-page {
    padding: 80px 16px 45px;
  }

  .heading {
    font-size: 22px;
  }

  .para {
    font-size: 13px;
  }

  .fourpoints {
    gap: 8px 18px;
    padding: 12px 10px 22px;
  }

  .fourpoints h4 {
    font-size: 12px;
  }

  /* Stats — 2×2 grid, tighter on small screens */
  .js {
    grid-template-columns: 1fr 1fr;
    gap: 22px 16px;
    padding: 32px 20px;
  }

  .js-num {
    font-size: 24px;
  }

  .js-label {
    font-size: 10px;
  }

  /* Marquee */
  .marquee-container {
    padding: 14px 0;
    margin: 0;
  }

  .marquee-track {
    gap: 35px;
    animation-duration: 16s;
  }

  .marquee-track span {
    font-size: 10px;
    letter-spacing: 1.5px;
  }
}

@media (max-width: 768px) {
  .section {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 0 20px;
  }

  .left {
    margin-left: 0;
    margin-top: 20px;
    align-items: center;
    text-align: center;
  }

  .headline {
    font-size: 28px;
  }

  .body-copy p {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .divider {
    width: 100%;
  }

  .stats {
    gap: 30px;
    justify-content: center;
  }

  .right {
    top: 20px;
    width: 100%;
  }

  .card-wrapper {
    padding: 24px 18px;
  }

  .top-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .mandate-row {
    grid-template-columns: 1fr;
  }

  .mandate+.mandate::before {
    top: 0;
    bottom: unset;
    left: 16px;
    right: 16px;
    width: unset;
    height: 1px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 0 14px;
  }

  .headline {
    font-size: 24px;
  }

  .stat-value {
    font-size: 26px;
  }

  .stats {
    gap: 20px;
  }

  .card-wrapper {
    padding: 18px 14px;
  }
}

/* ══════════════════════════════════════
           SECTION 3 – CAPABILITY ARCHITECTURE
        ══════════════════════════════════════ */

.capabilities-section {
  width: 100%;
  background-color: var(--dark-bg);
  padding: 80px 60px 100px;
}

/* ── Header ── */
.cap-header {
  text-align: center;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.cap-header.active {
  opacity: 1;
  transform: translateY(0);
}

.cap-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 7px 18px;
  margin-bottom: 28px;
}

.cap-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}

.cap-badge-text {
  font-family: 'Sen', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.cap-title {
  font-family: 'Sen', sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 18px;
}

.cap-subtitle {
  font-family: 'Sen', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  max-width: 580px;
  margin: 0 auto;
}

/* ── Top 6 Cards Grid ── */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 22px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.cap-card {
  background: #f5f7fc;
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid transparent;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.cap-card.active {
  opacity: 1;
  transform: translateY(0);
}

.cap-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26, 71, 229, 0.12);
}

.cap-card-icon {
  width: 42px;
  height: 42px;
  background: var(--blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.cap-card-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.cap-card-title {
  font-family: 'Sen', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.cap-card-desc {
  font-family: 'Sen', sans-serif;
  font-size: 13px;
  line-height: 1.65;
  color: var(--gray-light);
}

/* ── Bottom AI Feature Card ── */
.cap-ai-row {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease 0.4s, transform 0.7s ease 0.4s;
}

.cap-ai-row.active {
  opacity: 1;
  transform: translateY(0);
}

/* Left image panel */
.cap-ai-image {
  position: relative;
  background: linear-gradient(135deg, #1a3a9c 0%, #0a1f6e 40%, #1a6bff 100%);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  overflow: hidden;
}

.cap-ai-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 60% 30%, rgba(80, 140, 255, 0.45) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(26, 71, 229, 0.3) 0%, transparent 50%);
}

/* AI illustration placeholder — robot/brain SVG */
.cap-ai-illustration {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 40px;
   height: 100%;
  width: 100%;
}

.cap-ai-illustration svg {
  width: 200px;
  height: 200px;
  opacity: 0.85;
}

.cap-ai-label {
  position: relative;
  z-index: 2;
  font-family: 'Sen', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

/* Right content panel */
.cap-ai-content {
  background: #f5f7fc;
  padding: 38px 42px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
}

/* Main description spans both columns */
.cap-ai-main {
  grid-column: 1 / -1;
  margin-bottom: 28px;
}

.cap-ai-icon {
  width: 42px;
  height: 42px;
  background: var(--blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.cap-ai-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.cap-ai-desc {
  font-family: 'Sen', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray);
  max-width: 520px;
}

/* Left features column */
.cap-ai-features-left {
  display: flex;
  flex-direction: column;
  gap: 22px;
  border-right: 1px solid var(--border);
  padding-right: 40px;
}

/* Right features column */
.cap-ai-features-right {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-left: 0;
}

.cap-ai-feature {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cap-ai-feature-bar {
  width: 28px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
  margin-bottom: 10px;
}

.cap-ai-feature-left-bar {
  /* left bar style — vertical accent left of title for left col */
  display: flex;
  gap: 12px;
}

.cap-ai-feature-left-bar .left-accent-bar {
  width: 3px;
  height: 100%;
  min-height: 45px;
  background: var(--blue);
  border-radius: 2px;
  flex-shrink: 0;
}


.cap-ai-feature-title {
  font-family: 'Sen', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}

.cap-ai-feature-desc {
  font-family: 'Sen', sans-serif;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--gray-light);
}

/* ══════════════════════════════════════
           ANIMATIONS – stagger on scroll
        ══════════════════════════════════════ */
.cap-card {
  transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* ══════════════════════════════════════
           RESPONSIVE
        ══════════════════════════════════════ */
@media (max-width: 1024px) {
  .capabilities-section {
    padding: 60px 30px 80px;
  }

  .cap-title {
    font-size: 40px;
  }

  .cap-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .capabilities-section {
    padding: 50px 20px 60px;
  }

  .cap-title {
    font-size: 30px;
  }

  .cap-grid {
    grid-template-columns: 1fr;
  }

  .cap-ai-row {
    grid-template-columns: 1fr;
  }

  .cap-ai-image {
    min-height: 220px;
  }

  .cap-ai-content {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }

  .cap-ai-features-left {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-right: 0;
    padding-bottom: 22px;
  }
}

@media (max-width: 480px) {
  .cap-title {
    font-size: 26px;
  }
}

/* ══════════════════════════════════════
           SECTION 4 WRAPPER
        ══════════════════════════════════════ */
.delivery-section {
  width: 100%;
  background: var(--section-bg);
  padding: 72px 60px 90px;
}

/* ── TOP HEADER AREA ── */
.del-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto 48px;
}

/* Left: badge + title */
.del-top-left {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.del-top-left.active {
  opacity: 1;
  transform: translateY(0);
}

.del-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 71, 229, 0.09);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 22px;
}

.del-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
}

.del-badge-text {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
}

.del-title {
  font-size: 46px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}

/* Right: description + phase bar */
.del-top-right {
  padding-top: 8px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease 0.15s, transform 0.7s ease 0.15s;
}

.del-top-right.active {
  opacity: 1;
  transform: translateY(0);
}

.del-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 28px;
  max-width: 500px;
}

/* Phase progress bar */
.del-phases {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.del-phase-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}



.del-phase-item:last-child::after {
  display: none;
}

.del-phase-bar {
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  width: 0;
  transition: width 1s ease;
  position: relative;
  z-index: 1;
}

.del-phase-bar.animated {
  width: calc(100% - 8px);
}

.del-phase-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
}

/* ══════════════════════════════════════
           MAIN CONTENT: LEFT TABLE + RIGHT PANELS
        ══════════════════════════════════════ */
.del-body {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

/* ── LEFT: Phases Table Card ── */
.del-table-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease 0.1s, transform 0.7s ease 0.1s;
}

.del-table-card.active {
  opacity: 1;
  transform: translateY(0);
}

.del-phase-row {
  display: grid;
  grid-template-columns: 64px 220px 1fr;
  align-items: stretch;
  border-bottom: 1px solid var(--border);
  min-height: 110px;
  transition: background 0.25s ease;
}

.del-phase-row:last-child {
  border-bottom: none;
}

.del-phase-row:hover {
  background: #f7f9ff;
}

/* Number column */
.del-phase-num-col {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 28px 0 0;
  border-right: 1px solid var(--border);
  position: relative;
}

.del-phase-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
}

/* Active dot */
.del-phase-dot {
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  background: var(--blue);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.del-phase-row:hover .del-phase-dot {
  opacity: 1;
}

/* Title column */
.del-phase-title-col {
  padding: 22px 20px 22px 22px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.del-phase-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}

.del-phase-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
}

/* Description column */
.del-phase-desc-col {
  padding: 22px 28px;
  display: flex;
  align-items: center;
}

.del-phase-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--gray-light);
}

/* Stagger rows */
.del-phase-row {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease, background 0.25s ease;
}

.del-phase-row.active {
  opacity: 1;
  transform: translateX(0);
}

/* ── RIGHT: Image + Principle Card ── */
.del-right-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Image card */
.del-img-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  height: 420px;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}

.del-img-card.active {
  opacity: 1;
  transform: translateX(0);
}

.del-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay caption */
.del-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(7, 17, 43, 0.92) 0%, rgba(7, 17, 43, 0.4) 70%, transparent 100%);
  padding: 28px 26px 26px;
}

.del-img-accent {
  width: 28px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
  margin-bottom: 12px;
}

.del-img-caption {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
}

/* Principle card */
.del-principle-card {
  background: var(--dark-bg);
  border-radius: 16px;
  padding: 30px 28px;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease 0.35s, transform 0.7s ease 0.35s;
}

.del-principle-card.active {
  opacity: 1;
  transform: translateX(0);
}

.del-principle-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffffffc7;
  margin-bottom: 14px;
}

.del-principle-title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 20px;
}

.del-principle-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.del-principle-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

.del-principle-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ══════════════════════════════════════
           RESPONSIVE
        ══════════════════════════════════════ */
@media (max-width: 1024px) {
  .delivery-section {
    padding: 60px 30px 70px;
  }

  .del-title {
    font-size: 36px;
  }

  .del-body {
    grid-template-columns: 1fr 320px;
  }
}

@media (max-width: 768px) {
  .delivery-section {
    padding: 50px 20px 60px;
  }

  .del-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .del-title {
    font-size: 30px;
  }

  .del-body {
    grid-template-columns: 1fr;
  }

  .del-phase-row {
    grid-template-columns: 50px 180px 1fr;
  }

  .del-right-col {
    flex-direction: column;
  }

  .del-img-card {
    height: 280px;
  }
}

@media (max-width: 480px) {
  .del-title {
    font-size: 26px;
  }

  .del-phase-row {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .del-phase-num-col {
    padding: 16px 0 0 20px;
    border-right: none;
    border-bottom: none;
    justify-content: flex-start;
  }

  .del-phase-title-col {
    padding: 8px 20px;
    border-right: none;
  }

  .del-phase-desc-col {
    padding: 8px 20px 20px;
  }
}

/* ══════════════════════════════════════
           SECTION 5 WRAPPER
        ══════════════════════════════════════ */
.value-section {
  width: 100%;
  background: #ffffff;
  padding: 80px 60px 100px;
}

/* ── TOP HEADER ── */
.val-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto 50px;
}

.val-header-left {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.val-header-left.active {
  opacity: 1;
  transform: translateY(0);
}

.val-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 71, 229, 0.07);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 22px;
}

.val-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}

.val-badge-text {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
}

.val-title {
  font-size: 46px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.05;
}

.val-header-right {
  display: flex;
  align-items: flex-end;
  padding-bottom: 6px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease 0.15s, transform 0.7s ease 0.15s;
}

.val-header-right.active {
  opacity: 1;
  transform: translateY(0);
}

.val-desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray);
  max-width: 480px;
  margin-top: 55px;
}

/* ══════════════════════════════════════
           BODY: LEFT TABLE + RIGHT IMAGES
        ══════════════════════════════════════ */
.val-body {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

/* ── LEFT: Outcomes Table Card ── */
.val-table-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease 0.1s, transform 0.7s ease 0.1s;
}

.val-table-card.active {
  opacity: 1;
  transform: translateY(0);
}

/* Each row */
.val-row {
  display: grid;
  grid-template-columns: 72px 220px 1fr;
  align-items: stretch;
  border-bottom: 1px solid var(--border);
  min-height: 118px;
  transition: background 0.25s ease;
  opacity: 0;
  transform: translateX(-22px);
  transition: opacity 0.55s ease, transform 0.55s ease, background 0.25s ease;
}

.val-row:last-child {
  border-bottom: none;
}

.val-row:hover {
  background: #f7f9ff;
}

.val-row.active {
  opacity: 1;
  transform: translateX(0);
}

/* Number col */
.val-num-col {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 30px;
  border-right: 1px solid var(--border);
}

.val-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

/* Title col */
.val-title-col {
  padding: 26px 22px 26px 24px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.val-row-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px;
  line-height: 1.3;
}

.val-row-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
}

/* Desc col */
.val-desc-col {
  padding: 26px 30px;
  display: flex;
  align-items: center;
}

.val-row-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--gray-light);
}

/* ── RIGHT: Two Image Cards ── */
.val-right-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.val-img-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  height: 300px;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.val-img-card:nth-child(1) {
  transition-delay: 0.2s;
}

.val-img-card:nth-child(2) {
  transition-delay: 0.38s;
}

.val-img-card.active {
  opacity: 1;
  transform: translateX(0);
}

.val-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.val-img-card:hover img {
  transform: scale(1.04);
}

.val-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(7, 17, 43, 0.85) 0%, rgba(7, 17, 43, 0.3) 60%, transparent 100%);
  padding: 22px 22px 20px;
}

.val-img-caption {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
}

/* ══════════════════════════════════════
           RESPONSIVE
        ══════════════════════════════════════ */
@media (max-width: 1024px) {
  .value-section {
    padding: 60px 30px 70px;
  }

  .val-title {
    font-size: 40px;
  }

  .val-body {
    grid-template-columns: 1fr 300px;
  }
}

@media (max-width: 768px) {
  .value-section {
    padding: 50px 20px 60px;
  }

  .val-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .val-title {
    font-size: 32px;
  }

  .val-body {
    grid-template-columns: 1fr;
  }

  .val-row {
    grid-template-columns: 52px 180px 1fr;
  }

  .val-img-card {
    height: 240px;
  }
}

@media (max-width: 480px) {
  .val-title {
    font-size: 26px;
  }

  .val-row {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .val-num-col {
    padding: 18px 0 0 20px;
    border-right: none;
    justify-content: flex-start;
  }

  .val-title-col {
    padding: 8px 20px;
    border-right: none;
  }

  .val-desc-col {
    padding: 8px 20px 22px;
  }
}

/* ══════════════════════════════════════
           SECTION 6 WRAPPER
        ══════════════════════════════════════ */
.cta-section {
  width: 100%;
  background: var(--dark-bg);
  padding: 100px 60px 100px;
  position: relative;
  overflow: hidden;
}

/* Subtle background radial glow */
.cta-section::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(26, 71, 229, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: 200px;
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(26, 71, 229, 0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── TWO COLUMN LAYOUT ── */
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════
           LEFT COLUMN
        ══════════════════════════════════════ */
.cta-left {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.cta-left.active {
  opacity: 1;
  transform: translateY(0);
}

/* Badge */
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 7px 18px;
  margin-bottom: 32px;
}

.cta-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}

.cta-badge-text {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

/* Headline */
.cta-headline {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.08;
  color: #ffffff;
  margin-bottom: 28px;
}

.cta-headline .cta-blue {
  color: #4a7fff;
}

/* Body copy */
.cta-body {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
  margin-bottom: 44px;
}

/* CTA Button */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: #ffffff;
  font-family: 'Sen', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 30px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.cta-btn:hover {
  background: #2255f5;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26, 71, 229, 0.45);
}

.cta-btn:active {
  transform: translateY(0);
}

.cta-btn-arrow {
  font-size: 18px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.cta-btn:hover .cta-btn-arrow {
  transform: translateX(4px);
}

/* ══════════════════════════════════════
           RIGHT COLUMN — Engagement Standards Card
        ══════════════════════════════════════ */
.cta-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 36px 32px;
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.cta-card.active {
  opacity: 1;
  transform: translateX(0);
}

.cta-card-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Standard items */
.cta-standards {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cta-std-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.cta-std-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cta-std-item.active {
  opacity: 1;
  transform: translateY(0);
}

/* Icon box */
.cta-std-icon {
  width: 44px;
  height: 44px;
  background: var(--blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-std-item:hover .cta-std-icon {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(26, 71, 229, 0.5);
}

.cta-std-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* Text */

.cta-std-title {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.3;
}

.cta-std-desc {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
}

/* ══════════════════════════════════════
           RESPONSIVE
        ══════════════════════════════════════ */
@media (max-width: 1024px) {
  .cta-section {
    padding: 80px 30px 80px;
  }

  .cta-inner {
    grid-template-columns: 1fr 400px;
    gap: 40px;
  }

  .cta-headline {
    font-size: 46px;
  }
}

@media (max-width: 768px) {
  .cta-section {
    padding: 60px 20px 70px;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cta-headline {
    font-size: 36px;
  }

  .cta-card {
    padding: 28px 22px;
  }
}

@media (max-width: 480px) {
  .cta-headline {
    font-size: 28px;
  }

  .cta-body {
    font-size: 14px;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ══════════════════════════════════════
           SECTION 7 – IMAGE BAND
        ══════════════════════════════════════ */
.band-section {
  width: 100%;
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Parallax background layer */
.band-bg {
  position: absolute;
  inset: -40px;
  z-index: 0;
  will-change: transform;
 
}

/* Actual background image — covers the div */
.band-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Blue gradient overlay on top of the image */
.band-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(7, 17, 60, 0.88) 0%,
      rgba(15, 42, 138, 0.80) 35%,
      rgba(26, 71, 229, 0.72) 70%,
      rgba(0, 60, 255, 0.6) 100%);
}

/* Floating ambient orbs */
.band-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
}

.band-orb.visible {
  opacity: 1;
}

.band-orb--1 {
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(26, 71, 229, 0.2) 0%, transparent 70%);
  top: -100px;
  left: 8%;
  animation: bandFloat1 8s ease-in-out infinite;
}

.band-orb--2 {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(80, 140, 255, 0.15) 0%, transparent 70%);
  bottom: -70px;
  right: 18%;
  animation: bandFloat2 10s ease-in-out infinite;
}

.band-orb--3 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  top: 15%;
  right: 4%;
  animation: bandFloat1 12s ease-in-out infinite reverse;
}

@keyframes bandFloat1 {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }

  33% {
    transform: translateY(-14px) translateX(6px);
  }

  66% {
    transform: translateY(8px) translateX(-8px);
  }
}

@keyframes bandFloat2 {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(-10px) translateX(10px);
  }
}

/* Inner container */
.band-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}

/* Each standard item */
.band-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 22px;
  position: relative;
  cursor: default;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.3s ease;
}

.band-item.active {
  opacity: 1;
  transform: translateY(0);
}

.band-item:hover {
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.07));
}

/* Static dim left border */
.band-item::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 2px;
}

/* Animated fill border on hover — grows upward from bottom */
.band-item::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2px;
  height: 0;
  background: #ffffff;
  border-radius: 2px;
  z-index: 1;
  transition: height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.band-item:hover::before {
  height: 100%;
}

/* Label with shimmer sweep on reveal */
.band-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.band-label::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.band-item.active .band-label::after {
  animation: bandShimmer 0.9s 0.3s ease forwards;
}

@keyframes bandShimmer {
  from {
    left: -60%;
  }

  to {
    left: 130%;
  }
}

/* Title clip-reveal upward */
.band-title-wrap {
  overflow: hidden;
}

.band-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  display: block;
  transform: translateY(105%);
  transition: transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.band-item.active .band-title {
  transform: translateY(0);
}

.band-item.active:hover .band-title {
  transform: translateY(-2px);
}

/* Arrow hint — slides in on hover */
.band-arrow {
  font-size: 13px;
  font-weight: 600;
  color: transparent;
  letter-spacing: 0.04em;
  transform: translateX(-10px);
  display: inline-block;
  transition: color 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.band-item:hover .band-arrow {
  color: rgba(255, 255, 255, 0.65);
  transform: translateX(0);
}

/* ══════════════════════════════════════
           RESPONSIVE
        ══════════════════════════════════════ */
@media (max-width: 900px) {
  .band-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 60px 30px;
  }
}

@media (max-width: 480px) {
  .band-inner {
    padding: 50px 20px;
  }

  .band-title {
    font-size: 17px;
  }
}