/* ============================================================
   FIN PILOT — Hero Section
   Cinematic, asymmetric, luxurious — not a template split.
   ============================================================ */

.hero {
  --hero-parallax-x: 0px;
  --hero-parallax-y: 0px;

  position: relative;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: #071528;
  color: var(--color-white);
  padding-top: calc(var(--header-height) + var(--space-8));
  padding-bottom: var(--space-24);
}

/* Remove old demo canvas dependency */
.page-main.nav-demo-canvas {
  min-height: 0;
  background: none;
}

/* ---- Animated gradient mesh ---- */

.hero__mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 15% 20%, rgba(18, 58, 111, 0.9) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 30%, rgba(31, 182, 166, 0.28) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 90%, rgba(12, 42, 82, 0.95) 0%, transparent 55%),
    linear-gradient(165deg, #061221 0%, #0C2A52 42%, #0A3D4A 100%);
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  will-change: transform;
  animation: mesh-drift 18s var(--ease-in-out) infinite alternate;
}

.hero__blob--1 {
  --parallax-strength: 0.8;
  width: min(55vw, 560px);
  height: min(55vw, 560px);
  top: -12%;
  left: -8%;
  background: rgba(31, 182, 166, 0.45);
  animation-duration: 16s;
}

.hero__blob--2 {
  --parallax-strength: 1.2;
  width: min(45vw, 480px);
  height: min(45vw, 480px);
  top: 10%;
  right: -10%;
  background: rgba(48, 213, 200, 0.28);
  animation-duration: 22s;
  animation-delay: -4s;
}

.hero__blob--3 {
  --parallax-strength: 0.6;
  width: min(40vw, 420px);
  height: min(40vw, 420px);
  bottom: 5%;
  left: 25%;
  background: rgba(18, 58, 111, 0.7);
  animation-duration: 20s;
  animation-delay: -8s;
}

.hero__blob--4 {
  --parallax-strength: 1;
  width: min(30vw, 320px);
  height: min(30vw, 320px);
  top: 45%;
  right: 30%;
  background: rgba(26, 74, 133, 0.55);
  animation-duration: 14s;
  animation-delay: -2s;
}

@keyframes mesh-drift {
  0% {
    transform: translate3d(
      calc(var(--hero-parallax-x) * var(--parallax-strength, 1)),
      calc(var(--hero-parallax-y) * var(--parallax-strength, 1)),
      0
    ) scale(1);
  }
  100% {
    transform: translate3d(
      calc(var(--hero-parallax-x) * var(--parallax-strength, 1) + 40px),
      calc(var(--hero-parallax-y) * var(--parallax-strength, 1) - 30px),
      0
    ) scale(1.12);
  }
}

/* Soft perspective grid */
.hero__grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 70% 40%, black 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 70% 40%, black 10%, transparent 70%);
  pointer-events: none;
  opacity: 0.55;
}

/* Diagonal light beam */
.hero__beam {
  position: absolute;
  z-index: 1;
  top: -20%;
  right: 5%;
  width: 45%;
  height: 140%;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(48, 213, 200, 0.07) 48%,
    rgba(255, 255, 255, 0.04) 50%,
    rgba(48, 213, 200, 0.06) 52%,
    transparent 70%
  );
  transform: rotate(-12deg);
  pointer-events: none;
  animation: beam-pulse 8s var(--ease-in-out) infinite;
}

@keyframes beam-pulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

/* Particles canvas */
.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* ---- Composition ---- */

.hero__inner {
  position: relative;
  z-index: 3;
  display: grid;
  gap: var(--space-12);
  align-items: center;
  width: 100%;
}

@media (min-width: 992px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: var(--space-8);
    min-height: calc(100vh - var(--header-height) - 6rem);
    min-height: calc(100dvh - var(--header-height) - 6rem);
  }
}

/* ---- Left copy ---- */

.hero__copy {
  position: relative;
  max-width: 36rem;
  z-index: 4;
}

.hero__heading {
  margin-bottom: var(--space-5);
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.35rem + 2.8vw, 3.65rem);
  font-weight: var(--fw-bold);
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: #FFFFFF;
}

.hero__heading em {
  font-style: normal;
  background: linear-gradient(120deg, #30D5C8 0%, #7EE8DE 45%, #FFFFFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__sub {
  margin-bottom: var(--space-8);
  max-width: 38ch;
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
  color: rgba(255, 255, 255, 0.68);
}

/* CTAs */
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.btn--hero-primary {
  min-height: 52px;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #1FB6A6 0%, #30D5C8 100%);
  color: var(--color-navy-deep);
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  box-shadow:
    0 8px 32px rgba(31, 182, 166, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.btn--hero-primary:hover {
  box-shadow:
    0 12px 40px rgba(48, 213, 200, 0.55),
    0 0 32px var(--color-teal-glow);
  transform: translateY(-2px);
}

.btn--hero-ghost {
  min-height: 52px;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.btn--hero-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(48, 213, 200, 0.5);
  box-shadow: 0 0 24px rgba(48, 213, 200, 0.2);
  transform: translateY(-2px);
}

/* Trust glass rail */
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4) var(--space-5);
  padding: var(--space-4) var(--space-5);
  margin-bottom: var(--space-5);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.2),
    0 1px 0 rgba(255, 255, 255, 0.1) inset;
}

.hero__trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.hero__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.15rem;
}

.hero__stars svg {
  width: 12px;
  height: 12px;
  fill: #F5C542;
}

.hero__trust-value {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  color: #FFFFFF;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.hero__trust-label {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
}

.hero__trust-divider {
  width: 1px;
  height: 2.25rem;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.25), transparent);
}

/* Badges */
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.hero__badge {
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ---- Right stage (orbital) ---- */

.hero__stage {
  position: relative;
  justify-self: center;
  width: min(100%, 520px);
  aspect-ratio: 1;
  z-index: 3;
}

@media (min-width: 992px) {
  .hero__stage {
    width: min(100%, 560px);
    justify-self: end;
  }
}

.hero__orbit {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 1px solid rgba(48, 213, 200, 0.15);
  pointer-events: none;
}

.hero__orbit--outer {
  inset: 0;
  border-color: rgba(255, 255, 255, 0.08);
  animation: orbit-spin 48s linear infinite;
}

.hero__orbit--outer::before,
.hero__orbit--outer::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-teal-bright);
  box-shadow: 0 0 16px var(--color-teal-glow);
}

.hero__orbit--outer::before {
  top: 12%;
  left: 18%;
}

.hero__orbit--outer::after {
  bottom: 20%;
  right: 10%;
  background: #FFFFFF;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
  width: 5px;
  height: 5px;
}

.hero__orbit--inner {
  inset: 14%;
  border-style: dashed;
  border-color: rgba(31, 182, 166, 0.22);
  animation: orbit-spin 36s linear infinite reverse;
}

@keyframes orbit-spin {
  to { transform: rotate(360deg); }
}

/* Core illustration */
.hero__core {
  position: absolute;
  inset: 18%;
  display: grid;
  place-items: center;
  transform: translate3d(var(--px, 0px), var(--py, 0px), 0);
  will-change: transform;
}

.hero__core-glow {
  position: absolute;
  inset: 5%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(48, 213, 200, 0.35) 0%, transparent 70%);
  filter: blur(20px);
  animation: core-breathe 5s var(--ease-in-out) infinite;
}

@keyframes core-breathe {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

.hero__illustration {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 35%, rgba(255, 255, 255, 0.12) 0%, transparent 45%),
    rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(48, 213, 200, 0.15) inset,
    0 0 80px rgba(31, 182, 166, 0.2);
  overflow: hidden;
}

.hero__illus-svg {
  width: 88%;
  height: auto;
  animation: float-gentle 6s var(--ease-in-out) infinite;
}

.hero__illus-caption {
  position: absolute;
  bottom: 14%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
}

@keyframes float-gentle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Floating glass cards */
.hero-float {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  min-width: 148px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.25),
    0 1px 0 rgba(255, 255, 255, 0.15) inset;
  --px: 0px;
  --py: 0px;
  will-change: transform;
  animation: float-card 5.5s var(--ease-in-out) infinite;
}

.hero-float__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-md);
  background: rgba(31, 182, 166, 0.2);
  color: var(--color-teal-bright);
  box-shadow: 0 0 20px rgba(48, 213, 200, 0.25);
}

.hero-float__icon svg {
  width: 18px;
  height: 18px;
}

.hero-float__label {
  font-size: 0.65rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.2;
}

.hero-float__value {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: var(--fw-semibold);
  color: #FFFFFF;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

/* Orbital positions — asymmetric, not a neat circle of cards */
.hero-float--chart {
  top: 4%;
  right: 2%;
  animation-delay: 0s;
}

.hero-float--shield {
  top: 28%;
  left: -4%;
  animation-delay: -1.2s;
}

.hero-float--coins {
  bottom: 22%;
  right: -6%;
  animation-delay: -2.4s;
}

.hero-float--family {
  bottom: 6%;
  left: 8%;
  animation-delay: -0.8s;
}

.hero-float--invest {
  top: 52%;
  right: 8%;
  animation-delay: -3.1s;
}

@keyframes float-card {
  0%, 100% { transform: translate3d(var(--px), var(--py), 0); }
  50% { transform: translate3d(var(--px), calc(var(--py) - 12px), 0); }
}

/* Parallax offset vars set by home.js */
.hero [data-parallax] {
  --px: 0px;
  --py: 0px;
}

/* ---- Wave divider ---- */

.hero__wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 4;
  line-height: 0;
  pointer-events: none;
}

.hero__wave svg {
  display: block;
  width: 100%;
  height: clamp(64px, 10vw, 120px);
}

.hero__wave-path--back {
  fill: rgba(245, 248, 252, 0.35);
  animation: wave-shift 10s var(--ease-in-out) infinite alternate;
}

.hero__wave-path--front {
  fill: var(--color-soft-gray);
}

@keyframes wave-shift {
  from { transform: translateX(0); }
  to { transform: translateX(-2%); }
}

/* ---- Entrance ---- */

.hero-enter {
  opacity: 0;
  transform: translateY(28px);
  animation: hero-rise 0.9s var(--ease-out) forwards;
}

.hero-enter--d1 { animation-delay: 0.1s; }
.hero-enter--d2 { animation-delay: 0.2s; }
.hero-enter--d3 { animation-delay: 0.32s; }
.hero-enter--d4 { animation-delay: 0.44s; }
.hero-enter--d5 { animation-delay: 0.56s; }

@keyframes hero-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__stage {
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  animation: hero-stage-in 1.1s var(--ease-out) 0.25s forwards;
}

@keyframes hero-stage-in {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ---- Responsive ---- */

@media (max-width: 991.98px) {
  .hero {
    padding-bottom: var(--space-20);
    justify-content: flex-start;
  }

  .hero__inner {
    padding-top: var(--space-4);
  }

  .hero__stage {
    order: -1;
    width: min(100%, 380px);
    margin-inline: auto;
  }

  .hero__copy {
    max-width: none;
    text-align: left;
  }

  .hero-float {
    min-width: 0;
    padding: 0.55rem 0.75rem;
    gap: 0.5rem;
  }

  .hero-float__icon {
    width: 30px;
    height: 30px;
  }

  .hero-float__value {
    font-size: 0.7rem;
  }

  .hero-float__label {
    font-size: 0.55rem;
  }

  .hero-float--invest {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .hero__trust-divider {
    display: none;
  }

  .hero__trust {
    gap: var(--space-4);
  }

  .hero-float--coins,
  .hero-float--family {
    display: none;
  }

  .hero__illus-caption {
    display: none;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero__blob,
  .hero__orbit--outer,
  .hero__orbit--inner,
  .hero__core-glow,
  .hero__illus-svg,
  .hero-float,
  .hero__beam,
  .hero__wave-path--back,
  .hero-enter,
  .hero__stage {
    animation: none !important;
  }

  .hero-enter,
  .hero__stage {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   FIN PILOT — Trust Section
   Constellation layout · glass · gradient borders · counters
   ============================================================ */

.trust {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(2.75rem, 5vw, 4.5rem);
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(31, 182, 166, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 90% 80%, rgba(18, 58, 111, 0.06) 0%, transparent 45%),
    var(--color-soft-gray);
}

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

.trust__glow--a {
  width: min(420px, 50vw);
  height: min(420px, 50vw);
  top: -8%;
  right: -5%;
  background: rgba(31, 182, 166, 0.18);
}

.trust__glow--b {
  width: min(380px, 45vw);
  height: min(380px, 45vw);
  bottom: 5%;
  left: -8%;
  background: rgba(18, 58, 111, 0.12);
}

.trust__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.trust__intro {
  max-width: 36rem;
  margin-bottom: 0;
}

.trust__eyebrow {
  margin-bottom: 0.5rem;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-teal);
}

.trust__title {
  margin-bottom: 0.65rem;
  font-size: clamp(1.65rem, 1.25rem + 1.4vw, 2.35rem);
  font-weight: var(--fw-bold);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--color-navy);
  text-wrap: balance;
}

.trust__title span {
  color: var(--color-teal);
}

.trust__lede {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  max-width: 42ch;
}

.trust__proofs {
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.trust__proof {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.trust__proof-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.65rem;
  color: var(--color-teal);
  background: rgba(31, 182, 166, 0.1);
  border: 1px solid rgba(31, 182, 166, 0.18);
}

.trust__proof-icon svg {
  width: 1.1rem;
  height: 1.1rem;
}

.trust__proof-title {
  margin: 0 0 0.15rem;
  font-size: 0.9rem;
  font-weight: var(--fw-semibold);
  color: var(--color-navy);
  letter-spacing: -0.01em;
}

.trust__proof-text {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--color-text-muted);
  max-width: 34ch;
}

.trust__intro-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.35rem;
  margin-top: 1.4rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(18, 58, 111, 0.1);
}

.trust__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: var(--fw-semibold);
  color: var(--color-navy);
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
}

.trust__link svg {
  width: 1rem;
  height: 1rem;
  color: var(--color-teal);
  transition: transform 0.2s ease;
}

.trust__link:hover {
  color: var(--color-teal);
  gap: 0.55rem;
}

.trust__link:hover svg {
  transform: translateX(2px);
}

.trust__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.trust__rating strong {
  color: var(--color-navy);
  font-weight: var(--fw-semibold);
}

.trust__rating-stars {
  letter-spacing: 0.06em;
  color: #E8A317;
  font-size: 0.72rem;
  line-height: 1;
}

/* ---- Constellation grid ---- */

.trust__constellation {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
  grid-template-areas:
    "feature"
    "years"
    "clients"
    "success"
    "partners";
}

@media (min-width: 640px) {
  .trust__constellation {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "feature feature"
      "years clients"
      "success partners";
  }
}

/* Desktop: intro + hero fill top row — no empty right side */
@media (min-width: 992px) {
  .trust__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr) minmax(0, 0.95fr) minmax(0, 0.95fr);
    grid-template-areas:
      "intro intro feature feature"
      "years clients success partners";
    gap: 1rem 1.1rem;
    align-items: stretch;
  }

  .trust__intro {
    grid-area: intro;
    max-width: none;
    align-self: center;
    padding-right: 0.5rem;
  }

  .trust__constellation {
    display: contents;
  }

  .trust-card--feature { grid-area: feature; }
  .trust-card--years { grid-area: years; }
  .trust-card--clients { grid-area: clients; }
  .trust-card--success { grid-area: success; }
  .trust-card--partners { grid-area: partners; }
}

.trust-card--feature { grid-area: feature; }
.trust-card--years { grid-area: years; }
.trust-card--clients { grid-area: clients; }
.trust-card--success { grid-area: success; }
.trust-card--partners { grid-area: partners; }

/* ---- Glass card with gradient border ---- */

.trust-card {
  position: relative;
  border-radius: var(--radius-xl);
  isolation: isolate;
  transition:
    transform var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out);
}

.trust-card:hover {
  box-shadow: var(--shadow-lg);
}

/* Gradient border via masked pseudo */
.trust-card__border {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(
    135deg,
    rgba(31, 182, 166, 0.65) 0%,
    rgba(18, 58, 111, 0.15) 40%,
    rgba(48, 213, 200, 0.5) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
  opacity: 0.85;
  transition: opacity var(--duration-base) var(--ease-out);
}

.trust-card:hover .trust-card__border {
  opacity: 1;
  background: linear-gradient(
    135deg,
    rgba(48, 213, 200, 0.9) 0%,
    rgba(18, 58, 111, 0.35) 45%,
    rgba(31, 182, 166, 0.85) 100%
  );
}

.trust-card__body {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: clamp(1.35rem, 2.5vw, 2rem);
  border-radius: inherit;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.62) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 16px 48px rgba(18, 58, 111, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
  overflow: hidden;
}

.trust-card__icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 0.75rem;
  border-radius: var(--radius-md);
  background: rgba(31, 182, 166, 0.12);
  color: var(--color-teal);
  box-shadow: 0 0 24px rgba(31, 182, 166, 0.15);
}

.trust-card__icon svg {
  width: 22px;
  height: 22px;
}

.trust-card__label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-text-muted);
  letter-spacing: 0.01em;
}

.trust-card__value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.5rem + 1.8vw, 3.25rem);
  font-weight: var(--fw-bold);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--color-navy);
  margin-bottom: var(--space-2);
}

.trust-card__prefix {
  font-size: 0.55em;
  font-weight: var(--fw-semibold);
  vertical-align: super;
  margin-right: 0.05em;
  color: var(--color-teal);
}

.trust-card__hint {
  font-size: var(--fs-sm);
  color: var(--color-text-subtle);
  line-height: var(--lh-snug);
  max-width: 28ch;
}

/* Feature card — taller, richer */
.trust-card--feature .trust-card__body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background:
    linear-gradient(155deg, rgba(12, 42, 82, 0.96) 0%, rgba(18, 58, 111, 0.92) 55%, rgba(10, 50, 60, 0.94) 100%);
  box-shadow:
    0 24px 64px rgba(18, 58, 111, 0.28),
    0 1px 0 rgba(255, 255, 255, 0.12) inset;
}

.trust-card--feature .trust-card__icon {
  background: rgba(48, 213, 200, 0.18);
  color: var(--color-teal-bright);
  box-shadow: 0 0 28px rgba(48, 213, 200, 0.3);
}

.trust-card--feature .trust-card__label {
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-2);
}

.trust-card--feature .trust-card__value {
  color: #FFFFFF;
  font-size: clamp(2.75rem, 2rem + 2.5vw, 4rem);
  margin-bottom: var(--space-3);
}

.trust-card--feature .trust-card__hint {
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: var(--space-6);
}

.trust-card--feature .trust-card__border {
  background: linear-gradient(
    145deg,
    rgba(48, 213, 200, 0.8) 0%,
    rgba(255, 255, 255, 0.15) 40%,
    rgba(31, 182, 166, 0.5) 100%
  );
}

.trust-card__spark {
  margin-top: auto;
  height: 48px;
  opacity: 0.9;
}

.trust-card__spark svg {
  width: 100%;
  height: 100%;
}

/* Feature visual — photo fill with metric caption */
.trust-card--visual {
  min-height: 280px;
}

.trust-card--visual .trust-card__body {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
  min-height: clamp(260px, 32vw, 340px);
  background: #0C2A52;
  overflow: hidden;
}

.trust-card__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 30%;
  display: block;
  transition: transform 0.7s var(--ease-out);
}

.trust-card--visual:hover .trust-card__photo {
  transform: scale(1.04);
}

.trust-card--visual .trust-card__body::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(12, 42, 82, 0.15) 0%,
      rgba(12, 42, 82, 0.2) 40%,
      rgba(12, 42, 82, 0.88) 100%
    );
  pointer-events: none;
}

.trust-card__caption {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 1.35rem 1.4rem 1.5rem;
}

.trust-card--visual .trust-card__label {
  margin-bottom: 0.2rem;
  color: rgba(255, 255, 255, 0.7);
}

.trust-card--visual .trust-card__value {
  margin: 0;
  font-size: clamp(2rem, 1.5rem + 1.8vw, 2.85rem);
  line-height: 1;
}

/* Compact stat cards — icon + metric side by side, no empty half */
.trust-card--years .trust-card__body,
.trust-card--clients .trust-card__body,
.trust-card--success .trust-card__body,
.trust-card--partners .trust-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  min-height: 0;
}

.trust-card__row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  min-width: 0;
}

.trust-card--years .trust-card__icon,
.trust-card--clients .trust-card__icon,
.trust-card--partners .trust-card__icon {
  margin-bottom: 0;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
}

.trust-card__meta {
  min-width: 0;
  flex: 1;
}

.trust-card--years .trust-card__value,
.trust-card--clients .trust-card__value,
.trust-card--partners .trust-card__value {
  margin: 0 0 0.15rem;
  font-size: clamp(1.55rem, 1.25rem + 0.9vw, 2rem);
  line-height: 1.1;
}

.trust-card--years .trust-card__label,
.trust-card--clients .trust-card__label,
.trust-card--partners .trust-card__label,
.trust-card--success .trust-card__label {
  margin: 0;
  font-size: 0.8rem;
  font-weight: var(--fw-medium);
  color: var(--color-text-muted);
  line-height: 1.3;
}

.trust-card--success .trust-card__label {
  font-weight: var(--fw-semibold);
  color: var(--color-navy);
  margin-bottom: 0.2rem;
}

.trust-card--success .trust-card__hint {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.4;
  max-width: none;
  color: var(--color-text-subtle);
}

.trust-card__ring {
  position: relative;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.trust-card__ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.trust-card__ring-track {
  fill: none;
  stroke: rgba(18, 58, 111, 0.08);
  stroke-width: 6;
}

.trust-card__ring-fill {
  fill: none;
  stroke: var(--color-teal);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 213.6;
  stroke-dashoffset: 213.6;
  transition: stroke-dashoffset 1.6s var(--ease-out);
}

.trust-card__ring-fill.is-drawn {
  stroke-dashoffset: calc(213.6 * (1 - var(--ring-progress, 0.98)));
}

.trust-card__ring-value {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: var(--fw-bold);
  color: var(--color-navy);
  letter-spacing: -0.02em;
}

.trust-partners {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  width: 100%;
}

.trust-partners__item {
  padding: 0.28rem 0.55rem;
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.04em;
  color: var(--color-navy);
  background: rgba(18, 58, 111, 0.05);
  border: 1px solid rgba(18, 58, 111, 0.08);
  transition:
    background-color var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out),
    color var(--duration-fast) var(--ease-out);
}

.trust-partners__item:hover {
  background: rgba(31, 182, 166, 0.12);
  border-color: rgba(31, 182, 166, 0.3);
  color: var(--color-teal);
}

/* No staggered float — keeps the bottom row aligned and dense */
@media (min-width: 992px) {
  .trust-card--years,
  .trust-card--clients,
  .trust-card--success,
  .trust-card--partners {
    animation: none;
    translate: none;
  }

  .trust-card--feature:hover,
  .trust-card--years:hover,
  .trust-card--clients:hover,
  .trust-card--success:hover,
  .trust-card--partners:hover {
    transform: translateY(-3px);
  }
}

/* Fade-up reveal */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity var(--duration-slower) var(--ease-out),
    transform var(--duration-slower) var(--ease-out);
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 80ms; }
.fade-up-delay-2 { transition-delay: 160ms; }
.fade-up-delay-3 { transition-delay: 240ms; }
.fade-up-delay-4 { transition-delay: 320ms; }

@media (prefers-reduced-motion: reduce) {
  .trust-card--feature,
  .trust-card--years,
  .trust-card--clients,
  .trust-card--success,
  .trust-card--partners {
    animation: none !important;
  }

  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .trust-card__ring-fill {
    transition: none;
  }
}

/* ============================================================
   Partner logo marquee
   ============================================================ */

.partner-marquee {
  overflow: hidden;
  padding-block: clamp(1.25rem, 3vw, 2rem);
  background: var(--color-white, #fff);
}

.partner-marquee__eyebrow {
  margin: 0 0 0.85rem;
  text-align: center;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-teal);
}

.partner-marquee__viewport {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.partner-marquee__track {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  width: max-content;
  margin: 0;
  padding: 0.35rem 0;
  list-style: none;
  animation: partner-marquee-scroll 55s linear infinite;
}

.partner-marquee__track li {
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-navy);
  opacity: 0.72;
}

@keyframes partner-marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   FIN PILOT — Services Section
   Curved arc · unique glass cards · 3D icons · animated borders
   ============================================================ */

.services {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(4.5rem, 9vw, 8.5rem);
  background:
    linear-gradient(180deg, var(--color-soft-gray) 0%, #FFFFFF 35%, var(--color-soft-gray) 100%);
}

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

.services__aura--1 {
  width: min(520px, 60vw);
  height: min(520px, 60vw);
  top: 10%;
  left: -12%;
  background: rgba(31, 182, 166, 0.14);
}

.services__aura--2 {
  width: min(480px, 55vw);
  height: min(480px, 55vw);
  bottom: 5%;
  right: -10%;
  background: rgba(18, 58, 111, 0.1);
}

.services__curve {
  position: absolute;
  top: 28%;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 0;
  opacity: 0.7;
  pointer-events: none;
}

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

.services__intro {
  max-width: 36rem;
  margin-inline: auto;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  text-align: center;
}

.services__eyebrow {
  margin-bottom: var(--space-3);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-teal);
}

.services__title {
  margin-bottom: var(--space-4);
  font-size: clamp(2rem, 1.4rem + 2.2vw, 3.15rem);
  font-weight: var(--fw-bold);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--color-navy);
}

.services__title span {
  background: linear-gradient(120deg, var(--color-navy) 20%, var(--color-teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.services__lede {
  margin-inline: auto;
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
  color: var(--color-text-muted);
  max-width: 46ch;
}

/* ---- Curved arc layout ---- */

.services__arc {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .services__arc {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .services__arc {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    perspective: 1400px;
    padding-block: 2.5rem 1rem;
  }

  .services__arc .svc {
    flex: 1 1 0;
    max-width: 240px;
    margin-inline: -0.35rem;
  }

  /* Parabolic curve — outer cards lower, center elevated */
  .svc--fd {
    translate: 0 56px;
    rotate: -4.5deg;
    z-index: 1;
  }

  .svc--mf {
    translate: 0 22px;
    rotate: -2deg;
    z-index: 2;
  }

  .svc--life {
    translate: 0 0;
    rotate: 0deg;
    scale: 1.04;
    z-index: 5;
  }

  .svc--vehicle {
    translate: 0 22px;
    rotate: 2deg;
    z-index: 2;
  }

  .svc--general {
    translate: 0 56px;
    rotate: 4.5deg;
    z-index: 1;
  }

  .svc--fd:hover,
  .svc--mf:hover,
  .svc--life:hover,
  .svc--vehicle:hover,
  .svc--general:hover {
    z-index: 10;
  }
}

/* ---- Base service card ---- */

.svc {
  --svc-accent: var(--color-teal);
  --svc-accent-2: var(--color-navy);
  --svc-glow: rgba(31, 182, 166, 0.35);
  --svc-panel-bg: rgba(255, 255, 255, 0.72);

  position: relative;
  isolation: isolate;
  border-radius: 1.5rem;
  cursor: pointer;
  transition:
    translate var(--duration-base) var(--ease-out),
    rotate var(--duration-base) var(--ease-out),
    scale var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out);
}

.svc:hover {
  box-shadow:
    0 28px 64px rgba(18, 58, 111, 0.16),
    0 0 40px var(--svc-glow);
}

@media (min-width: 1100px) {
  .svc--fd:hover { translate: 0 40px; rotate: -4.5deg; scale: 1.03; }
  .svc--mf:hover { translate: 0 6px; rotate: -2deg; scale: 1.03; }
  .svc--life:hover { translate: 0 -14px; rotate: 0deg; scale: 1.08; }
  .svc--vehicle:hover { translate: 0 6px; rotate: 2deg; scale: 1.03; }
  .svc--general:hover { translate: 0 40px; rotate: 4.5deg; scale: 1.03; }
}

@media (max-width: 1099.98px) {
  .svc:hover {
    translate: 0 -10px;
  }
}

/* Background glow blob */
.svc__glow {
  position: absolute;
  width: 70%;
  height: 55%;
  top: -10%;
  left: 15%;
  border-radius: 50%;
  background: var(--svc-glow);
  filter: blur(40px);
  opacity: 0;
  z-index: 0;
  transition: opacity var(--duration-base) var(--ease-out);
  pointer-events: none;
}

.svc:hover .svc__glow {
  opacity: 0.85;
}

/* Animated gradient / spinning border */
.svc__border {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(
    145deg,
    rgba(31, 182, 166, 0.45),
    rgba(18, 58, 111, 0.12),
    rgba(48, 213, 200, 0.35)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 2;
  pointer-events: none;
  transition: opacity var(--duration-fast) var(--ease-out);
}

.svc__border::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(
    from var(--border-angle, 0deg),
    transparent 0%,
    var(--svc-accent) 12%,
    transparent 28%,
    var(--svc-accent-2) 48%,
    transparent 62%,
    var(--svc-accent) 78%,
    transparent 100%
  );
  opacity: 0;
  animation: svc-border-spin 4s linear infinite;
  animation-play-state: paused;
  transition: opacity var(--duration-base) var(--ease-out);
}

.svc:hover .svc__border::before {
  opacity: 1;
  animation-play-state: running;
}

@property --border-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes svc-border-spin {
  to { --border-angle: 360deg; }
}

/* Fallback if @property unsupported — rotate the pseudo */
@supports not (background: conic-gradient(from var(--border-angle), red, blue)) {
  .svc__border::before {
    animation: svc-border-rotate 4s linear infinite;
    animation-play-state: paused;
  }

  .svc:hover .svc__border::before {
    animation-play-state: running;
  }

  @keyframes svc-border-rotate {
    to { transform: rotate(360deg); }
  }
}

.svc__panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 320px;
  padding: 1.6rem 1.4rem 1.4rem;
  border-radius: inherit;
  background: var(--svc-panel-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 12px 40px rgba(18, 58, 111, 0.07),
    0 1px 0 rgba(255, 255, 255, 0.75) inset;
  overflow: hidden;
}

/* ---- 3D icon placeholder ---- */

.svc__icon {
  position: relative;
  width: 64px;
  height: 64px;
  margin-bottom: var(--space-5);
  transform-style: preserve-3d;
  perspective: 400px;
}

.svc__icon--3d {
  transition: transform var(--duration-base) var(--ease-out);
}

.svc:hover .svc__icon--3d {
  transform: rotateX(12deg) rotateY(-18deg) translateZ(8px);
}

.svc__icon-face {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 1rem;
}

.svc__icon-face--front {
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(245, 248, 252, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    0 10px 28px rgba(18, 58, 111, 0.12),
    0 0 24px var(--svc-glow);
  z-index: 3;
}

.svc__icon-face--front svg {
  width: 40px;
  height: 40px;
}

.svc__icon-face--side {
  top: 6px;
  right: -8px;
  width: 10px;
  height: calc(100% - 6px);
  background: linear-gradient(180deg, var(--svc-accent), var(--svc-accent-2));
  border-radius: 0 8px 8px 0;
  transform: skewY(-28deg);
  opacity: 0.75;
  z-index: 1;
}

.svc__icon-face--top {
  top: -7px;
  left: 6px;
  width: calc(100% - 6px);
  height: 10px;
  background: linear-gradient(90deg, var(--svc-accent-2), var(--svc-accent));
  border-radius: 8px 8px 0 0;
  transform: skewX(-28deg);
  opacity: 0.55;
  z-index: 2;
}

.svc__index {
  position: absolute;
  top: 1.35rem;
  right: 1.25rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  color: rgba(18, 58, 111, 0.2);
}

.svc__name {
  margin-bottom: var(--space-3);
  font-size: clamp(1.15rem, 1rem + 0.4vw, 1.35rem);
  font-weight: var(--fw-semibold);
  letter-spacing: -0.02em;
  color: var(--color-navy);
  line-height: var(--lh-snug);
}

.svc__desc {
  flex: 1;
  margin-bottom: var(--space-6);
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  color: var(--color-text-muted);
  max-width: none;
}

.svc__more {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  align-self: flex-start;
  padding: 0.55rem 1rem 0.55rem 1.1rem;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.02em;
  color: var(--color-navy);
  background: rgba(18, 58, 111, 0.05);
  border: 1px solid rgba(18, 58, 111, 0.1);
  transition:
    background-color var(--duration-fast) var(--ease-out),
    color var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out),
    gap var(--duration-fast) var(--ease-out);
}

.svc__more-arrow {
  display: inline-flex;
  width: 14px;
  height: 14px;
  transition: transform var(--duration-fast) var(--ease-out);
}

.svc__more-arrow svg {
  width: 100%;
  height: 100%;
}

.svc__more:hover {
  background: linear-gradient(135deg, var(--svc-accent), var(--svc-accent-2));
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: 0 8px 24px var(--svc-glow);
  gap: 0.65rem;
}

.svc__more:hover .svc__more-arrow {
  transform: translateX(3px);
}

/* ============================================================
   Unique card personalities
   ============================================================ */

/* 01 Fixed Deposits — deep vault glass */
.svc--fd {
  --svc-accent: #30D5C8;
  --svc-accent-2: #0C2A52;
  --svc-glow: rgba(12, 42, 82, 0.35);
  --svc-panel-bg: linear-gradient(165deg, rgba(12, 42, 82, 0.94) 0%, rgba(18, 58, 111, 0.9) 100%);
  border-radius: 1.75rem 1.75rem 1.25rem 1.75rem;
}

.svc--fd .svc__panel {
  background: var(--svc-panel-bg);
  box-shadow:
    0 16px 48px rgba(12, 42, 82, 0.28),
    0 1px 0 rgba(255, 255, 255, 0.1) inset;
}

.svc--fd .svc__name,
.svc--fd .svc__more {
  color: #FFFFFF;
}

.svc--fd .svc__desc {
  color: rgba(255, 255, 255, 0.62);
}

.svc--fd .svc__index {
  color: rgba(48, 213, 200, 0.35);
}

.svc--fd .svc__more {
  background: rgba(48, 213, 200, 0.12);
  border-color: rgba(48, 213, 200, 0.3);
}

.svc--fd .svc__more:hover {
  background: linear-gradient(135deg, #1FB6A6, #30D5C8);
  color: var(--color-navy-deep);
}

.svc--fd .svc__icon-face--front {
  background: linear-gradient(145deg, rgba(26, 74, 133, 0.9), rgba(12, 42, 82, 0.95));
  border-color: rgba(48, 213, 200, 0.3);
}

/* 02 Mutual Funds — ascending chart shard */
.svc--mf {
  --svc-accent: #1FB6A6;
  --svc-accent-2: #30D5C8;
  --svc-glow: rgba(31, 182, 166, 0.4);
  border-radius: 1.25rem 2rem 1.25rem 2rem;
}

.svc--mf .svc__panel::after {
  content: "";
  position: absolute;
  right: -20%;
  bottom: -10%;
  width: 70%;
  height: 55%;
  background:
    linear-gradient(135deg, transparent 40%, rgba(31, 182, 166, 0.1) 40%, rgba(31, 182, 166, 0.1) 55%, transparent 55%),
    linear-gradient(145deg, transparent 50%, rgba(48, 213, 200, 0.08) 50%);
  pointer-events: none;
  z-index: 0;
}

.svc--mf .svc__panel > * {
  position: relative;
  z-index: 1;
}

/* 03 Life Insurance — soft protective oval glass */
.svc--life {
  --svc-accent: #30D5C8;
  --svc-accent-2: #123A6F;
  --svc-glow: rgba(48, 213, 200, 0.4);
  border-radius: 2rem;
}

.svc--life .svc__panel {
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(48, 213, 200, 0.14) 0%, transparent 50%),
    rgba(255, 255, 255, 0.78);
  min-height: 340px;
  border: 1px solid rgba(48, 213, 200, 0.15);
}

.svc--life .svc__icon {
  width: 72px;
  height: 72px;
}

/* 04 Vehicle — angular cockpit card */
.svc--vehicle {
  --svc-accent: #123A6F;
  --svc-accent-2: #1FB6A6;
  --svc-glow: rgba(18, 58, 111, 0.3);
  border-radius: 1rem 1.75rem 1rem 1.75rem;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
}

.svc--vehicle .svc__border {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
}

.svc--vehicle .svc__panel {
  background: linear-gradient(160deg, rgba(245, 248, 252, 0.95) 0%, rgba(255, 255, 255, 0.7) 100%);
}

.svc--vehicle .svc__icon-face--front {
  border-radius: 0.75rem;
}

/* 05 General — wide shield capsule */
.svc--general {
  --svc-accent: #1FB6A6;
  --svc-accent-2: #0C2A52;
  --svc-glow: rgba(31, 182, 166, 0.32);
  border-radius: 2.5rem 1.25rem 2.5rem 1.25rem;
}

.svc--general .svc__panel {
  background:
    linear-gradient(200deg, rgba(255, 255, 255, 0.9) 0%, rgba(238, 243, 249, 0.85) 100%);
}

.svc--general .svc__icon-face--front {
  border-radius: 50%;
}

.svc--general .svc__icon-face--side,
.svc--general .svc__icon-face--top {
  border-radius: 50%;
  width: 12px;
  height: 12px;
  transform: none;
  top: auto;
  right: -4px;
  bottom: 4px;
  left: auto;
  opacity: 0.7;
}

.svc--general .svc__icon-face--top {
  top: -4px;
  right: 4px;
  bottom: auto;
  left: auto;
}

@media (prefers-reduced-motion: reduce) {
  .svc__border::before {
    animation: none !important;
  }

  .svc:hover .svc__icon--3d {
    transform: none;
  }

  .svc--fd,
  .svc--mf,
  .svc--life,
  .svc--vehicle,
  .svc--general {
    translate: none !important;
    rotate: none !important;
    scale: none !important;
  }
}

/* ============================================================
   FIN PILOT — About Section
   Luxury overlap · curved field · pillars · animated stats
   ============================================================ */

.about {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(2.75rem, 5vw, 4.25rem);
  color: var(--color-text);
  background: #071528;
}

.about__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 50% at 15% 40%, rgba(31, 182, 166, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 85% 70%, rgba(18, 58, 111, 0.5) 0%, transparent 50%),
    linear-gradient(165deg, #061221 0%, #0C2A52 48%, #0A3540 100%);
}

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

.about__orb--1 {
  width: min(320px, 42vw);
  height: min(320px, 42vw);
  top: 18%;
  right: 5%;
  background: rgba(48, 213, 200, 0.16);
  animation: about-orb 14s var(--ease-in-out) infinite alternate;
}

.about__orb--2 {
  width: min(280px, 36vw);
  height: min(280px, 36vw);
  bottom: 18%;
  left: 8%;
  background: rgba(18, 58, 111, 0.45);
  animation: about-orb 18s var(--ease-in-out) infinite alternate-reverse;
}

@keyframes about-orb {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(20px, -14px) scale(1.06); }
}

.about__curve {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  line-height: 0;
  color: var(--color-soft-gray);
  pointer-events: none;
}

.about__curve--top {
  top: -1px;
  color: var(--color-soft-gray);
}

.about__curve--bottom {
  bottom: -1px;
  color: var(--color-soft-gray);
}

.about__curve svg {
  display: block;
  width: 100%;
  height: clamp(28px, 4vw, 48px);
}

.about__inner {
  position: relative;
  z-index: 3;
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.25rem);
}

@media (min-width: 992px) {
  .about__inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    grid-template-areas:
      "visual content"
      "stats stats";
    align-items: center;
    column-gap: clamp(1.75rem, 3.5vw, 3.25rem);
  }

  .about__visual { grid-area: visual; }
  .about__content { grid-area: content; }
  .about__stats { grid-area: stats; }
}

/* ---- Visual ---- */

.about__visual {
  position: relative;
  padding-bottom: 2rem;
}

.about__frame--primary {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 380px;
  margin-inline: auto;
  border-radius: 1.35rem;
  overflow: hidden;
  box-shadow:
    0 22px 56px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(48, 213, 200, 0.2),
    0 0 40px rgba(31, 182, 166, 0.12);
}

@media (min-width: 992px) {
  .about__frame--primary {
    margin-inline: 0;
    max-width: none;
  }
}

.about__illus-svg {
  display: block;
  width: 100%;
  height: auto;
}

.about__frame--overlap {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0.35rem;
  width: min(168px, 48%);
  padding: 1.5px;
  border-radius: 1rem;
  background: linear-gradient(145deg, rgba(48, 213, 200, 0.8), rgba(18, 58, 111, 0.4), rgba(255, 255, 255, 0.3));
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
  animation: about-float 6s var(--ease-in-out) infinite;
}

@media (min-width: 992px) {
  .about__frame--overlap {
    right: -6%;
    bottom: 0.5rem;
    width: 170px;
  }
}

.about__overlap-inner {
  padding: 0.85rem 0.95rem;
  border-radius: calc(1rem - 1.5px);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.about__overlap-label {
  font-size: 0.65rem;
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 0.1rem;
}

.about__overlap-year {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: var(--fw-bold);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--color-navy);
  margin-bottom: 0.3rem;
}

.about__overlap-text {
  font-size: 0.72rem;
  line-height: 1.35;
  color: var(--color-text-muted);
  max-width: none;
}

.about-float {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: var(--fw-semibold);
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  white-space: nowrap;
  animation: about-float 5.5s var(--ease-in-out) infinite;
}

.about-float--a {
  top: 6%;
  left: 0;
  animation-delay: -1s;
}

.about-float--c {
  top: 14%;
  right: 0;
  animation-delay: -0.5s;
}

.about-float__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-teal-bright);
  box-shadow: 0 0 10px var(--color-teal-glow);
}

.about-float__value {
  font-size: 0.65rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.06em;
  color: var(--color-teal-bright);
}

@keyframes about-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -8px; }
}

/* ---- Content ---- */

.about__eyebrow {
  margin-bottom: 0.5rem;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-teal-bright);
}

.about__title {
  margin-bottom: 0.85rem;
  font-size: clamp(1.7rem, 1.25rem + 1.6vw, 2.45rem);
  font-weight: var(--fw-bold);
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: #FFFFFF;
}

.about__title em {
  font-style: normal;
  background: linear-gradient(120deg, #30D5C8 0%, #A8F0E8 50%, #FFFFFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about__story {
  margin-bottom: 1.15rem;
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.68);
  max-width: 44ch;
}

.about__pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
}

@media (min-width: 640px) {
  .about__pillars {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
  }
}

.about-pillar {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
  padding: 0.8rem 0.85rem;
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    background-color var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out);
}

.about-pillar:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(48, 213, 200, 0.35);
  transform: translateY(-2px);
}

.about-pillar__icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 0.65rem;
  color: var(--color-teal-bright);
  background: rgba(48, 213, 200, 0.12);
  flex-shrink: 0;
}

.about-pillar__icon svg {
  width: 16px;
  height: 16px;
}

.about-pillar__title {
  margin-bottom: 0.2rem;
  font-size: 0.88rem;
  font-weight: var(--fw-semibold);
  color: #FFFFFF;
  letter-spacing: -0.015em;
}

.about-pillar__text {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.52);
  max-width: none;
}

.about-pillar--vision {
  background: linear-gradient(120deg, rgba(31, 182, 166, 0.12), rgba(255, 255, 255, 0.05));
}

.about-pillar--values .about-pillar__icon {
  background: rgba(18, 58, 111, 0.45);
  color: #FFFFFF;
}

/* ---- Stats ---- */

.about__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 0.25rem;
  border-radius: 1.1rem;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(48, 213, 200, 0.45), rgba(18, 58, 111, 0.3), rgba(255, 255, 255, 0.2));
  padding: 1.5px;
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.28),
    0 0 28px rgba(31, 182, 166, 0.1);
}

@media (min-width: 768px) {
  .about__stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 992px) {
  .about__stats {
    margin-top: 0.15rem;
    margin-left: 0;
    max-width: none;
  }
}

.about-stat {
  padding: 0.85rem 0.75rem;
  text-align: center;
  background: rgba(8, 24, 45, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.about-stat__value {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.05rem + 0.7vw, 1.65rem);
  font-weight: var(--fw-bold);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #FFFFFF;
  margin-bottom: 0.2rem;
}

.about-stat__label {
  font-size: 0.65rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

@media (prefers-reduced-motion: reduce) {
  .about__orb--1,
  .about__orb--2,
  .about__frame--overlap,
  .about-float {
    animation: none !important;
  }
}

/* ============================================================
   FIN PILOT — Why Choose Us
   Zigzag timeline · animated spine · soft gradients · no grid
   ============================================================ */

.why {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(4.5rem, 9vw, 8rem);
  background: var(--color-soft-gray);
}

.why__wash {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 50% 40% at 20% 20%, rgba(31, 182, 166, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 45% 35% at 80% 75%, rgba(18, 58, 111, 0.07) 0%, transparent 50%);
  pointer-events: none;
}

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

.why__intro {
  max-width: 36rem;
  margin-inline: auto;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
  text-align: center;
}

.why__eyebrow {
  margin-bottom: var(--space-3);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-teal);
}

.why__title {
  margin-bottom: var(--space-4);
  font-size: clamp(2rem, 1.4rem + 2vw, 3rem);
  font-weight: var(--fw-bold);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--color-navy);
}

.why__title span {
  background: linear-gradient(120deg, var(--color-navy) 10%, var(--color-teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.why__lede {
  margin-inline: auto;
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
  color: var(--color-text-muted);
  max-width: 44ch;
}

/* ---- Timeline (flex column, alternating — not a card grid) ---- */

.why__timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 3.5vw, 2.75rem);
  max-width: 920px;
  margin-inline: auto;
  padding-inline: 0;
}

/* Central spine */
.why__spine {
  display: none;
}

@media (min-width: 768px) {
  .why__spine {
    display: block;
    position: absolute;
    top: 1.5rem;
    bottom: 1.5rem;
    left: 50%;
    width: 4px;
    transform: translateX(-50%);
    z-index: 0;
  }

  .why__spine-svg {
    width: 100%;
    height: 100%;
    display: block;
  }

  .why__spine-track {
    stroke: rgba(18, 58, 111, 0.1);
    stroke-width: 3;
    stroke-linecap: round;
  }

  .why__spine-draw {
    stroke: var(--color-teal);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    transition: stroke-dashoffset 1.8s var(--ease-out);
  }

  .why__timeline.is-drawn .why__spine-draw {
    stroke-dashoffset: 0;
  }
}

/* ---- Step ---- */

.why-step {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 100%;
}

@media (min-width: 768px) {
  .why-step--left {
    justify-content: flex-end;
    padding-right: calc(50% + 1.75rem);
  }

  .why-step--right {
    justify-content: flex-start;
    padding-left: calc(50% + 1.75rem);
  }
}

@media (max-width: 767.98px) {
  .why-step {
    padding-left: 2.75rem;
  }

  .why-step::before {
    content: "";
    position: absolute;
    left: 0.7rem;
    top: 0;
    bottom: -1.75rem;
    width: 2px;
    background: linear-gradient(180deg, var(--color-teal), rgba(18, 58, 111, 0.15));
    border-radius: 2px;
  }

  .why-step:last-child::before {
    bottom: 20%;
  }
}

/* Node on spine */
.why-step__node {
  position: absolute;
  z-index: 3;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--color-teal-bright), var(--color-navy));
  border: 3px solid #FFFFFF;
  box-shadow:
    0 0 0 4px rgba(31, 182, 166, 0.15),
    0 4px 16px rgba(18, 58, 111, 0.2);
}

@media (min-width: 768px) {
  .why-step__node {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 767.98px) {
  .why-step__node {
    left: 0.25rem;
    top: 1.75rem;
  }
}

.why-step__pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(31, 182, 166, 0.45);
  opacity: 0;
  transform: scale(0.6);
}

.why-step.is-active .why-step__pulse,
.why-step:hover .why-step__pulse {
  animation: why-pulse 1.6s var(--ease-out) infinite;
}

@keyframes why-pulse {
  0% { opacity: 0.7; transform: scale(0.7); }
  100% { opacity: 0; transform: scale(1.8); }
}

/* Horizontal connector from node to card */
.why-step__connector {
  display: none;
}

@media (min-width: 768px) {
  .why-step__connector {
    display: block;
    position: absolute;
    top: 50%;
    width: 1.75rem;
    height: 24px;
    transform: translateY(-50%);
    z-index: 2;
    overflow: visible;
  }

  .why-step--left .why-step__connector {
    right: 50%;
  }

  .why-step--right .why-step__connector {
    left: 50%;
  }

  .why-step__connector svg {
    width: 100%;
    height: 100%;
    overflow: visible;
  }

  .why-step__line {
    fill: none;
    stroke: var(--color-teal);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 8 6;
    stroke-dashoffset: 40;
    opacity: 0.55;
    transition:
      stroke-dashoffset 0.8s var(--ease-out),
      opacity var(--duration-base) var(--ease-out);
  }

  .why__timeline.is-drawn .why-step__line {
    stroke-dashoffset: 0;
    animation: why-dash 12s linear infinite;
  }

  .why-step:hover .why-step__line {
    opacity: 1;
    stroke-width: 2.5;
  }
}

@keyframes why-dash {
  to { stroke-dashoffset: -56; }
}

/* Feature card */
.why-step__card {
  position: relative;
  width: 100%;
  max-width: 380px;
  padding: 1.5rem 1.5rem 1.4rem;
  border-radius: 1.35rem;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 248, 252, 0.88) 100%);
  border: 1px solid rgba(18, 58, 111, 0.08);
  box-shadow:
    0 12px 40px rgba(18, 58, 111, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  overflow: hidden;
  transition:
    transform var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out),
    border-color var(--duration-base) var(--ease-out);
}

.why-step__card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(ellipse 80% 60% at 0% 0%, rgba(31, 182, 166, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(18, 58, 111, 0.06) 0%, transparent 50%);
  opacity: 0.85;
  pointer-events: none;
  transition: opacity var(--duration-base) var(--ease-out);
}

.why-step__card > * {
  position: relative;
  z-index: 1;
}

.why-step:hover .why-step__card {
  transform: translateY(-6px);
  border-color: rgba(31, 182, 166, 0.35);
  box-shadow:
    0 20px 48px rgba(18, 58, 111, 0.12),
    0 0 32px rgba(31, 182, 166, 0.12);
}

.why-step:hover .why-step__card::before {
  opacity: 1;
}

.why-step:hover .why-step__node {
  box-shadow:
    0 0 0 5px rgba(31, 182, 166, 0.22),
    0 0 24px rgba(48, 213, 200, 0.45);
}

.why-step__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: var(--space-4);
  border-radius: 0.9rem;
  color: var(--color-teal);
  background: linear-gradient(145deg, rgba(31, 182, 166, 0.16), rgba(18, 58, 111, 0.08));
  box-shadow: 0 0 24px rgba(31, 182, 166, 0.12);
  transition:
    transform var(--duration-base) var(--ease-out),
    background var(--duration-base) var(--ease-out),
    color var(--duration-base) var(--ease-out);
}

.why-step__icon svg {
  width: 22px;
  height: 22px;
}

.why-step:hover .why-step__icon {
  transform: scale(1.08) rotate(-4deg);
  color: #FFFFFF;
  background: linear-gradient(135deg, var(--color-teal), var(--color-navy));
  box-shadow: 0 8px 28px rgba(31, 182, 166, 0.35);
}

.why-step__num {
  position: absolute;
  top: 1.35rem;
  right: 1.35rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.14em;
  color: rgba(18, 58, 111, 0.18);
}

.why-step__title {
  margin-bottom: var(--space-2);
  font-size: clamp(1.1rem, 1rem + 0.35vw, 1.3rem);
  font-weight: var(--fw-semibold);
  letter-spacing: -0.02em;
  color: var(--color-navy);
  line-height: var(--lh-snug);
}

.why-step__text {
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  color: var(--color-text-muted);
  max-width: none;
  margin: 0;
}

/* Alternating soft tints for uniqueness along the path */
.why-step--left .why-step__card {
  border-radius: 1.35rem 1.35rem 1.35rem 0.5rem;
}

.why-step--right .why-step__card {
  border-radius: 1.35rem 1.35rem 0.5rem 1.35rem;
  background:
    linear-gradient(205deg, rgba(255, 255, 255, 0.98) 0%, rgba(238, 243, 249, 0.9) 100%);
}

.why-step--right .why-step__card::before {
  background:
    radial-gradient(ellipse 70% 55% at 100% 0%, rgba(18, 58, 111, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(31, 182, 166, 0.1) 0%, transparent 50%);
}

@media (prefers-reduced-motion: reduce) {
  .why__spine-draw,
  .why-step__line,
  .why-step__pulse {
    animation: none !important;
    transition: none !important;
  }

  .why__timeline.is-drawn .why__spine-draw {
    stroke-dashoffset: 0;
  }

  .why__timeline.is-drawn .why-step__line {
    stroke-dashoffset: 0;
  }
}

/* ============================================================
   FIN PILOT — Investment Journey
   Equal-step horizontal process · numbered rail · scroll fill
   ============================================================ */

.journey {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(3.5rem, 6vw, 6rem);
  background:
    linear-gradient(180deg, #FFFFFF 0%, var(--color-soft-gray) 48%, #FFFFFF 100%);
}

.journey__glow {
  position: absolute;
  top: 18%;
  left: 50%;
  width: min(560px, 75vw);
  height: min(560px, 75vw);
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 182, 166, 0.1) 0%, transparent 68%);
  filter: blur(36px);
  pointer-events: none;
  z-index: 0;
}

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

.journey__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.journey__eyebrow {
  display: inline-block;
  margin: 0 0 0.65rem;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-teal);
}

.journey__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.55rem, 1.2rem + 1.2vw, 2.15rem);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--color-navy);
  text-wrap: balance;
}

.journey__title span {
  color: var(--color-teal);
}

.journey__lede {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 34ch;
  text-wrap: balance;
}

/* ---- Board ---- */

.journey__board {
  position: relative;
  max-width: 1120px;
  margin-inline: auto;
}

.journey__rail {
  display: none;
}

.journey__rail-bg,
.journey__rail-fill {
  position: absolute;
  inset: 0;
  border-radius: 999px;
}

.journey__rail-bg {
  background: rgba(18, 58, 111, 0.12);
}

.journey__rail-fill {
  right: auto;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--color-teal-bright), var(--color-teal), var(--color-navy));
  box-shadow: 0 0 14px rgba(31, 182, 166, 0.4);
  transition: width 0.12s linear, height 0.12s linear;
}

.journey__steps {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.journey-step {
  position: relative;
  display: grid;
  grid-template-columns: 2.75rem 1fr;
  gap: 0.85rem;
  align-items: stretch;
  min-width: 0;
}

.journey-step__marker {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding-top: 1.15rem;
}

.journey-step__num {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  font-family: var(--font-display, inherit);
  font-size: 0.72rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
  color: var(--color-navy);
  background: #FFFFFF;
  border: 2px solid rgba(18, 58, 111, 0.16);
  box-shadow: 0 4px 14px rgba(18, 58, 111, 0.08);
  transition:
    color var(--duration-base) var(--ease-out),
    background var(--duration-base) var(--ease-out),
    border-color var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out),
    transform var(--duration-base) var(--ease-out);
}

.journey-step.is-active .journey-step__num {
  color: #FFFFFF;
  background: linear-gradient(145deg, var(--color-teal), var(--color-navy));
  border-color: transparent;
  box-shadow:
    0 0 0 4px rgba(31, 182, 166, 0.16),
    0 8px 22px rgba(31, 182, 166, 0.28);
  transform: scale(1.04);
}

.journey-step__card {
  min-width: 0;
  padding: 1.15rem 1.2rem 1.2rem;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(18, 58, 111, 0.08);
  box-shadow:
    0 10px 28px rgba(18, 58, 111, 0.05),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  transition:
    border-color var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out),
    transform var(--duration-base) var(--ease-out);
}

.journey-step.is-active .journey-step__card,
.journey-step:hover .journey-step__card {
  border-color: rgba(31, 182, 166, 0.32);
  box-shadow:
    0 14px 36px rgba(18, 58, 111, 0.09),
    0 0 0 1px rgba(31, 182, 166, 0.06);
  transform: translateY(-2px);
}

.journey-step__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 0.7rem;
  border-radius: 0.8rem;
  color: #FFFFFF;
  background: linear-gradient(145deg, var(--color-teal), #168f84);
  box-shadow: 0 6px 16px rgba(31, 182, 166, 0.28);
  transition:
    background var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out),
    transform var(--duration-base) var(--ease-out);
}

.journey-step.is-active .journey-step__icon {
  background: linear-gradient(135deg, var(--color-teal-bright), var(--color-navy));
  box-shadow: 0 8px 22px rgba(31, 182, 166, 0.35);
  transform: scale(1.03);
}

.journey-step__icon svg {
  width: 20px;
  height: 20px;
}

.journey-step__label {
  margin: 0 0 0.3rem;
  font-size: 0.65rem;
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-teal);
}

.journey-step__title {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: var(--fw-semibold);
  letter-spacing: -0.02em;
  color: var(--color-navy);
  line-height: 1.25;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}

.journey-step__text {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

/* Mobile vertical rail */
@media (max-width: 899.98px) {
  .journey__board::before {
    content: "";
    position: absolute;
    top: 1.15rem;
    bottom: 1.15rem;
    left: 1.1rem;
    width: 2px;
    border-radius: 2px;
    background: rgba(18, 58, 111, 0.1);
    z-index: 0;
  }

  .journey__rail {
    display: block;
    position: absolute;
    top: 1.15rem;
    bottom: 1.15rem;
    left: 1.1rem;
    width: 2px;
    z-index: 1;
  }

  .journey__rail-fill {
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, var(--color-teal-bright), var(--color-teal), var(--color-navy));
  }
}

/* Desktop: 5 equal columns on one rail */
@media (min-width: 900px) {
  .journey__board {
    padding-top: 0.25rem;
  }

  .journey__rail {
    display: block;
    position: absolute;
    top: 1.1rem;
    left: 8%;
    right: 8%;
    height: 3px;
    z-index: 0;
  }

  .journey__rail-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--color-teal-bright), var(--color-teal), var(--color-navy));
  }

  .journey__steps {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.15rem;
    align-items: start;
  }

  .journey-step {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    min-width: 0;
  }

  .journey-step__marker {
    justify-content: center;
    padding: 0 0 1.15rem;
  }

  .journey-step__card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 15.5rem;
    padding: 1.25rem 1.15rem 1.3rem;
  }

  .journey-step__title {
    font-size: clamp(1rem, 0.92rem + 0.3vw, 1.15rem);
  }

  .journey-step__text {
    font-size: 0.8rem;
    line-height: 1.5;
  }
}

@media (min-width: 1100px) {
  .journey__steps {
    gap: 1.35rem;
  }

  .journey-step__card {
    padding: 1.35rem 1.3rem 1.4rem;
    min-height: 16rem;
  }

  .journey-step__text {
    font-size: 0.84rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .journey-step__num,
  .journey-step__card,
  .journey-step__icon {
    transition: none;
  }

  .journey__rail-fill {
    transition: none;
  }
}

/* ============================================================
   FIN PILOT — Featured Products
   Large horizontal glass cards · image zoom · unique stack
   ============================================================ */

.products {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(4.5rem, 9vw, 8.5rem);
  background:
    linear-gradient(180deg, #FFFFFF 0%, #F0F5FA 50%, #FFFFFF 100%);
}

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

.products__aura--1 {
  width: min(480px, 55vw);
  height: min(480px, 55vw);
  top: 8%;
  right: -8%;
  background: rgba(31, 182, 166, 0.14);
}

.products__aura--2 {
  width: min(420px, 50vw);
  height: min(420px, 50vw);
  bottom: 12%;
  left: -10%;
  background: rgba(18, 58, 111, 0.1);
}

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

.products__intro {
  max-width: 36rem;
  margin-bottom: clamp(2.75rem, 5vw, 4rem);
}

.products__eyebrow {
  margin-bottom: var(--space-3);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-teal);
}

.products__title {
  margin-bottom: var(--space-4);
  font-size: clamp(2rem, 1.4rem + 2.2vw, 3.15rem);
  font-weight: var(--fw-bold);
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--color-navy);
}

.products__title span {
  background: linear-gradient(120deg, var(--color-navy) 0%, var(--color-teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.products__lede {
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
  color: var(--color-text-muted);
  max-width: 44ch;
}

/* ---- Stacked horizontal cards (unique, not a grid) ---- */

.products__stack {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.25rem);
}

.product {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  border-radius: 1.75rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 20px 60px rgba(18, 58, 111, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  transition:
    transform var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out);
}

.product:hover {
  transform: translateY(-6px);
  box-shadow:
    0 28px 72px rgba(18, 58, 111, 0.14),
    0 0 40px rgba(31, 182, 166, 0.1);
}

@media (min-width: 900px) {
  .product {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    min-height: 340px;
  }

  .product--reverse {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  }

  .product--reverse .product__media {
    order: 2;
  }

  .product--reverse .product__content {
    order: 1;
  }

  /* Stagger offsets for unique rhythm */
  .product--fd {
    margin-right: 4%;
  }

  .product--mf {
    margin-left: 4%;
  }

  .product--life {
    margin-right: 2%;
  }
}

/* Soft gradient rim */
.product::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(31, 182, 166, 0.45),
    rgba(255, 255, 255, 0.2),
    rgba(18, 58, 111, 0.25)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 3;
  opacity: 0.7;
  transition: opacity var(--duration-base) var(--ease-out);
}

.product:hover::before {
  opacity: 1;
}

/* ---- Media / zoom ---- */

.product__media {
  position: relative;
  min-height: 220px;
  overflow: hidden;
}

@media (min-width: 900px) {
  .product__media {
    min-height: 100%;
  }
}

.product__media-zoom {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.product__scene {
  width: 100%;
  height: 100%;
  transform: scale(1);
  transition: transform 0.7s var(--ease-out);
  will-change: transform;
}

.product:hover .product__scene {
  transform: scale(1.08);
}

.product__scene-art {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  min-height: 220px;
}

img.product__scene-art {
  object-fit: cover;
}

.product__scene--fd .product__scene-art {
  object-position: 55% 40%;
}

.product__scene--mf .product__scene-art {
  object-position: center 45%;
}

.product__scene--life .product__scene-art {
  object-position: 45% 35%;
}

@media (min-width: 900px) {
  .product__scene-art {
    min-height: 100%;
    position: absolute;
    inset: 0;
  }
}

.product__media-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    transparent 60%,
    rgba(255, 255, 255, 0.15) 100%
  );
  pointer-events: none;
}

.product--reverse .product__media-shade {
  background: linear-gradient(
    270deg,
    transparent 60%,
    rgba(255, 255, 255, 0.15) 100%
  );
}

/* ---- Content (glass panel) ---- */

.product__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background:
    linear-gradient(
      160deg,
      rgba(255, 255, 255, 0.82) 0%,
      rgba(245, 248, 252, 0.72) 100%
    );
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.product__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: var(--space-4);
  border-radius: 1rem;
  color: var(--color-teal);
  background: linear-gradient(145deg, rgba(31, 182, 166, 0.16), rgba(18, 58, 111, 0.08));
  box-shadow:
    0 8px 24px rgba(31, 182, 166, 0.15),
    0 0 0 1px rgba(31, 182, 166, 0.12);
  transition:
    transform var(--duration-base) var(--ease-out),
    background var(--duration-base) var(--ease-out),
    color var(--duration-base) var(--ease-out);
}

.product__icon svg {
  width: 24px;
  height: 24px;
}

.product:hover .product__icon {
  transform: scale(1.06) rotate(-4deg);
  color: #FFFFFF;
  background: linear-gradient(135deg, var(--color-teal), var(--color-navy));
  box-shadow: 0 12px 32px rgba(31, 182, 166, 0.35);
}

.product__tag {
  margin-bottom: var(--space-2);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-teal);
}

.product__name {
  margin-bottom: var(--space-3);
  font-size: clamp(1.45rem, 1.2rem + 0.8vw, 2rem);
  font-weight: var(--fw-bold);
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--color-navy);
}

.product__desc {
  margin-bottom: var(--space-5);
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  color: var(--color-text-muted);
  max-width: 38ch;
}

/* Investment highlights */
.product__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--space-6);
}

.product__highlights li {
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  color: var(--color-navy);
  background: rgba(18, 58, 111, 0.05);
  border: 1px solid rgba(18, 58, 111, 0.08);
  line-height: 1.35;
}

.product__highlights strong {
  font-weight: var(--fw-semibold);
  color: var(--color-teal);
}

/* Modern buttons */
.product__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.product__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.01em;
  transition:
    transform var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out),
    background var(--duration-base) var(--ease-out),
    color var(--duration-base) var(--ease-out),
    border-color var(--duration-base) var(--ease-out);
}

.product__btn:hover {
  transform: translateY(-2px);
}

.product__btn--primary {
  background: linear-gradient(135deg, var(--color-teal) 0%, #18a396 100%);
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(31, 182, 166, 0.35);
  border: 1px solid transparent;
}

.product__btn--primary:hover {
  background: linear-gradient(135deg, var(--color-teal-bright), var(--color-teal));
  box-shadow: 0 12px 32px rgba(48, 213, 200, 0.45);
  color: var(--color-navy-deep);
}

.product__btn--ghost {
  background: rgba(255, 255, 255, 0.6);
  color: var(--color-navy);
  border: 1.5px solid rgba(18, 58, 111, 0.15);
  backdrop-filter: blur(8px);
}

.product__btn--ghost:hover {
  border-color: var(--color-teal);
  background: rgba(31, 182, 166, 0.08);
  box-shadow: 0 8px 24px rgba(18, 58, 111, 0.08);
}

/* Product personality accents */
.product--fd .product__content {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.88) 0%, rgba(238, 243, 249, 0.75) 100%);
}

.product--mf .product__content {
  background:
    linear-gradient(200deg, rgba(245, 252, 250, 0.9) 0%, rgba(255, 255, 255, 0.75) 100%);
}

.product--life .product__content {
  background:
    linear-gradient(170deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 246, 252, 0.8) 100%);
}

@media (prefers-reduced-motion: reduce) {
  .product:hover .product__scene {
    transform: none;
  }

  .product:hover {
    transform: none;
  }
}

/* ============================================================
   FIN PILOT — Achievements
   Large gradient counters · floating shapes · luxury spacing
   ============================================================ */

.achieve {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(5.5rem, 11vw, 9.5rem);
  color: #FFFFFF;
}

.achieve__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 55% at 15% 20%, rgba(31, 182, 166, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 90% 80%, rgba(48, 213, 200, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 40% 35% at 60% 10%, rgba(26, 74, 133, 0.5) 0%, transparent 45%),
    linear-gradient(155deg, #050F1C 0%, #0C2A52 42%, #082830 100%);
}

.achieve__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.35;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.45'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.achieve__shape {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(2px);
  animation: achieve-float 16s var(--ease-in-out) infinite alternate;
}

.achieve__shape--1 {
  width: min(280px, 40vw);
  height: min(280px, 40vw);
  top: 8%;
  right: 8%;
  background: radial-gradient(circle, rgba(48, 213, 200, 0.35) 0%, transparent 70%);
  filter: blur(40px);
  animation-duration: 14s;
}

.achieve__shape--2 {
  width: 120px;
  height: 120px;
  bottom: 18%;
  left: 10%;
  border: 1.5px solid rgba(48, 213, 200, 0.25);
  background: transparent;
  filter: none;
  border-radius: 28% 72% 45% 55% / 60% 40% 70% 40%;
  animation-duration: 20s;
  animation-delay: -4s;
}

.achieve__shape--3 {
  width: 64px;
  height: 64px;
  top: 35%;
  left: 22%;
  background: linear-gradient(135deg, rgba(48, 213, 200, 0.4), rgba(18, 58, 111, 0.2));
  border-radius: 1rem;
  transform: rotate(18deg);
  filter: blur(0);
  opacity: 0.55;
  animation-duration: 12s;
  animation-delay: -2s;
}

.achieve__shape--4 {
  width: 180px;
  height: 180px;
  bottom: 8%;
  right: 18%;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  background: transparent;
  filter: none;
  animation-duration: 22s;
  animation-delay: -8s;
}

@keyframes achieve-float {
  from { translate: 0 0; }
  to { translate: 18px -22px; }
}

.achieve__inner {
  position: relative;
  z-index: 2;
}

.achieve__intro {
  max-width: 34rem;
  margin-bottom: clamp(3.5rem, 7vw, 5.5rem);
}

.achieve__eyebrow {
  margin-bottom: var(--space-3);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-teal-bright);
}

.achieve__title {
  margin-bottom: var(--space-5);
  font-size: clamp(2.25rem, 1.5rem + 2.8vw, 3.75rem);
  font-weight: var(--fw-bold);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #FFFFFF;
}

.achieve__title em {
  font-style: normal;
  background: linear-gradient(120deg, #30D5C8 0%, #A8F0E8 45%, #FFFFFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.achieve__lede {
  font-size: clamp(1.05rem, 1rem + 0.3vw, 1.2rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
  max-width: 40ch;
}

/* ---- Board: asymmetric luxury, not a flat grid ---- */

.achieve__board {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
}

@media (min-width: 768px) {
  .achieve__board {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: clamp(1.25rem, 2vw, 1.75rem);
    align-items: stretch;
  }

  .achieve-item--hero {
    grid-row: 1 / 3;
  }
}

.achieve-item {
  position: relative;
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.2),
    0 1px 0 rgba(255, 255, 255, 0.08) inset;
  overflow: hidden;
  cursor: default;
  transition:
    transform var(--duration-base) var(--ease-out),
    background-color var(--duration-base) var(--ease-out),
    border-color var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out);
}

.achieve-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(ellipse 80% 60% at 0% 0%, rgba(48, 213, 200, 0.18) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-out);
  pointer-events: none;
}

.achieve-item:hover {
  transform: translateY(-8px) scale(1.01);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(48, 213, 200, 0.4);
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(31, 182, 166, 0.15);
}

.achieve-item:hover::before {
  opacity: 1;
}

.achieve-item--hero {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 280px;
  background:
    linear-gradient(160deg, rgba(31, 182, 166, 0.12) 0%, rgba(255, 255, 255, 0.04) 45%, rgba(12, 42, 82, 0.3) 100%);
  border-color: rgba(48, 213, 200, 0.22);
}

@media (min-width: 768px) {
  .achieve-item--hero {
    min-height: 100%;
    padding: clamp(2.25rem, 4vw, 3.25rem);
  }
}

.achieve-item__value {
  position: relative;
  z-index: 1;
  margin-bottom: var(--space-3);
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 2rem + 3vw, 4.75rem);
  font-weight: var(--fw-bold);
  line-height: 0.95;
  letter-spacing: -0.045em;
  background: linear-gradient(135deg, #FFFFFF 0%, #30D5C8 45%, #1FB6A6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 28px rgba(48, 213, 200, 0.25));
  transition: filter var(--duration-base) var(--ease-out);
}

.achieve-item--hero .achieve-item__value {
  font-size: clamp(3.5rem, 2.5rem + 4vw, 6.5rem);
  margin-bottom: var(--space-4);
}

.achieve-item:hover .achieve-item__value {
  filter: drop-shadow(0 0 40px rgba(48, 213, 200, 0.45));
}

.achieve-item__prefix {
  font-size: 0.45em;
  font-weight: var(--fw-semibold);
  vertical-align: super;
  margin-right: 0.05em;
  background: linear-gradient(135deg, #30D5C8, #FFFFFF);
  -webkit-background-clip: text;
  background-clip: text;
}

.achieve-item__label {
  position: relative;
  z-index: 1;
  margin-bottom: var(--space-2);
  font-family: var(--font-display);
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.15rem);
  font-weight: var(--fw-semibold);
  letter-spacing: -0.015em;
  color: #FFFFFF;
}

.achieve-item__hint {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: var(--fs-sm);
  line-height: var(--lh-snug);
  color: rgba(255, 255, 255, 0.45);
  max-width: 28ch;
}

.achieve-item--hero .achieve-item__hint {
  max-width: 32ch;
  font-size: var(--fs-base);
  color: rgba(255, 255, 255, 0.5);
}

@media (prefers-reduced-motion: reduce) {
  .achieve__shape {
    animation: none !important;
  }

  .achieve-item:hover {
    transform: none;
  }
}

/* ============================================================
   FIN PILOT — Testimonials (Voices)
   CTA + horizontal review track
   ============================================================ */

.voices {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(3.5rem, 7vw, 6rem);
  background: var(--color-soft-gray);
}

.voices__wash {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 50% 40% at 15% 20%, rgba(31, 182, 166, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 45% 35% at 90% 80%, rgba(18, 58, 111, 0.07) 0%, transparent 50%);
  pointer-events: none;
}

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

.voices__intro {
  max-width: 40rem;
  margin: 0 auto 1.75rem;
  text-align: center;
}

.voices__title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.75rem, 1.3rem + 1.8vw, 2.65rem);
  font-weight: var(--fw-bold);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--color-navy);
}

.voices__lede {
  margin: 0 auto;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  max-width: 48ch;
}

.voices__toolbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1rem;
}

.voices__nav-group {
  display: flex;
  gap: 0.5rem;
}

.voices__nav {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 0.55rem;
  color: #fff;
  background: var(--color-navy);
  border: 0;
  box-shadow: 0 8px 20px rgba(18, 58, 111, 0.2);
  transition:
    transform var(--duration-fast) var(--ease-out),
    background var(--duration-fast) var(--ease-out),
    opacity var(--duration-fast) var(--ease-out);
}

.voices__nav svg {
  width: 18px;
  height: 18px;
}

.voices__nav:hover:not(:disabled) {
  background: var(--color-teal);
  transform: translateY(-1px);
}

.voices__nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.voices__stage {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
}

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

/* CTA card */
.voice-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.15rem;
  min-height: 280px;
  padding: 2rem 1.5rem;
  border-radius: 1.35rem;
  background:
    linear-gradient(165deg, #0C2A52 0%, #123A6F 48%, #0A3D4A 100%);
  box-shadow: 0 18px 44px rgba(18, 58, 111, 0.22);
  color: #fff;
}

.voice-cta__title {
  margin: 0;
  font-size: clamp(1.2rem, 1rem + 0.7vw, 1.5rem);
  font-weight: var(--fw-bold);
  line-height: 1.3;
  letter-spacing: -0.02em;
  max-width: 14ch;
  color: #ffffff;
}

.voice-cta__stars {
  display: flex;
  gap: 3px;
}

.voice-cta__stars svg {
  width: 16px;
  height: 16px;
  fill: #30D5C8;
}

.voice-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.35rem;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  color: #fff;
  font-size: 0.88rem;
  font-weight: var(--fw-semibold);
  text-decoration: none;
  transition:
    background var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out);
}

.voice-cta__btn svg {
  width: 16px;
  height: 16px;
}

.voice-cta__btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  transform: translateY(-1px);
}

/* Track */
.voices__track-wrap {
  min-width: 0;
  overflow: hidden;
}

.voices__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 0.35rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

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

.voice-card {
  flex: 0 0 min(320px, 78vw);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 1.35rem 1.4rem 1.45rem;
  border-radius: 1.35rem;
  background: #fff;
  border: 1px solid rgba(18, 58, 111, 0.1);
  box-shadow: 0 10px 28px rgba(18, 58, 111, 0.06);
}

.voice-card__head {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(18, 58, 111, 0.08);
}

.voice-card__avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
  color: #fff;
}

.voice-card__avatar--1 { background: linear-gradient(145deg, #1FB6A6, #123A6F); }
.voice-card__avatar--2 { background: linear-gradient(145deg, #123A6F, #1A4A85); }
.voice-card__avatar--3 { background: linear-gradient(145deg, #0A3D4A, #1FB6A6); }
.voice-card__avatar--4 { background: linear-gradient(145deg, #0C2A52, #30D5C8); }
.voice-card__avatar--5 { background: linear-gradient(145deg, #1A4A85, #1FB6A6); }
.voice-card__avatar--6 { background: linear-gradient(145deg, #123A6F, #0A3D4A); }

.voice-card__name {
  margin: 0 0 0.15rem;
  font-size: 0.98rem;
  font-weight: var(--fw-semibold);
  color: var(--color-navy);
  letter-spacing: -0.015em;
}

.voice-card__role {
  margin: 0 0 0.4rem;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.35;
}

.voice-card__stars {
  display: flex;
  gap: 2px;
}

.voice-card__stars svg {
  width: 13px;
  height: 13px;
  fill: #E8A317;
}

.voice-card__body {
  flex: 1;
  overflow-y: auto;
  max-height: 148px;
  padding-right: 0.35rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(18, 58, 111, 0.2) transparent;
}

.voice-card__body::-webkit-scrollbar {
  width: 3px;
}

.voice-card__body::-webkit-scrollbar-thumb {
  background: rgba(18, 58, 111, 0.22);
  border-radius: 999px;
}

.voice-card__body p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

@media (max-width: 860px) {
  .voice-cta {
    min-height: 220px;
  }

  .voices__toolbar {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .voices__track {
    scroll-behavior: auto;
  }
}

/* ============================================================
   FIN PILOT — FAQ
   Two-column · intro left · accordion right
   ============================================================ */

.faq {
  position: relative;
  overflow-x: hidden;
  padding-block: clamp(3.5rem, 7vw, 6rem);
  background:
    radial-gradient(ellipse 50% 40% at 0% 20%, rgba(31, 182, 166, 0.06) 0%, transparent 55%),
    #FFFFFF;
}

.faq__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .faq__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 3rem 4rem;
  }
}

.faq__intro {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
  max-width: none;
  height: 100%;
  min-height: 100%;
  padding: 1.5rem 1.4rem 1.5rem;
  border-radius: 1.35rem;
  background:
    linear-gradient(160deg, rgba(245, 248, 252, 0.95) 0%, rgba(238, 245, 248, 0.9) 100%);
  border: 1px solid rgba(18, 58, 111, 0.08);
  box-shadow: 0 16px 40px rgba(18, 58, 111, 0.05);
  overflow: hidden;
}

@media (min-width: 900px) {
  .faq__intro {
    align-self: stretch;
    padding: 1.75rem 1.6rem 1.65rem;
  }
}

.faq__intro-glow {
  position: absolute;
  top: -30%;
  right: -25%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 182, 166, 0.22) 0%, transparent 70%);
  pointer-events: none;
}

.faq__intro-main {
  position: relative;
  flex: 1 1 auto;
}

.faq__intro-foot {
  position: relative;
  margin-top: auto;
  padding-top: 1.25rem;
}

.faq__eyebrow {
  position: relative;
  margin-bottom: var(--space-3);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-teal);
}

.faq__title {
  position: relative;
  margin-bottom: var(--space-4);
  font-size: clamp(1.85rem, 1.35rem + 1.8vw, 2.75rem);
  font-weight: var(--fw-bold);
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--color-navy);
}

.faq__title span {
  color: var(--color-teal);
}

.faq__lede {
  position: relative;
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  max-width: 34ch;
}

.faq__assures {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq__assures li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.faq__assure-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  color: var(--color-teal);
  background: rgba(31, 182, 166, 0.12);
  border: 1px solid rgba(31, 182, 166, 0.22);
}

.faq__assure-icon svg {
  width: 0.85rem;
  height: 0.85rem;
}

.faq__assure-title {
  margin: 0 0 0.15rem;
  font-size: 0.88rem;
  font-weight: var(--fw-semibold);
  color: var(--color-navy);
  letter-spacing: -0.01em;
}

.faq__assure-text {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--color-text-muted);
}

.faq__help {
  position: relative;
  margin-bottom: 1rem;
  padding: 1rem 1.05rem;
  border-radius: 1rem;
  background:
    linear-gradient(155deg, rgba(12, 42, 82, 0.97) 0%, rgba(18, 58, 111, 0.94) 100%);
  color: #fff;
  box-shadow: 0 14px 32px rgba(18, 58, 111, 0.18);
}

.faq__help-top {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.faq__help-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.65rem;
  color: #30D5C8;
  background: rgba(48, 213, 200, 0.14);
  border: 1px solid rgba(48, 213, 200, 0.25);
}

.faq__help-icon svg {
  width: 1.05rem;
  height: 1.05rem;
}

.faq__help-title {
  margin: 0 0 0.2rem;
  font-size: 0.92rem;
  font-weight: var(--fw-semibold);
  letter-spacing: -0.01em;
}

.faq__help-text {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.65);
}

.faq__help-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.faq__help-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: var(--fw-semibold);
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition:
    background var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out);
}

.faq__help-btn--primary {
  background: var(--color-teal);
  border-color: var(--color-teal);
  color: #0C2A52;
}

.faq__help-btn:hover {
  transform: translateY(-1px);
  border-color: #fff;
}

.faq__help-btn--primary:hover {
  background: #30D5C8;
  border-color: #30D5C8;
}

.faq__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: var(--fw-semibold);
  color: var(--color-navy);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out), gap var(--duration-fast) var(--ease-out);
}

.faq__cta svg {
  width: 1rem;
  height: 1rem;
  color: var(--color-teal);
  transition: transform var(--duration-fast) var(--ease-out);
}

.faq__cta:hover {
  color: var(--color-teal);
  gap: 0.55rem;
}

.faq__cta:hover svg {
  transform: translateX(2px);
}

.faq__list {
  border-top: 1px solid rgba(18, 58, 111, 0.1);
  border-radius: 0;
  background: transparent;
  min-width: 0;
}

@media (min-width: 900px) {
  .faq__list {
    padding: 0.25rem 0 0.25rem 0.25rem;
  }
}

.faq-item {
  border-bottom: 1px solid rgba(18, 58, 111, 0.1);
}

.faq-item__q {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

.faq-item__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: 100%;
  padding: clamp(1.15rem, 2vw, 1.45rem) 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(0.98rem, 0.92rem + 0.25vw, 1.1rem);
  font-weight: var(--fw-semibold);
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--color-navy);
  transition: color var(--duration-fast) var(--ease-out);
}

.faq-item__trigger:hover {
  color: var(--color-teal);
}

.faq-item.is-open .faq-item__trigger {
  color: var(--color-navy);
}

.faq-item__icon {
  position: relative;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(31, 182, 166, 0.1);
  border: 1px solid rgba(31, 182, 166, 0.2);
  transition:
    background var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out);
}

.faq-item.is-open .faq-item__icon {
  background: rgba(31, 182, 166, 0.18);
  border-color: rgba(31, 182, 166, 0.35);
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--color-navy);
  border-radius: 1px;
  transition:
    transform var(--duration-base) var(--ease-out),
    background-color var(--duration-fast) var(--ease-out),
    opacity var(--duration-fast) var(--ease-out);
}

.faq-item__icon::before {
  width: 12px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}

.faq-item__icon::after {
  width: 1.5px;
  height: 12px;
  transform: translate(-50%, -50%);
}

.faq-item.is-open .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-item.is-open .faq-item__icon::before {
  background: var(--color-teal);
}

.faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--duration-slow) var(--ease-out);
}

.faq-item.is-open .faq-item__panel {
  grid-template-rows: 1fr;
}

.faq-item__panel[hidden] {
  display: grid;
}

.faq-item__answer {
  overflow: hidden;
  min-height: 0;
}

.faq-item__answer p {
  margin: 0;
  padding: 0 2.5rem clamp(1.15rem, 2vw, 1.45rem) 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 52ch;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity var(--duration-base) var(--ease-out) 60ms,
    transform var(--duration-base) var(--ease-out) 60ms;
}

.faq-item.is-open .faq-item__answer p {
  opacity: 1;
  transform: translateY(0);
}

.faq-item--more[hidden] {
  display: none;
}

.faq__more-wrap {
  display: flex;
  justify-content: flex-start;
  margin-top: 0.85rem;
  padding-top: 0.15rem;
}

.faq__more {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  border: 1.5px solid rgba(18, 58, 111, 0.18);
  background: #fff;
  color: var(--color-navy);
  font-size: 0.9rem;
  font-weight: var(--fw-semibold);
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(18, 58, 111, 0.06);
  transition:
    background var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out),
    color var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out);
}

.faq__more svg {
  width: 16px;
  height: 16px;
  color: var(--color-teal);
  transition: transform var(--duration-fast) var(--ease-out);
}

.faq__more:hover {
  border-color: var(--color-teal);
  color: var(--color-teal);
  transform: translateY(-1px);
}

.faq__more[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

@media (prefers-reduced-motion: reduce) {
  .faq-item__panel,
  .faq-item__answer p,
  .faq-item__icon::before,
  .faq-item__icon::after {
    transition: none !important;
  }
}

/* ============================================================
   FIN PILOT — Premium CTA
   Full-bleed illustration · gradient overlay · animated glow
   ============================================================ */

.cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(520px, 75vh, 680px);
  display: flex;
  align-items: center;
  padding-block: clamp(5rem, 10vw, 8.5rem);
  color: #FFFFFF;
}

.cta__illus {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta__illus-svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      105deg,
      rgba(6, 18, 33, 0.92) 0%,
      rgba(12, 42, 82, 0.78) 42%,
      rgba(10, 61, 74, 0.45) 72%,
      rgba(6, 18, 33, 0.55) 100%
    ),
    linear-gradient(180deg, transparent 50%, rgba(6, 18, 33, 0.55) 100%);
  pointer-events: none;
}

.cta__glow {
  position: absolute;
  z-index: 2;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
}

.cta__glow--1 {
  width: min(420px, 55vw);
  height: min(420px, 55vw);
  top: 10%;
  right: 8%;
  background: rgba(48, 213, 200, 0.45);
  animation: cta-glow-pulse 5s var(--ease-in-out) infinite;
}

.cta__glow--2 {
  width: min(280px, 40vw);
  height: min(280px, 40vw);
  bottom: 15%;
  left: 10%;
  background: rgba(31, 182, 166, 0.28);
  animation: cta-glow-pulse 7s var(--ease-in-out) infinite;
  animation-delay: -2.5s;
}

@keyframes cta-glow-pulse {
  0%, 100% {
    opacity: 0.45;
    transform: scale(1);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.12);
  }
}

.cta__inner {
  position: relative;
  z-index: 3;
  width: 100%;
}

.cta__content {
  max-width: 38rem;
}

.cta__eyebrow {
  margin-bottom: var(--space-4);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-teal-bright);
}

.cta__title {
  margin-bottom: var(--space-5);
  font-size: clamp(2.35rem, 1.6rem + 3vw, 4rem);
  font-weight: var(--fw-bold);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #FFFFFF;
}

.cta__title em {
  font-style: normal;
  background: linear-gradient(120deg, #30D5C8 0%, #A8F0E8 50%, #FFFFFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta__lede {
  margin-bottom: var(--space-8);
  font-size: clamp(1.05rem, 1rem + 0.3vw, 1.2rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  max-width: 38ch;
}

/* Buttons */
.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.01em;
  transition:
    transform var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out),
    background var(--duration-base) var(--ease-out),
    color var(--duration-base) var(--ease-out),
    border-color var(--duration-base) var(--ease-out);
}

.cta__btn:hover {
  transform: translateY(-2px);
}

.cta__btn--primary {
  background: linear-gradient(135deg, #1FB6A6 0%, #30D5C8 100%);
  color: var(--color-navy-deep);
  box-shadow:
    0 10px 36px rgba(31, 182, 166, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset;
  animation: cta-btn-glow 3.5s var(--ease-in-out) infinite;
}

.cta__btn--primary:hover {
  box-shadow:
    0 14px 44px rgba(48, 213, 200, 0.55),
    0 0 40px rgba(48, 213, 200, 0.35);
}

@keyframes cta-btn-glow {
  0%, 100% {
    box-shadow:
      0 10px 36px rgba(31, 182, 166, 0.4),
      0 0 20px rgba(48, 213, 200, 0.15);
  }
  50% {
    box-shadow:
      0 12px 44px rgba(31, 182, 166, 0.55),
      0 0 36px rgba(48, 213, 200, 0.35);
  }
}

.cta__btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.cta__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(48, 213, 200, 0.55);
  box-shadow: 0 0 28px rgba(48, 213, 200, 0.2);
}

/* Trust icons */
.cta__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
  padding-block: 1.25rem;
  border-block: 1px solid rgba(255, 255, 255, 0.12);
}

.cta__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.7);
}

.cta__trust-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--color-teal-bright);
  background: rgba(48, 213, 200, 0.12);
  box-shadow: 0 0 16px rgba(48, 213, 200, 0.2);
}

.cta__trust-icon svg {
  width: 14px;
  height: 14px;
}

/* Contact info */
.cta__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2.5rem;
  font-style: normal;
}

.cta__contact-link {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: opacity var(--duration-fast) var(--ease-out);
}

.cta__contact-link:hover {
  opacity: 0.85;
}

.cta__contact-link--static {
  cursor: default;
}

.cta__contact-label {
  font-size: 0.65rem;
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.cta__contact-value {
  font-family: var(--font-display);
  font-size: var(--fs-base);
  font-weight: var(--fw-medium);
  letter-spacing: -0.015em;
  color: #FFFFFF;
}

@media (prefers-reduced-motion: reduce) {
  .cta__glow--1,
  .cta__glow--2,
  .cta__btn--primary {
    animation: none !important;
  }
}

/* ============================================================
   FIN PILOT — Density Pass
   Less scroll · content always readable · compact layouts
   ============================================================ */

/* Shared: tighter section rhythm */
.trust,
.services,
.about,
.why,
.journey,
.products,
.achieve,
.voices,
.faq {
  padding-block: clamp(2.75rem, 5vw, 4.5rem);
}

.trust__intro,
.services__intro,
.about__intro,
.why__intro,
.journey__intro,
.products__intro,
.achieve__intro {
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.trust__intro {
  margin-bottom: 0;
}

/* ---- Trust: denser cards ---- */
.trust-card__body {
  padding: 1.1rem 1.15rem;
}

.trust-card--feature .trust-card__body {
  padding: 1.25rem 1.35rem;
  min-height: 0;
}

.trust-card__value {
  font-size: clamp(1.65rem, 1.3rem + 1.2vw, 2.4rem);
  margin-bottom: 0.25rem;
}

.trust-card--feature .trust-card__value {
  font-size: clamp(2rem, 1.6rem + 1.4vw, 2.75rem);
}

.trust-card__spark {
  height: 28px;
  margin-top: 0.6rem;
}

.trust-card__hint {
  font-size: 0.8rem;
}

.trust-partners {
  gap: 0.35rem;
}

.trust-partners__item {
  padding: 0.3rem 0.55rem;
  font-size: 0.65rem;
}

@media (min-width: 992px) {
  .trust-card--years,
  .trust-card--clients,
  .trust-card--success,
  .trust-card--feature,
  .trust-card--partners {
    animation: none;
    --float-y: 0px;
    translate: none;
  }
}

/* ---- Services: denser arc cards ---- */
.svc__panel {
  min-height: 0;
  padding: 1.15rem 1.1rem 1.1rem;
}

.svc__icon {
  width: 52px;
  height: 52px;
  margin-bottom: var(--space-3);
}

.svc__desc {
  margin-bottom: var(--space-4);
  font-size: 0.8125rem;
}

@media (min-width: 1100px) {
  .services__arc {
    padding-block: 1rem 0.25rem;
  }

  .svc--fd { translate: 0 28px; }
  .svc--mf { translate: 0 12px; }
  .svc--life { translate: 0 0; scale: 1.02; }
  .svc--vehicle { translate: 0 12px; }
  .svc--general { translate: 0 28px; }

  .svc--fd:hover { translate: 0 18px; scale: 1.02; }
  .svc--mf:hover { translate: 0 4px; scale: 1.02; }
  .svc--life:hover { translate: 0 -8px; scale: 1.05; }
  .svc--vehicle:hover { translate: 0 4px; scale: 1.02; }
  .svc--general:hover { translate: 0 18px; scale: 1.02; }
}

.svc--life .svc__panel {
  min-height: 0;
}

/* ---- Why: compact features ---- */

/* ---- Why Choose Us: compact 3-col cards (not tall timeline) ---- */
@media (min-width: 768px) {
  .why__spine {
    display: none;
  }

  .why__timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: none;
  }

  .why-step,
  .why-step--left,
  .why-step--right {
    justify-content: stretch;
    padding: 0;
  }

  .why-step__connector {
    display: none;
  }

  .why-step__node {
    left: 1.1rem;
    top: 1.15rem;
    transform: none;
    width: 10px;
    height: 10px;
  }

  .why-step__card {
    max-width: none;
    width: 100%;
    padding: 1.15rem 1.15rem 1.1rem;
    border-radius: 1.15rem !important;
  }

  .why-step__icon {
    width: 40px;
    height: 40px;
    margin-bottom: var(--space-3);
  }

  .why-step__text {
    font-size: 0.8125rem;
  }
}

@media (max-width: 767.98px) {
  .why__timeline {
    gap: 0.85rem;
  }

  .why-step::before {
    bottom: -0.85rem;
  }
}

/* ---- Products: shorter horizontal cards ---- */
.product {
  border-radius: 1.25rem;
}

@media (min-width: 900px) {
  .product,
  .product--reverse {
    grid-template-columns: 0.95fr 1.05fr;
    min-height: 0;
  }

  .product--fd,
  .product--mf,
  .product--life {
    margin-left: 0;
    margin-right: 0;
  }
}

.products__stack {
  gap: 1rem;
}

.product__media {
  min-height: 180px;
}

.product__content {
  padding: 1.25rem 1.35rem;
}

.product__desc {
  margin-bottom: var(--space-3);
  font-size: 0.9rem;
}

.product__highlights {
  margin-bottom: var(--space-4);
}

.product__btn {
  min-height: 42px;
  padding: 0.55rem 1.15rem;
}

/* ---- Achievements: single compact row ---- */
.achieve__board {
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .achieve__board {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .achieve-item--hero {
    grid-row: auto;
  }
}

.achieve-item,
.achieve-item--hero {
  min-height: 0;
  padding: 1.15rem 1rem;
  justify-content: flex-start;
}

.achieve-item__value,
.achieve-item--hero .achieve-item__value {
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2.1rem);
  margin-bottom: 0.35rem;
}

.achieve-item__hint,
.achieve-item--hero .achieve-item__hint {
  font-size: 0.75rem;
  max-width: none;
}

.achieve-item__label {
  font-size: 0.9rem;
}

/* ---- Voices / FAQ slightly tighter ---- */

.cta {
  min-height: 0;
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}

.faq-item__trigger {
  padding: 1.1rem 0;
}
