:root {
  --navy: #0E1133;
  --navy-mid: #141840;
  --navy-light: #1a2060;
  --navy-card: #1c2259;
  --gold: #e69c43;
  --gold-light: #f5b560;
  --green: #22ff88;
  --green-glow: rgba(34, 255, 136, 0.35);
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --tl-width: 3px;
  /* timeline line thickness */
  --node-size: 22px;
  /* white dot diameter */
  --plane-size: 60px;
  --gap: 1.25rem;
  --speed: 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --closed: 5rem;
  --open: 30rem;
  --accent: #ff6b35;
  --navy: #0E1133;
  --navy-mid: #141840;
  --navy-card: #1a2060;
  --gold: #e69c43;
  --green: #22ff88;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.55);
  --red: #e62222;
}


section {
  position: relative;
  overflow: hidden;
}

section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.016) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.016) 1px, transparent 1px);
  background-size: 54px 54px;
  pointer-events: none;
  z-index: 0;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  z-index: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--navy);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ════════════════════════════════════════════
   NOTICE BAR
════════════════════════════════════════════ */

.notice-bar {
  background: #1a2a5a;
  color: #fff;
  overflow: hidden;
  padding: 10px 0;
}

.notice-bar__marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.notice-bar__track {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}

.notice-bar__dot {
  width: 8px;
  height: 8px;
  background: #e69c43;
  border-radius: 50%;
  display: inline-block;
}

/* Animation */
@keyframes marquee {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

.notice-bar__inner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 6px 20px;
  letter-spacing: 0.01em;
}

.notice-bar__dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.75);
  }
}

/* ════════════════════════════════════════════
   HERO SECTION
════════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 72px 0 80px;
  overflow: hidden;
}

.container {
  position: relative;
  z-index: 1;
}

.main_index {
  background-image: url(./images/index_banner.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.main_index::before {
  position: absolute;
  content: '';
  background: linear-gradient(90deg, #0E1133 60%, #ffffff20);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/* ── Sub-heading ── */
.hero__sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 42px;
  color: rgba(255, 255, 255, 0.82);
  /* text-align: center; */
  margin: 0 auto 28px;
  line-height: 1.7;
}

/* ── Main headline ── */
.hero__headline-wrap {
  margin-bottom: 32px;
}

.hero__headline {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  line-height: 1.22;
  color: var(--green);
  text-shadow:
    0 0 20px rgba(34, 255, 136, 0.45),
    0 0 60px rgba(34, 255, 136, 0.20);
  border: 1.5px solid rgba(34, 255, 136, 0.30);
  border-radius: var(--radius-md);
  padding: 18px 36px;
  background: rgba(34, 255, 136, 0.04);
  box-shadow:
    0 0 30px rgba(34, 255, 136, 0.08),
    inset 0 0 30px rgba(34, 255, 136, 0.03);
  position: relative;
}

/* Corner accents */
.hero__headline::before,
.hero__headline::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border-color: var(--green);
  border-style: solid;
  opacity: 0.6;
}

.hero__headline::before {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
  border-radius: 28px 0 0 0
}

.hero__headline::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 2px 2px 0;
  border-radius: 0 0 28px 0;
}

.hero__headline--accent {
  color: #a7f7d0;
}

/* ── Description ── */
.hero__desc {
  margin: 0 auto 32px;
  color: var(--muted);
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  line-height: 1.75;
}

.hero__desc strong {
  color: var(--white);
}

/* ── Feature points ── */
.hero__features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: initial;
  gap: 20px 48px;
  margin-bottom: 48px;
  padding: 0;
}

.hero__features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(34, 255, 136, 0.07);
  border: 1px solid rgba(34, 255, 136, 0.18);
  border-radius: 100px;
  padding: 7px 18px 7px 12px;
}

.hero__features li .bi {
  color: var(--green);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ════════════════════════════════════════════
   CREDENTIALS IMAGE (LEFT)
════════════════════════════════════════════ */
.cred-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: stretch;
}

.cred-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: var(--radius-lg);
}

/* ════════════════════════════════════════════
   INFO BOXES (RIGHT GRID)
════════════════════════════════════════════ */
.info-box {
  background: #2e3a8c;
  border: none;
  border-radius: var(--radius-md);
  padding: 22px 18px;
  height: 100%;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.info-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  background: #3646b0;
}

.info-box__text {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
  margin: 0;
}

/* CTA wrap below info grid */
.cta-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
}

/* CTA button — full-width block */
.cta-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: linear-gradient(135deg, #e62222 0%, #c01010 100%);
  border-radius: var(--radius-md);
  padding: 18px 32px;
  width: 100%;
  box-shadow: 0 8px 30px rgba(200, 0, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: cta-pulse 3s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
}

@keyframes cta-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(230, 34, 34, 0.4), 0 8px 30px rgba(200, 0, 0, 0.35);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(230, 34, 34, 0), 0 8px 30px rgba(200, 0, 0, 0.5);
  }
}

.cta-btn:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 0 0 4px rgba(230, 34, 34, 0.25), 0 16px 40px rgba(200, 0, 0, 0.5);
  animation: none;
}

.cta-btn__main {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.cta-btn__main del {
  opacity: 0.65;
  font-weight: 400;
  margin-right: 4px;
}

.cta-btn__main strong {
  color: #fff;
  font-size: 1.1em;
  letter-spacing: 0.04em;
}

.cta-btn__sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.04em;
  margin-top: 5px;
  font-weight: 500;
}

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 991px) {
  .hero {
    padding: 52px 0 60px;
  }

  .cred-img {
    max-height: 300px;
  }
}

@media (max-width: 767px) {
  .hero__features {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .hero__features li {
    justify-content: center;
  }

  .hero__headline {
    padding: 14px 18px;
    font-size: 1.5rem;
  }

  .notice-bar__inner {
    font-size: 0.78rem;
    padding: 6px 14px;
  }

  .info-box {
    min-height: 80px;
  }
}

.overseas {
  padding: 60px 0;
}

.counter-grid {
  padding: 30px 0 60px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  text-align: center;
}

.counter-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 120px;
  border-radius: 12px;
  background: #ffffff20;
  border: 1px solid #ffffff20;
  box-shadow: 0 0 12px 2px #ffffff20;
  transition: 0.5s all ease-in-out;
}

.counter-box:hover {
  transform: translateY(-5px);
}

.counter {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  display: flex;
  align-items: center;
}

.counter span {
  font-size: 30px;
  margin-left: 2px;
}

.counter-box p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 16px;
}

.static-text {
  font-size: 2rem;
  color: var(--accent);
}

/* Responsive */
@media (max-width: 992px) {
  .counter-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.logo-marquee {
  background: #fff;
  overflow: hidden;
  padding: 20px 0;
  position: relative;
}

.logo-marquee__inner {
  overflow: hidden;
}

.logo-marquee__track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: marquee 20s linear infinite;
  align-items: center;
}

.logo-item img {
  height: 50px;
  width: auto;
  object-fit: contain;

  filter: grayscale(100%) brightness(1.2);
  opacity: 0.8;

  transition: all 0.3s ease;
}

.logo-item img:hover {
  filter: none;
  opacity: 1;
  transform: scale(1.1);
}

/* Animation */
@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.logo-marquee__track:hover {
  animation-play-state: paused;
}



.tl-section {
  padding: 96px 0 120px;
  position: relative;
  overflow: hidden;
}

/* Background grid texture */
.tl-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* Glow blobs */
.tl-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.tl-blob--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(34, 255, 136, 0.07) 0%, transparent 70%);
  top: 0;
  left: -100px;
}

.tl-blob--2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(230, 156, 67, 0.07) 0%, transparent 70%);
  bottom: 100px;
  right: -100px;
}

.tl-section .container {
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════
       HEADER
    ══════════════════════════════════════ */
.tl-header {
  text-align: center;
  margin-bottom: 72px;
}

.tl-header__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  background: rgba(230, 156, 67, 0.1);
  border: 1px solid rgba(230, 156, 67, 0.25);
  border-radius: 100px;
  padding: 5px 16px;
  margin-bottom: 20px;
}

.tl-header__eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

.tl-header__title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 900;
  font-size: 40px;
  color: #e69c43;
  line-height: 1.15;
  text-shadow: 0 0 40px rgba(34, 255, 136, 0.3);
  margin-bottom: 16px;
}

.tl-header__sub {
  color: var(--muted);
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ══════════════════════════════════════
       TIMELINE LAYOUT
    ══════════════════════════════════════ */
.tl-track {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

/* The center vertical line */
.tl-track__line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: var(--tl-width);
  background: #fff;
  transform: translateX(-50%);
  border-radius: 4px;
  z-index: 1;
}

/* Progress fill — grows as plane moves */
.tl-track__fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(to bottom, var(--green), var(--gold));
  border-radius: 4px;
  transition: height 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ══════════════════════════════════════
       PLANE ON TIMELINE
    ══════════════════════════════════════ */
.tl-plane {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%) rotate(180deg);
  width: var(--plane-size);
  height: var(--plane-size);
  z-index: 10;
  transition: top 0.65s cubic-bezier(0.34, 1.2, 0.64, 1);
  filter: drop-shadow(0 0 10px var(--green-glow));
  animation: plane-float 3s ease-in-out infinite;
}

@keyframes plane-float {

  0%,
  100% {
    filter: drop-shadow(0 0 10px var(--green-glow));
  }

  50% {
    filter: drop-shadow(0 0 20px var(--green-glow)) drop-shadow(0 0 6px rgba(34, 255, 136, 0.8));
  }
}

.tl-plane svg {
  width: 100%;
  height: 100%;
}

/* ══════════════════════════════════════
       TIMELINE ITEMS
    ══════════════════════════════════════ */
.tl-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 64px;
  min-height: 120px;
}

.tl-item:last-child {
  margin-bottom: 0;
}

/* Node (white dot on the line) */
.tl-item__node {
  position: absolute;
  left: 50%;
  top: 24px;
  transform: translate(-50%, -50%);
  width: var(--node-size);
  height: var(--node-size);
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--navy);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.15);
  z-index: 5;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.tl-item__node.is-active {
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(34, 255, 136, 0.25), 0 0 20px var(--green-glow);
  transform: translate(-50%, -50%) scale(1.35);
}

/* Content sides */
.tl-item__content {
  width: calc(50% - 36px);
  padding: 0 8px;
}

/* Left items → content on left, empty right */
.tl-item--left .tl-item__content {
  margin-right: auto;
  text-align: right;
}

.tl-item--left .tl-item__pill {
  margin-left: auto;
}

/* Right items → empty left, content on right */
.tl-item--right .tl-item__content {
  margin-left: auto;
  text-align: left;
}

/* Card */
.tl-card {
  background: var(--navy-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 22px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.tl-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(34, 255, 136, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.tl-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
  border-color: rgba(34, 255, 136, 0.2);
}

/* Active card glow */
.tl-item.is-active .tl-card {
  border-color: rgba(34, 255, 136, 0.35);
  box-shadow: 0 0 30px rgba(34, 255, 136, 0.08);
}

.tl-card__step {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 4px;
}

.tl-card__title {
  font-family: 'Syne', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 8px;
  line-height: 1.2;
}

.tl-card__desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 14px;
}

.tl-item__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-style: italic;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: 5px 14px;
}

/* ══════════════════════════════════════
       RESPONSIVE — MOBILE
    ══════════════════════════════════════ */
@media (max-width: 767px) {
  .tl-track__line {
    left: 24px;
  }

  .tl-plane {
    left: 24px;
  }

  .tl-item {
    flex-direction: column;
    padding-left: 60px;
  }

  .tl-item--left .tl-item__content,
  .tl-item--right .tl-item__content {
    width: 100%;
    text-align: left;
    margin: 0;
  }

  .tl-item__node {
    left: 24px;
    top: 20px;
  }

  .tl-item--left .tl-item__pill {
    margin-left: 0;
  }
}

.cta_action p {
  font-size: 20px;
  margin-top: 20px;
  text-align: center;
}

.session_slider {
  padding: 60px 0;
  background-color: #000;
}

.head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.head h2 {
  font: 400 1.5rem/1.2 Inter, sans-serif;
  color: #fff;
}

@media (min-width: 1024px) {
  .head h2 {
    font-size: 2.25rem;
  }
}

.nav-btn {
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

.nav-btn:hover {
  background: var(--accent);
}

.nav-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.slider {
  max-width: 1400px;
  margin: auto;
  overflow: hidden;
}

.controls {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}

.track {
  display: flex;
  gap: var(--gap);
  align-items: flex-start;
  justify-content: center;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 40px;
}

.track::-webkit-scrollbar {
  display: none;
}

.project-card {
  position: relative;
  flex: 0 0 var(--closed);
  height: 26rem;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  transition: flex-basis var(--speed), transform var(--speed);
}

.project-card[active] {
  flex-basis: var(--open);
  transform: translateY(-6px);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.45);
}

.project-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75) saturate(75%);
  transition: filter 0.3s, transform var(--speed);
}

.project-card:hover .project-card__bg {
  filter: brightness(0.9) saturate(100%);
  transform: scale(1.06);
}

.project-card__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
  padding: 0;
  background: linear-gradient(transparent 40%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 2;
}

.project-card__title {
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.project-card__thumb,
.project-card__desc {
  display: none;
}

.project-card[active] .project-card__content {
  flex-direction: row;
  align-items: center;
  padding: 1.2rem 2rem;
  gap: 1.1rem;
}

.project-card[active] .project-card__title {
  writing-mode: horizontal-tb;
  transform: none;
  font-size: 2.4rem;
}

.project-card[active] .project-card__thumb,
.project-card[active] .project-card__desc,
.project-card[active] .project-card__btn {
  display: block;
}

.project-card__thumb {
  width: 133px;
  height: 269px;
  border-radius: 0.45rem;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.project-card__desc {
  color: #ddd;
  font-size: 1rem;
  line-height: 1.4;
  max-width: 16rem;
}

.project-card__btn {
  padding: 0.55rem 1.3rem;
  border: none;
  border-radius: 9999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

.project-card__btn:hover {
  background: #ff824f;
}

.dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  padding: 20px 0;
}

.dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

@media (max-width: 767px) {
  :root {
    --closed: 4rem;
    --open: 22rem;
  }

  .head {
    padding: 50px 20px 30px;
  }

  .track {
    flex-direction: column;
    scroll-snap-type: y mandatory;
    align-items: center;
    justify-content: flex-start;
    padding-bottom: 0;
  }

  .project-card {
    height: 20rem;
  }

  .project-card__title {
    font-size: 1.1rem;
    writing-mode: horizontal-tb;
    transform: none;
    text-align: center;
    padding-inline: 0.3rem;
  }

  .nav-btn {
    width: 2rem;
    height: 2rem;
    font-size: 1.2rem;
  }
}

@media (max-width: 767px) {
  :root {
    --closed: 100%;
    --open: 100%;
    --gap: 0.8rem;
  }

  .head {
    padding: 30px 15px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .slider {
    padding: 0 15px;
  }

  .track {
    flex-direction: column;
    scroll-snap-type: y mandatory;
    gap: 0.8rem;
    padding-bottom: 20px;
  }

  .project-card {
    height: auto;
    min-height: 80px;
    flex: 0 0 auto;
    width: 100%;
    scroll-snap-align: start;
  }

  .project-card[active] {
    min-height: 300px;
    transform: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  }

  .project-card__content {
    flex-direction: row;
    justify-content: flex-start;
    padding: 1rem;
    align-items: center;
    gap: 1rem;
  }

  .project-card__title {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 1.2rem;
    margin-right: auto;
  }

  .project-card__thumb,
  .project-card__desc,
  .project-card__btn {
    display: none;
  }

  .project-card[active] .project-card__content {
    align-items: flex-start;
    padding: 1.5rem;
  }

  .project-card[active] .project-card__title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
  }

  .project-card[active] .project-card__thumb {
    width: 200px;
    height: 267px;
    border-radius: 0.35rem;
    margin-bottom: 1rem;
  }

  .project-card[active] .project-card__desc {
    font-size: 0.95rem;
    max-width: 100%;
    margin-bottom: 1rem;
  }

  .project-card[active] .project-card__btn {
    align-self: center;
    width: 100%;
    text-align: center;
    padding: 0.7rem;
  }

  .dots {
    display: none;
  }

  .controls {
    width: 100%;
    justify-content: space-between;
    padding: 0 15px 20px;
  }

  .nav-btn {
    position: static;
    transform: none;
  }
}

.video-section {
  padding: 80px 0;
  text-align: center;
}

.video-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}

.video-subtitle {
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 16px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.video-card {
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

/* iframe */
.video-card iframe {
  width: 100%;
  height: 220px;
  border: none;
  display: block;
}

/* Responsive */
@media (max-width: 992px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .video-grid {
    grid-template-columns: 1fr;
  }

  .video-card iframe {
    height: 200px;
  }
}

.ts-section {
  padding: 100px 24px 120px;
  position: relative;
  overflow: hidden;
}

/* Grid texture */
.ts-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}

/* Ambient glows */
.ts-section::after {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 255, 136, 0.05) 0%, transparent 65%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.ts-glow-left,
.ts-glow-right {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.ts-glow-left {
  background: rgba(230, 156, 67, 0.08);
  top: 0;
  left: -80px;
}

.ts-glow-right {
  background: rgba(34, 255, 136, 0.06);
  bottom: 0;
  right: -80px;
}

/* ══════════════════════════════════════
       HEADER
    ══════════════════════════════════════ */
.ts-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 64px;
  position: relative;
  z-index: 2;
}

.ts-header__tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  background: rgba(230, 156, 67, 0.1);
  border: 1px solid rgba(230, 156, 67, 0.22);
  border-radius: 100px;
  padding: 5px 16px;
  margin-bottom: 18px;
}

.ts-header__tag span {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 2s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .3;
    transform: scale(.6)
  }
}

.ts-header__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
}

.ts-header__title em {
  font-style: normal;
  color: var(--green);
  text-shadow: 0 0 32px rgba(34, 255, 136, 0.35);
}

.ts-header__sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* ══════════════════════════════════════
       STAGE — THE UNIQUE 3D CAROUSEL
    ══════════════════════════════════════ */
.ts-stage {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}

/* The 3D perspective container */
.ts-carousel {
  position: relative;
  height: 380px;
  perspective: 1200px;
  perspective-origin: 50% 40%;
}

/* Each card */
.ts-card {
  position: absolute;
  width: 320px;
  left: 50%;
  top: 50%;
  transform-origin: center center;
  transform: translateX(-50%) translateY(-50%);
  background: var(--navy-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 32px 28px 28px;
  cursor: pointer;
  transition:
    transform 0.7s cubic-bezier(0.34, 1.1, 0.64, 1),
    opacity 0.7s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
  will-change: transform, opacity;
  user-select: none;
}

/* ── Card states ── */

/* ACTIVE — center, full size, in front */
.ts-card.state-active {
  transform: translateX(-50%) translateY(-50%) translateZ(0px) scale(1);
  opacity: 1;
  z-index: 10;
  border-color: rgba(34, 255, 136, 0.3);
  box-shadow:
    0 0 0 1px rgba(34, 255, 136, 0.1),
    0 32px 80px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(34, 255, 136, 0.07);
}

/* PREV (left neighbor) */
.ts-card.state-prev {
  transform: translateX(calc(-50% - 300px)) translateY(-50%) translateZ(-180px) rotateY(18deg) scale(0.88);
  opacity: 0.55;
  z-index: 5;
}

/* PREV-2 (far left) */
.ts-card.state-prev2 {
  transform: translateX(calc(-50% - 520px)) translateY(-50%) translateZ(-360px) rotateY(30deg) scale(0.72);
  opacity: 0.25;
  z-index: 2;
}

/* NEXT (right neighbor) */
.ts-card.state-next {
  transform: translateX(calc(-50% + 300px)) translateY(-50%) translateZ(-180px) rotateY(-18deg) scale(0.88);
  opacity: 0.55;
  z-index: 5;
}

/* NEXT-2 (far right) */
.ts-card.state-next2 {
  transform: translateX(calc(-50% + 520px)) translateY(-50%) translateZ(-360px) rotateY(-30deg) scale(0.72);
  opacity: 0.25;
  z-index: 2;
}

/* HIDDEN */
.ts-card.state-hidden {
  transform: translateX(-50%) translateY(-50%) translateZ(-600px) scale(0.4);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}

/* Hover lift on non-active cards */
.ts-card.state-prev:hover,
.ts-card.state-next:hover {
  opacity: 0.8;
  filter: brightness(1.15);
}

/* Card content */
.ts-card__quote {
  font-size: 2.2rem;
  line-height: 1;
  color: var(--green);
  margin-bottom: 10px;
  font-family: 'Syne', sans-serif;
}

.ts-card__text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.ts-card__divider {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), transparent);
  margin-bottom: 20px;
  border-radius: 2px;
}

.ts-card__footer {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Avatar */
.ts-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a3a8c, #1a2565);
  border: 2px solid rgba(34, 255, 136, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--green);
}

.ts-card__meta {
  flex: 1;
}

.ts-card__name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--white);
  margin-bottom: 2px;
}

.ts-card__role {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
}

/* Stars */
.ts-card__stars {
  display: flex;
  gap: 3px;
}

.ts-card__stars svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
}

/* Active card top accent bar */
.ts-card.state-active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold), transparent);
  border-radius: 0 0 4px 4px;
}

/* ══════════════════════════════════════
       CONTROLS
    ══════════════════════════════════════ */
.ts-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
  position: relative;
  z-index: 3;
}

.ts-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}

.ts-btn:hover {
  background: rgba(34, 255, 136, 0.12);
  border-color: rgba(34, 255, 136, 0.35);
  transform: scale(1.08);
}

.ts-btn svg {
  width: 18px;
  height: 18px;
}

/* Dots */
.ts-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.ts-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s, width 0.3s;
  border-radius: 100px;
}

.ts-dot.is-active {
  background: var(--green);
  width: 28px;
  box-shadow: 0 0 10px rgba(34, 255, 136, 0.5);
}

/* ══════════════════════════════════════
       COUNTER BADGE
    ══════════════════════════════════════ */
.ts-counter {
  text-align: center;
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  position: relative;
  z-index: 3;
}

.ts-counter strong {
  color: var(--green);
}

/* ══════════════════════════════════════
       CTA BELOW
    ══════════════════════════════════════ */
.ts-cta {
  text-align: center;
  margin-top: 64px;
  position: relative;
  z-index: 3;
}

.ts-cta__btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  background: linear-gradient(135deg, var(--navy-card), #0e1a5c);
  border: 1.5px solid rgba(34, 255, 136, 0.2);
  border-radius: 16px;
  padding: 20px 52px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  cursor: pointer;
}

.ts-cta__btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(34, 255, 136, 0.08);
  border-color: rgba(34, 255, 136, 0.4);
}

.ts-cta__main {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  color: var(--white);
  margin-bottom: 4px;
}

.ts-cta__sub {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--green);
  font-weight: 500;
}

/* ══════════════════════════════════════
       KEYBOARD HINT
    ══════════════════════════════════════ */
.ts-hint {
  text-align: center;
  margin-top: 12px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 3;
  letter-spacing: 0.06em;
}

/* ══════════════════════════════════════
       DRAG CURSOR
    ══════════════════════════════════════ */
.ts-carousel {
  cursor: grab;
}

.ts-carousel.is-dragging {
  cursor: grabbing;
}

/* ══════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════ */
@media (max-width: 768px) {
  .ts-carousel {
    height: 420px;
    perspective: 800px;
  }

  .ts-card {
    width: 280px;
    padding: 24px 22px 22px;
  }

  .ts-card.state-prev {
    transform: translateX(calc(-50% - 200px)) translateY(-50%) translateZ(-120px) rotateY(15deg) scale(0.82);
    opacity: 0.35;
  }

  .ts-card.state-next {
    transform: translateX(calc(-50% + 200px)) translateY(-50%) translateZ(-120px) rotateY(-15deg) scale(0.82);
    opacity: 0.35;
  }

  .ts-card.state-prev2,
  .ts-card.state-next2 {
    opacity: 0;
    pointer-events: none;
  }
}

.wd-section {
  padding: 100px 24px 120px;
  position: relative;
  overflow: hidden;
}


/* Ambient glows */
.wd-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
}

.wd-blob--1 {
  width: 500px;
  height: 500px;
  background: rgba(34, 255, 136, 0.06);
  top: -80px;
  left: -100px;
}

.wd-blob--2 {
  width: 500px;
  height: 500px;
  background: rgba(230, 156, 67, 0.06);
  bottom: 0;
  right: -100px;
}

.wd-blob--3 {
  width: 400px;
  height: 400px;
  background: rgba(230, 34, 34, 0.04);
  top: 40%;
  left: 40%;
}

/* ══════════════ HEADER ══════════════ */
.wd-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 72px;
  position: relative;
  z-index: 2;
}

.wd-header__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  background: rgba(230, 156, 67, 0.1);
  border: 1px solid rgba(230, 156, 67, 0.22);
  border-radius: 100px;
  padding: 5px 18px;
  margin-bottom: 20px;
}

.wd-header__tag span {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 2s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .3;
    transform: scale(.6)
  }
}

.wd-header__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 16px;
}

.wd-header__title em {
  font-style: normal;
  color: var(--green);
  text-shadow: 0 0 36px rgba(34, 255, 136, 0.4);
}

.wd-header__sub {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

/* ══════════════ BENTO GRID ══════════════ */
.wd-bento {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
}

/* ── Card base ── */
.wd-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--navy-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  cursor: default;
  transition: transform 0.35s cubic-bezier(.34, 1.1, .64, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.wd-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  border-color: rgba(34, 255, 136, 0.25);
}

/* Image fills behind text */
.wd-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(0.38) saturate(0.7);
}

.wd-card:hover .wd-card__img {
  transform: scale(1.06);
  filter: brightness(0.28) saturate(0.5);
}

/* Dark gradient overlay */
.wd-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(14, 17, 51, 0.97) 0%,
      rgba(14, 17, 51, 0.55) 55%,
      rgba(14, 17, 51, 0.1) 100%);
  transition: opacity 0.35s;
}

/* Accent top bar (color per card) */
.wd-card__bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 20px 20px 0 0;
}

/* Content */
.wd-card__body {
  position: relative;
  z-index: 2;
  padding: 24px 26px;
}

.wd-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.wd-card__tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 100px;
  padding: 3px 12px;
  margin-bottom: 10px;
}

.wd-card__title {
  font-family: 'Syne', sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 8px;
  color: var(--white);
}

.wd-card__desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
  max-width: 340px;
}

/* ── Hover reveal text ── */
.wd-card__desc {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.35s ease;
  opacity: 0;
}

.wd-card:hover .wd-card__desc {
  max-height: 80px;
  opacity: 1;
}

/* Number badge */
.wd-card__num {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  opacity: 0.07;
  color: var(--white);
  transition: opacity 0.3s;
}

.wd-card:hover .wd-card__num {
  opacity: 0.04;
}

/* ── Grid placement ── */
/* Row 1: wide(7) + medium(5) */
.wd-card--1 {
  grid-column: span 4;
}

.wd-card--2 {
  grid-column: span 4;
}

/* Row 2: medium(4) + medium(4) + narrow(4) */
.wd-card--3 {
  grid-column: span 4;
}

.wd-card--4 {
  grid-column: span 4;
}

.wd-card--5 {
  grid-column: span 4;
}

/* Row 3: narrow(5) + wide(7) */
.wd-card--6 {
  grid-column: span 4;
}

/* ── Per-card accent colors ── */
.wd-card--1 .wd-card__bar {
  background: linear-gradient(90deg, var(--green), transparent);
}

.wd-card--2 .wd-card__bar {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.wd-card--3 .wd-card__bar {
  background: linear-gradient(90deg, #5b8def, transparent);
}

.wd-card--4 .wd-card__bar {
  background: linear-gradient(90deg, var(--red), transparent);
}

.wd-card--5 .wd-card__bar {
  background: linear-gradient(90deg, #b45cff, transparent);
}

.wd-card--6 .wd-card__bar {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.wd-card--1 .wd-card__tag {
  color: var(--green);
  background: rgba(34, 255, 136, 0.1);
  border: 1px solid rgba(34, 255, 136, 0.2);
}

.wd-card--2 .wd-card__tag {
  color: var(--gold);
  background: rgba(230, 156, 67, 0.1);
  border: 1px solid rgba(230, 156, 67, 0.2);
}

.wd-card--3 .wd-card__tag {
  color: #5b8def;
  background: rgba(91, 141, 239, 0.1);
  border: 1px solid rgba(91, 141, 239, 0.2);
}

.wd-card--4 .wd-card__tag {
  color: var(--red);
  background: rgba(230, 34, 34, 0.1);
  border: 1px solid rgba(230, 34, 34, 0.2);
}

.wd-card--5 .wd-card__tag {
  color: #b45cff;
  background: rgba(180, 92, 255, 0.1);
  border: 1px solid rgba(180, 92, 255, 0.2);
}

.wd-card--6 .wd-card__tag {
  color: var(--gold);
  background: rgba(230, 156, 67, 0.1);
  border: 1px solid rgba(230, 156, 67, 0.2);
}

.wd-card--1 .wd-card__icon {
  background: rgba(34, 255, 136, 0.12);
}

.wd-card--2 .wd-card__icon {
  background: rgba(230, 156, 67, 0.12);
}

.wd-card--3 .wd-card__icon {
  background: rgba(91, 141, 239, 0.12);
}

.wd-card--4 .wd-card__icon {
  background: rgba(230, 34, 34, 0.12);
}

.wd-card--5 .wd-card__icon {
  background: rgba(180, 92, 255, 0.12);
}

.wd-card--6 .wd-card__icon {
  background: rgba(230, 156, 67, 0.12);
}

/* ══════════════ CTA ══════════════ */
.wd-cta {
  text-align: center;
  margin-top: 56px;
  position: relative;
  z-index: 2;
}

.wd-cta__btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  background: linear-gradient(135deg, #e62222 0%, #a80000 100%);
  border-radius: 14px;
  padding: 18px 56px;
  transition: transform 0.25s, box-shadow 0.25s;
  animation: cta-glow 3s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.wd-cta__btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
}

@keyframes cta-glow {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(230, 34, 34, .4), 0 8px 30px rgba(200, 0, 0, .35)
  }

  50% {
    box-shadow: 0 0 0 10px rgba(230, 34, 34, 0), 0 8px 30px rgba(200, 0, 0, .55)
  }
}

.wd-cta__btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 50px rgba(200, 0, 0, 0.5);
  animation: none;
}

.wd-cta__main {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--white);
  letter-spacing: 0.02em;
}

.wd-cta__sub {
  font-size: 0.8rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 5px;
  font-weight: 500;
}

/* ══════════════ EMOJI SVG ICONS ══════════════ */
/* Using emoji inside icon divs for simplicity */

/* ══════════════ RESPONSIVE ══════════════ */
@media (max-width: 1024px) {
  .wd-bento {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 210px;
  }

  .wd-card--1 {
    grid-column: span 3;
  }

  .wd-card--2 {
    grid-column: span 3;
  }

  .wd-card--3 {
    grid-column: span 3;
  }

  .wd-card--4 {
    grid-column: span 3;
  }

  .wd-card--5 {
    grid-column: span 3;
  }

  .wd-card--6 {
    grid-column: span 3;
  }

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

@media (max-width: 640px) {
  .wd-bento {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 190px;
    gap: 12px;
  }

  .wd-card--1,
  .wd-card--2 {
    grid-column: span 2;
  }

  .wd-card--3,
  .wd-card--4,
  .wd-card--5,
  .wd-card--6 {
    grid-column: span 1;
  }

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

  .wd-cta__btn {
    padding: 16px 28px;
  }
}

/* ══════════════ AOS MANUAL ══════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(.34, 1.1, .64, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.expert-section {
  padding: 80px 0;
  background: #0E1133;
  color: #fff;
}

.expert-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.expert-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
}

.expert-title span {
  color: #e69c43;
}

.expert-content p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 16px;
  font-size: 15px;
}

/* HIGHLIGHTS */
.expert-highlights {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.expert-highlights div {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  transition: 0.3s;
}

.expert-highlights div:hover {
  background: rgba(230, 156, 67, 0.1);
  border-color: #e69c43;
  transform: translateY(-3px);
}

/* RIGHT PROFILE */
.expert-profile {
  text-align: center;
}

.expert-img {
  width: 220px;
  height: 220px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #ccc url('./images/ajay.png') center/cover no-repeat;
  border: 6px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 40px rgba(230, 156, 67, 0.3);
}

.expert-profile h3 {
  font-size: 22px;
  font-weight: 700;
}

.role {
  color: #e69c43;
  font-weight: 600;
  margin: 6px 0;
}

.sub-role {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .expert-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .expert-highlights {
    grid-template-columns: 1fr;
  }
}


/* ══════════════ SECTION ══════════════ */
.wr-section {
  padding: 100px 24px 120px;
  position: relative;
  overflow: hidden;
}

/* Radial grid */
.wr-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.016) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}

/* Decorative ring */
.wr-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(34, 255, 136, 0.05);
  pointer-events: none;
}

.wr-ring--1 {
  width: 700px;
  height: 700px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.wr-ring--2 {
  width: 1000px;
  height: 1000px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(230, 156, 67, 0.04);
}

.wr-ring--3 {
  width: 1300px;
  height: 1300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(255, 255, 255, 0.025);
}

/* Blobs */
.wr-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
}

.wr-blob--1 {
  width: 500px;
  height: 500px;
  background: rgba(34, 255, 136, 0.065);
  top: -60px;
  left: -80px;
}

.wr-blob--2 {
  width: 500px;
  height: 500px;
  background: rgba(230, 156, 67, 0.065);
  bottom: 0;
  right: -80px;
}

.wr-blob--3 {
  width: 350px;
  height: 350px;
  background: rgba(230, 34, 34, 0.04);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ══════════════ HEADER ══════════════ */
.wr-header {
  text-align: center;
  margin: 0 auto 80px;
  position: relative;
  z-index: 2;
}

.wr-header__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  background: rgba(230, 156, 67, 0.1);
  border: 1px solid rgba(230, 156, 67, 0.22);
  border-radius: 100px;
  padding: 5px 18px;
  margin-bottom: 20px;
}

.wr-header__tag span {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 2s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .3;
    transform: scale(.6)
  }
}

.wr-header__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 16px;
}

.wr-header__title em {
  font-style: normal;
  color: var(--green);
  text-shadow: 0 0 40px rgba(34, 255, 136, 0.4);
}

.wr-header__sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* ══════════════ CARDS LAYOUT ══════════════ */
.wr-grid {
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

/* ── Individual card ── */
.wr-card {
  position: relative;
  padding: 44px 36px 40px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  transition: z-index 0s;
  cursor: default;
}

/* Remove double borders in grid */
.wr-card:not(:nth-child(3n+1)) {
  border-left: none;
}

.wr-card:nth-child(n+4) {
  border-top: none;
}

/* Corner radius only on outer edges */
.wr-card:nth-child(1) {
  border-radius: 24px 0 0 0;
}

.wr-card:nth-child(3) {
  border-radius: 0 24px 0 0;
}

.wr-card:nth-child(4) {
  border-radius: 0 0 0 24px;
}

.wr-card:nth-child(6) {
  border-radius: 0 0 24px 0;
}

/* Hover fill background */
.wr-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.wr-card:hover::before {
  opacity: 1;
}

/* Per-card accent colors */
.wr-card--1::before {
  background: radial-gradient(circle at 20% 80%, rgba(34, 255, 136, 0.07) 0%, transparent 60%);
}

.wr-card--2::before {
  background: radial-gradient(circle at 50% 80%, rgba(230, 156, 67, 0.08) 0%, transparent 60%);
}

.wr-card--3::before {
  background: radial-gradient(circle at 80% 80%, rgba(91, 141, 239, 0.08) 0%, transparent 60%);
}

.wr-card--4::before {
  background: radial-gradient(circle at 20% 20%, rgba(230, 34, 34, 0.07) 0%, transparent 60%);
}

.wr-card--5::before {
  background: radial-gradient(circle at 50% 20%, rgba(180, 92, 255, 0.08) 0%, transparent 60%);
}

.wr-card--6::before {
  background: radial-gradient(circle at 80% 20%, rgba(34, 220, 255, 0.07) 0%, transparent 60%);
}

/* Hover border glow */
.wr-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1.5px solid transparent;
  transition: border-color 0.4s ease;
  pointer-events: none;
}

.wr-card--1:hover::after {
  border-color: rgba(34, 255, 136, 0.2);
}

.wr-card--2:hover::after {
  border-color: rgba(230, 156, 67, 0.2);
}

.wr-card--3:hover::after {
  border-color: rgba(91, 141, 239, 0.2);
}

.wr-card--4:hover::after {
  border-color: rgba(230, 34, 34, 0.2);
}

.wr-card--5:hover::after {
  border-color: rgba(180, 92, 255, 0.2);
}

.wr-card--6:hover::after {
  border-color: rgba(34, 220, 255, 0.2);
}

/* ── Icon box ── */
.wr-card__iconwrap {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.7rem;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(.34, 1.4, .64, 1);
}

.wr-card:hover .wr-card__iconwrap {
  transform: scale(1.12) rotate(-4deg);
}

.wr-card--1 .wr-card__iconwrap {
  background: rgba(34, 255, 136, 0.1);
  box-shadow: 0 0 0 1px rgba(34, 255, 136, 0.2);
}

.wr-card--2 .wr-card__iconwrap {
  background: rgba(230, 156, 67, 0.1);
  box-shadow: 0 0 0 1px rgba(230, 156, 67, 0.2);
}

.wr-card--3 .wr-card__iconwrap {
  background: rgba(91, 141, 239, 0.1);
  box-shadow: 0 0 0 1px rgba(91, 141, 239, 0.2);
}

.wr-card--4 .wr-card__iconwrap {
  background: rgba(230, 34, 34, 0.1);
  box-shadow: 0 0 0 1px rgba(230, 34, 34, 0.2);
}

.wr-card--5 .wr-card__iconwrap {
  background: rgba(180, 92, 255, 0.1);
  box-shadow: 0 0 0 1px rgba(180, 92, 255, 0.2);
}

.wr-card--6 .wr-card__iconwrap {
  background: rgba(34, 220, 255, 0.1);
  box-shadow: 0 0 0 1px rgba(34, 220, 255, 0.2);
}

/* Pulse ring on icon */
.wr-card__iconwrap::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 22px;
  border: 1px solid transparent;
  transition: border-color 0.35s, transform 0.35s;
}

.wr-card--1:hover .wr-card__iconwrap::after {
  border-color: rgba(34, 255, 136, 0.2);
  transform: scale(1.08);
}

.wr-card--2:hover .wr-card__iconwrap::after {
  border-color: rgba(230, 156, 67, 0.2);
  transform: scale(1.08);
}

.wr-card--3:hover .wr-card__iconwrap::after {
  border-color: rgba(91, 141, 239, 0.2);
  transform: scale(1.08);
}

.wr-card--4:hover .wr-card__iconwrap::after {
  border-color: rgba(230, 34, 34, 0.2);
  transform: scale(1.08);
}

.wr-card--5:hover .wr-card__iconwrap::after {
  border-color: rgba(180, 92, 255, 0.2);
  transform: scale(1.08);
}

.wr-card--6:hover .wr-card__iconwrap::after {
  border-color: rgba(34, 220, 255, 0.2);
  transform: scale(1.08);
}

/* ── Number ── */
.wr-card__num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: 'Syne', sans-serif;
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
  opacity: 0.04;
  color: var(--white);
  pointer-events: none;
  transition: opacity 0.35s;
}

.wr-card:hover .wr-card__num {
  opacity: 0.07;
}

/* ── Tag ── */
.wr-card__tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 100px;
  padding: 3px 12px;
  margin-bottom: 12px;
}

.wr-card--1 .wr-card__tag {
  color: var(--green);
  background: rgba(34, 255, 136, 0.1);
  border: 1px solid rgba(34, 255, 136, 0.2);
}

.wr-card--2 .wr-card__tag {
  color: var(--gold);
  background: rgba(230, 156, 67, 0.1);
  border: 1px solid rgba(230, 156, 67, 0.2);
}

.wr-card--3 .wr-card__tag {
  color: #5b8def;
  background: rgba(91, 141, 239, 0.1);
  border: 1px solid rgba(91, 141, 239, 0.2);
}

.wr-card--4 .wr-card__tag {
  color: #ff6b6b;
  background: rgba(230, 34, 34, 0.1);
  border: 1px solid rgba(230, 34, 34, 0.2);
}

.wr-card--5 .wr-card__tag {
  color: #b45cff;
  background: rgba(180, 92, 255, 0.1);
  border: 1px solid rgba(180, 92, 255, 0.2);
}

.wr-card--6 .wr-card__tag {
  color: #22dcff;
  background: rgba(34, 220, 255, 0.1);
  border: 1px solid rgba(34, 220, 255, 0.2);
}

/* ── Title ── */
.wr-card__title {
  font-family: 'Syne', sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 12px;
  color: var(--white);
  transition: color 0.3s;
}

.wr-card--1:hover .wr-card__title {
  color: var(--green);
}

.wr-card--2:hover .wr-card__title {
  color: var(--gold);
}

.wr-card--3:hover .wr-card__title {
  color: #5b8def;
}

.wr-card--4:hover .wr-card__title {
  color: #ff6b6b;
}

.wr-card--5:hover .wr-card__title {
  color: #b45cff;
}

.wr-card--6:hover .wr-card__title {
  color: #22dcff;
}

/* ── Description ── */
.wr-card__desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.68;
}

/* ── Bottom accent bar ── */
.wr-card__bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(.34, 1.1, .64, 1);
  border-radius: 0 0 2px 2px;
}

.wr-card:hover .wr-card__bar {
  transform: scaleX(1);
}

.wr-card--1 .wr-card__bar {
  background: linear-gradient(90deg, var(--green), transparent);
}

.wr-card--2 .wr-card__bar {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.wr-card--3 .wr-card__bar {
  background: linear-gradient(90deg, #5b8def, transparent);
}

.wr-card--4 .wr-card__bar {
  background: linear-gradient(90deg, var(--red), transparent);
}

.wr-card--5 .wr-card__bar {
  background: linear-gradient(90deg, #b45cff, transparent);
}

.wr-card--6 .wr-card__bar {
  background: linear-gradient(90deg, #22dcff, transparent);
}

/* ══════════════ DIVIDER CENTER BADGE ══════════════ */
.wr-center-badge {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 36px;
}

.wr-center-badge__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 255, 136, 0.2), transparent);
}

.wr-center-badge__pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(34, 255, 136, 0.06);
  border: 1px solid rgba(34, 255, 136, 0.15);
  border-radius: 100px;
  padding: 8px 22px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.wr-center-badge__pill svg {
  width: 14px;
  height: 14px;
  opacity: 0.8;
}

/* ══════════════ CTA ══════════════ */
.wr-cta {
  text-align: center;
  margin-top: 56px;
  position: relative;
  z-index: 2;
}

.wr-cta__inner {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.wr-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  background: linear-gradient(135deg, #e62222, #a00000);
  border-radius: 14px;
  padding: 18px 52px;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--white);
  transition: transform 0.25s, box-shadow 0.25s;
  animation: cta-pulse 3s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.wr-cta__btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
}

@keyframes cta-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(230, 34, 34, .4), 0 8px 30px rgba(200, 0, 0, .35)
  }

  50% {
    box-shadow: 0 0 0 12px rgba(230, 34, 34, 0), 0 8px 30px rgba(200, 0, 0, .55)
  }
}

.wr-cta__btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 50px rgba(200, 0, 0, 0.45);
  animation: none;
}

.wr-cta__btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.wr-cta__sub {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--muted);
  font-weight: 500;
}

.wr-cta__sub strong {
  color: var(--white);
  font-style: normal;
}

/* ══════════════ REVEAL ANIMATION ══════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(.34, 1.1, .64, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.wr-card[data-reveal] {
  transform: translateY(20px) scale(0.97);
}

.wr-card[data-reveal].is-visible {
  transform: translateY(0) scale(1);
}

/* ══════════════ RESPONSIVE ══════════════ */
@media (max-width: 900px) {
  .wr-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wr-card:nth-child(1) {
    border-radius: 24px 0 0 0;
  }

  .wr-card:nth-child(2) {
    border-radius: 0 24px 0 0;
  }

  .wr-card:nth-child(5) {
    border-radius: 0 0 0 24px;
  }

  .wr-card:nth-child(6) {
    border-radius: 0 0 24px 0;
  }

  .wr-card:nth-child(3) {
    border-radius: 0;
  }

  .wr-card:nth-child(4) {
    border-radius: 0;
  }

  .wr-card:not(:nth-child(2n+1)) {
    border-left: none;
  }

  .wr-card:nth-child(n+3) {
    border-top: none;
  }

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

@media (max-width: 580px) {
  .wr-grid {
    grid-template-columns: 1fr;
  }

  .wr-card {
    border-radius: 0 !important;
    border-left: none;
  }

  .wr-card:first-child {
    border-radius: 20px 20px 0 0 !important;
  }

  .wr-card:last-child {
    border-radius: 0 0 20px 20px !important;
  }

  .wr-card:not(:first-child) {
    border-top: none;
  }

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

  .wr-cta__btn {
    padding: 16px 28px;
  }
}


.support-section {
  padding: 80px 0;
  background: #ffffff;
  text-align: center;
}

.support-title {
  font-size: 34px;
  font-weight: 800;
  color: #c20000;
  margin-bottom: 10px;
}

.support-sub {
  color: #444;
  margin-bottom: 50px;
  font-size: 16px;
}

/* GRID */
.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

/* CARD */
.support-card {
  background: #fff;
  border-radius: 14px;
  padding: 15px;
  transition: 0.3s ease;
}

.support-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.support-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #111;
}

.support-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* HOVER EFFECT */
.support-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* CTA */
.support-cta {
  margin-top: 40px;
}

.support-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ff1a1a, #cc0000);
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.support-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 0, 0, 0.3);
}

.support-cta p {
  margin-top: 10px;
  font-size: 14px;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .support-grid {
    grid-template-columns: 1fr;
  }
}


.risk-section {
  background: #000;
  color: #fff;
  padding: 80px 0;
}

.risk-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 50px;
  align-items: center;
}

/* TEXT */
.risk-title {
  color: #00ff66;
  font-size: 34px;
  font-weight: 800;
}

.risk-sub {
  color: #ccc;
  margin-bottom: 20px;
}

.risk-content p {
  color: #bbb;
  margin-bottom: 12px;
  line-height: 1.6;
}

/* FEATURES */
.risk-features {
  margin-top: 25px;
  background: #3f5fa6;
  padding: 20px;
  border-radius: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  font-size: 13px;
  text-align: center;
}

.risk-features div {
  padding: 6px;
}

/* BADGE */
.risk-badge {
  display: flex;
  justify-content: center;
}

.badge {
  background: linear-gradient(135deg, #ffd54d, #c89b1f);
  color: #000;
  padding: 30px 20px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  width: 220px;
}

.badge h1 {
  font-size: 48px;
  margin: 0;
}

.badge p {
  font-weight: 700;
}

.badge span {
  display: block;
  background: red;
  color: #fff;
  padding: 6px;
  margin-top: 10px;
  border-radius: 6px;
  font-weight: 600;
}

/* SECOND PART */
.doubt-section {
  margin-top: 80px;
  text-align: center;
}

.doubt-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.doubt-grid {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 40px;
  align-items: center;
}

.doubt-text {
  text-align: left;
  color: #bbb;
  line-height: 1.7;
}

.doubt-text strong {
  color: #fff;
}

.doubt-img img {
  width: 100%;
  max-width: 260px;
}

/* CTA */
.risk-cta {
  margin-top: 40px;
}

.risk-btn {
  display: inline-block;
  background: red;
  padding: 14px 28px;
  color: #fff;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.risk-btn:hover {
  transform: scale(1.05);
}

.risk-cta p {
  margin-top: 10px;
  color: #ccc;
}

/* RESPONSIVE */
@media (max-width: 992px) {

  .risk-grid,
  .doubt-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .doubt-text {
    text-align: center;
  }

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

.rf-section {
  padding: 100px 24px 110px;
  background: linear-gradient(170deg, #0a0d28 0%, var(--navy) 60%, #0e1133 100%);
}

.rf-blob-1 {
  width: 550px;
  height: 550px;
  background: rgba(34, 255, 136, 0.06);
  top: -80px;
  left: -100px;
}

.rf-blob-2 {
  width: 450px;
  height: 450px;
  background: rgba(230, 156, 67, 0.07);
  top: 60px;
  right: -80px;
}

.rf-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
  position: relative;
  z-index: 2;
}

.rf-header__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--green);
  background: rgba(34, 255, 136, 0.08);
  border: 1px solid rgba(34, 255, 136, 0.2);
  border-radius: 100px;
  padding: 5px 18px;
  margin-bottom: 20px;
}

.rf-header__tag span {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: blink 2s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .3;
    transform: scale(.6)
  }
}

.rf-header__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 12px;
}

.rf-header__title em {
  font-style: normal;
  color: var(--green);
  text-shadow: 0 0 40px rgba(34, 255, 136, 0.4);
}

.rf-header__sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.rf-body {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: center;
}

.rf-left__intro {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  margin-bottom: 18px;
}

.rf-left__intro strong {
  color: var(--white);
}

.rf-left__note {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
  padding-left: 16px;
  border-left: 2px solid rgba(34, 255, 136, 0.3);
}

.rf-enroll {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  background: linear-gradient(135deg, var(--navy-card), #0e1a5c);
  border: 1.5px solid rgba(34, 255, 136, 0.25);
  border-radius: 12px;
  padding: 14px 30px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 36px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.rf-enroll:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(34, 255, 136, 0.45);
}

.rf-enroll svg {
  width: 16px;
  height: 16px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rf-pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.rf-pill {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.rf-pill:hover {
  background: rgba(34, 255, 136, 0.06);
  border-color: rgba(34, 255, 136, 0.2);
  transform: translateY(-2px);
}

.rf-pill__icon {
  font-size: 1rem;
  flex-shrink: 0;
}

.rf-shield img,
.holding-left img {
  width: 100%;
}

/* ═══ SECTION 2: OBJECTION ═══ */
.ob-section {
  padding: 100px 24px 120px;
  background: linear-gradient(170deg, #0a0c24 0%, #0e1133 100%);
}

.ob-blob-1 {
  width: 500px;
  height: 500px;
  background: rgba(230, 34, 34, 0.05);
  top: -60px;
  right: -80px;
}

.ob-blob-2 {
  width: 500px;
  height: 500px;
  background: rgba(34, 255, 136, 0.04);
  bottom: 0;
  left: -80px;
}

.ob-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 72px;
  position: relative;
  z-index: 2;
}

.ob-header__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}

.ob-header__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.9rem, 4.5vw, 2.9rem);
  font-weight: 800;
  line-height: 1.15;
}

.ob-header__title em {
  font-style: normal;
  background: linear-gradient(90deg, #ff6b6b, var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ob-body {
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Pain/Gain cards */
.ob-vs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ob-pain {
  background: rgba(230, 34, 34, 0.06);
  border: 1px solid rgba(230, 34, 34, 0.2);
  border-radius: 16px;
  padding: 24px 26px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.ob-pain:hover {
  border-color: rgba(230, 34, 34, 0.4);
  transform: translateX(4px);
}

.ob-pain::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--red), transparent);
  border-radius: 16px 0 0 16px;
}

.ob-pain__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.ob-pain__icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(230, 34, 34, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.ob-pain__title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: rgba(255, 100, 100, 0.9);
}

.ob-pain__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ob-pain__list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
}

.ob-pain__list li::before {
  content: '✕';
  color: var(--red);
  font-size: 0.75rem;
  margin-top: 2px;
  flex-shrink: 0;
  font-weight: 700;
}

.ob-vs-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 4px;
}

.ob-vs-divider__line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
}

.ob-vs-divider__badge {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 4px 14px;
}

.ob-gain {
  background: rgba(34, 255, 136, 0.05);
  border: 1px solid rgba(34, 255, 136, 0.18);
  border-radius: 16px;
  padding: 24px 26px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.ob-gain:hover {
  border-color: rgba(34, 255, 136, 0.35);
  transform: translateX(4px);
}

.ob-gain::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--green), transparent);
  border-radius: 16px 0 0 16px;
}

.ob-gain__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.ob-gain__icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(34, 255, 136, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.ob-gain__title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--green);
}

.ob-gain__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ob-gain__list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.ob-gain__list li::before {
  content: '✓';
  color: var(--green);
  font-size: 0.8rem;
  margin-top: 2px;
  flex-shrink: 0;
  font-weight: 700;
}

/* Right persuasion */
.ob-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ob-pull {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 28px 26px;
  position: relative;
  overflow: hidden;
}

.ob-pull::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 16px;
  font-family: 'Syne', sans-serif;
  font-size: 5rem;
  font-weight: 800;
  color: rgba(34, 255, 136, 0.08);
  line-height: 1;
  pointer-events: none;
}

.ob-pull__text {
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.78;
  font-style: italic;
}

.ob-pull__text strong {
  color: var(--white);
  font-style: normal;
}

.ob-reality {
  background: rgba(230, 156, 67, 0.06);
  border: 1px solid rgba(230, 156, 67, 0.18);
  border-radius: 12px;
  padding: 18px 20px;
}

.ob-reality__title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ob-reality__line {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  padding-left: 12px;
  border-left: 2px solid rgba(230, 156, 67, 0.3);
  margin-bottom: 8px;
}

.ob-reality__line:last-child {
  margin-bottom: 0;
  color: var(--white);
  font-weight: 600;
}

.ob-reality__line em {
  font-style: normal;
  color: var(--green);
}

.ob-mini-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.ob-mini-trust__item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 16px 14px;
  text-align: center;
  transition: background 0.3s, border-color 0.3s;
}

.ob-mini-trust__item:hover {
  background: rgba(34, 255, 136, 0.04);
  border-color: rgba(34, 255, 136, 0.15);
}

.ob-mini-trust__val {
  font-family: 'Syne', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--green);
  text-shadow: 0 0 16px rgba(34, 255, 136, 0.35);
}

.ob-mini-trust__lbl {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.4;
}

/* CTA */
.ob-cta {
  text-align: center;
  position: relative;
  z-index: 2;
  margin-top: 56px;
}

.ob-cta__wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.ob-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  background: linear-gradient(135deg, #e62222, #a00000);
  border-radius: 14px;
  padding: 18px 56px;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--white);
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  animation: big-pulse 3s ease-in-out infinite;
}

.ob-cta__btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
}

@keyframes big-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(230, 34, 34, .45), 0 12px 36px rgba(200, 0, 0, .4)
  }

  50% {
    box-shadow: 0 0 0 14px rgba(230, 34, 34, 0), 0 12px 36px rgba(200, 0, 0, .6)
  }
}

.ob-cta__btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 24px 56px rgba(200, 0, 0, .5);
  animation: none;
}

.ob-cta__btn del {
  opacity: .6;
  font-weight: 400;
  margin-right: 2px;
}

.ob-cta__btn strong {
  font-size: 1.1em;
  letter-spacing: 0.06em;
}

.ob-cta__sub {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--muted);
}

.ob-cta__sub strong {
  color: var(--white);
  font-style: normal;
}

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.34, 1.1, .64, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media(max-width:900px) {
  .rf-body {
    grid-template-columns: 1fr;
  }

  .rf-shield {
    margin-top: 20px;
  }

  .ob-body {
    grid-template-columns: 1fr;
  }
}




.faq-section {
  padding: 100px 24px 120px;
  position: relative;
  overflow: hidden;
}

/* Grid texture */
.faq-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.016) 1px, transparent 1px);
  background-size: 54px 54px;
  pointer-events: none;
  z-index: 0;
}

/* Ambient blobs */
.faq-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  z-index: 0;
}

.faq-blob--1 {
  width: 500px;
  height: 500px;
  background: rgba(34, 255, 136, 0.06);
  top: -80px;
  left: -100px;
}

.faq-blob--2 {
  width: 500px;
  height: 500px;
  background: rgba(230, 156, 67, 0.06);
  bottom: 0;
  right: -100px;
}

.faq-blob--3 {
  width: 360px;
  height: 360px;
  background: rgba(230, 34, 34, 0.04);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ══════════════════════════════════════
       HEADER
    ══════════════════════════════════════ */
.faq-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
  position: relative;
  z-index: 2;
}

.faq-header__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  background: rgba(230, 156, 67, 0.1);
  border: 1px solid rgba(230, 156, 67, 0.22);
  border-radius: 100px;
  padding: 5px 18px;
  margin-bottom: 20px;
}

.faq-header__tag span {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 2s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .3;
    transform: scale(.6)
  }
}

.faq-header__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 14px;
}

.faq-header__title em {
  font-style: normal;
  color: var(--green);
  text-shadow: 0 0 40px rgba(34, 255, 136, 0.4);
}

.faq-header__sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* ══════════════════════════════════════
       ACCORDION WRAPPER
    ══════════════════════════════════════ */
.faq-wrap {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ══════════════════════════════════════
       SINGLE ACCORDION ITEM
    ══════════════════════════════════════ */
.faq-item {
  background: var(--navy-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Active state */
.faq-item.is-open {
  border-color: rgba(34, 255, 136, 0.22);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(34, 255, 136, 0.06);
}

/* ── Question trigger ── */
.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  text-align: left;
  position: relative;
}

/* Number badge */
.faq-trigger__num {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(34, 255, 136, 0.08);
  border: 1px solid rgba(34, 255, 136, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Syne', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green);
  transition: background 0.3s, border-color 0.3s;
}

.faq-item.is-open .faq-trigger__num {
  background: rgba(34, 255, 136, 0.18);
  border-color: rgba(34, 255, 136, 0.4);
}

/* Question text */
.faq-trigger__q {
  flex: 1;
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  transition: color 0.3s;
}

.faq-item.is-open .faq-trigger__q {
  color: var(--green);
}

/* Plus/minus icon */
.faq-trigger__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s, transform 0.4s cubic-bezier(.34, 1.3, .64, 1);
}

.faq-item.is-open .faq-trigger__icon {
  background: rgba(34, 255, 136, 0.12);
  border-color: rgba(34, 255, 136, 0.3);
  transform: rotate(45deg);
}

.faq-trigger__icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--muted);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  transition: stroke 0.3s;
}

.faq-item.is-open .faq-trigger__icon svg {
  stroke: var(--green);
}

/* ── Answer panel ── */
.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(.4, 0, .2, 1);
}

.faq-item.is-open .faq-panel {
  max-height: 300px;
}

.faq-panel__inner {
  padding: 0 24px 22px 72px;
  /* aligns with question text */
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Divider line */
.faq-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(34, 255, 136, 0.2), transparent);
  margin-bottom: 4px;
}

.faq-panel__text {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

/* Optional tag on some answers */
.faq-panel__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  background: rgba(230, 156, 67, 0.1);
  border: 1px solid rgba(230, 156, 67, 0.2);
  border-radius: 100px;
  padding: 3px 12px;
  width: fit-content;
}

/* ══════════════════════════════════════
       BOTTOM CTA
    ══════════════════════════════════════ */
.faq-cta {
  text-align: center;
  margin-top: 56px;
  position: relative;
  z-index: 2;
}

.faq-cta__question {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 20px;
  font-style: italic;
}

.faq-cta__question strong {
  color: var(--white);
  font-style: normal;
}

.faq-cta__btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  background: linear-gradient(135deg, #e62222, #a00000);
  border-radius: 14px;
  padding: 18px 52px;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--white);
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  animation: cta-pulse 3s ease-in-out infinite;
}

.faq-cta__btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
}

@keyframes cta-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(230, 34, 34, .4), 0 8px 30px rgba(200, 0, 0, .35)
  }

  50% {
    box-shadow: 0 0 0 12px rgba(230, 34, 34, 0), 0 8px 30px rgba(200, 0, 0, .55)
  }
}

.faq-cta__btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 50px rgba(200, 0, 0, 0.45);
  animation: none;
}

.faq-cta__main {
  display: block;
}

.faq-cta__main del {
  opacity: .6;
  font-weight: 400;
  margin-right: 3px;
}

.faq-cta__sub {
  font-size: 0.8rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 5px;
  font-weight: 500;
}

/* ══════════════════════════════════════
       REVEAL ANIMATION
    ══════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.34, 1.1, .64, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════ */
@media (max-width: 600px) {
  .faq-panel__inner {
    padding-left: 24px;
  }

  .faq-trigger {
    padding: 18px 18px;
    gap: 12px;
  }

  .faq-trigger__num {
    display: none;
  }
}

.copy_right {
  background-color: #000;
  padding: 10px 0;
}

.copy_right p {
  margin-bottom: 0;
  text-align: center;
  font-size: 16px;
}

.copy_right p span {
  color: #e69c43;
  font-weight: 700;
}

@media(max-width:575.98px) {
  .main_index {
    background-position: 86%;
  }

  .main_index::before {
    background: linear-gradient(90deg, #0E1133, #ffffff20);
  }

  .hero__sub {
    font-size: 31px;

  }

  .hero__headline {
    font-size: 32px;
  }

  .hero__headline br,
  .hero__sub br {
    display: none;
  }

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

  .cta_action .cta-btn__main {
    font-size: 18px;
  }

  .project-card .project-card__content {
    align-items: bottom;
    padding: 1.5rem;
  }

  .project-card {
    min-height: 300px;
    transform: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  }

  .project-card .project-card__desc {
    font-size: 0.95rem;
    max-width: 100%;
    margin-bottom: 1rem;
  }

  .project-card__thumb,
  .project-card__desc,
  .project-card__btn {
    display: block;
  }

  .wd-card--3,
  .wd-card--4,
  .wd-card--5,
  .wd-card--6 {
    grid-column: span 3;
  }

  .rf-pills {
    grid-template-columns: repeat(1, 1fr);
  }

  .ob-cta__btn {
    display: block;
  }
}



@media(min-width:576px) and (max-width:767.98px) {
  .main_index {
    background-position: 86%;
  }

  .main_index::before {
    background: linear-gradient(90deg, #0E1133, #ffffff20);
  }

  .hero__sub {
    font-size: 31px;

  }

  .hero__headline {
    font-size: 32px;
  }

  .hero__headline br,
  .hero__sub br {
    display: none;
  }

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

  .cta_action .cta-btn__main {
    font-size: 18px;
  }

  .project-card .project-card__content {
    align-items: bottom;
    padding: 1.5rem;
  }

  .project-card {
    min-height: 300px;
    transform: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  }

  .project-card .project-card__desc {
    font-size: 0.95rem;
    max-width: 100%;
    margin-bottom: 1rem;
  }

  .project-card__thumb,
  .project-card__desc,
  .project-card__btn {
    display: block;
  }

  .wd-card--3,
  .wd-card--4,
  .wd-card--5,
  .wd-card--6 {
    grid-column: span 3;
  }

  .rf-pills {
    grid-template-columns: repeat(1, 1fr);
  }

  .ob-cta__btn {
    display: block;
  }

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

  .video-card iframe {
    height: 300px;
  }

  .project-card__btn {
    margin: 0 auto;
  }

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

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

  .support-card img {
    width: 100%;
    height: auto;
  }
}

@media(min-width:768px) and (max-width:991.98px) {
  .main_index {
    background-position: 86%;
  }

  .main_index::before {
    background: linear-gradient(90deg, #0E1133, #ffffff20);
  }

  .hero__sub {
    font-size: 31px;

  }

  .hero__headline {
    font-size: 32px;
  }

  .hero__headline br,
  .hero__sub br {
    display: none;
  }

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

  .cta_action .cta-btn__main {
    font-size: 18px;
  }

  .project-card .project-card__content {
    align-items: bottom;
    padding: 1.5rem;
  }

  .project-card {
    min-height: 300px;
    transform: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  }

  .project-card .project-card__desc {
    font-size: 0.95rem;
    max-width: 100%;
    margin-bottom: 1rem;
  }

  .project-card__thumb,
  .project-card__desc,
  .project-card__btn {
    display: block;
  }

  .wd-card--3,
  .wd-card--4,
  .wd-card--5,
  .wd-card--6 {
    grid-column: span 3;
  }

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

  .ob-cta__btn {
    display: block;
  }

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

  .video-card iframe {
    height: 300px;
  }

  .project-card__btn {
    margin: 0 auto;
  }

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

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

  .support-card img {
    width: 100%;
    height: auto;
  }

  .head {
    display: block;
  }

  .head h2 {
    font-size: 32px;
    font-weight: 900;
  }

  .track {
    display: block;
  }

  .project-card__title {
    transform: inherit;
    writing-mode: inherit
  }
}

@media(min-width:992px) and (max-width:1199.98px) {
  .main_index {
    background-position: 86%;
  }

  .main_index::before {
    background: linear-gradient(90deg, #0E1133, #ffffff20);
  }

  .hero__sub {
    font-size: 31px;

  }

  .hero__headline {
    font-size: 32px;
  }

  .hero__headline br,
  .hero__sub br {
    display: none;
  }

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

  .cta_action .cta-btn__main {
    font-size: 18px;
  }

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

  .ob-cta__btn {
    display: block;
  }
.wd-card--2,.wd-card--3,.wd-card--6{
        grid-column: span 2;
    }
        .wd-card--1,.wd-card--4 ,.wd-card--5{
        grid-column: span 1;
    }

  .project-card__btn {
    margin: 0 auto;
  }


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

  .support-card img {
    width: 100%;
    height: auto;
  }

  .head {
    display: block;
  }

  .head h2 {
    font-size: 32px;
    font-weight: 900;
  }

}