/* ============================================================
   FIN PILOT — Services Page (Luxury · Same design system)
   ============================================================ */

/* ---- Shared ---- */

.fade-up {
  opacity: 0;
  transform: translateY(32px);
  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: 90ms; }
.fade-up-delay-2 { transition-delay: 180ms; }
.fade-up-delay-3 { transition-delay: 270ms; }
.fade-up-delay-4 { transition-delay: 360ms; }

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.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: #fff;
  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);
  transform: translateY(-2px);
}

/* ============================================================
   1. HERO BANNER
   ============================================================ */

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

.shero__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%);
}

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

.shero__blob--1 {
  width: min(55vw, 560px);
  height: min(55vw, 560px);
  top: -12%;
  left: -8%;
  background: rgba(31, 182, 166, 0.45);
}

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

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

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

@keyframes sh-drift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(24px, -30px) scale(1.08); }
}

.shero__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.shero__grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 65% 55% at 50% 40%, #000 15%, transparent 72%);
  opacity: 0.55;
  pointer-events: none;
}

.shero__beam {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 22%;
  width: 2px;
  height: 48%;
  background: linear-gradient(180deg, transparent, rgba(48, 213, 200, 0.55), transparent);
  opacity: 0.65;
  pointer-events: none;
  animation: sh-beam 6s var(--ease-in-out) infinite;
}

@keyframes sh-beam {
  0%, 100% { opacity: 0.35; transform: scaleY(0.9); }
  50% { opacity: 0.8; transform: scaleY(1); }
}

.shero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  width: 100%;
}

@media (min-width: 992px) {
  .shero__inner {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

/* Breadcrumb */

.shero__crumb {
  margin-bottom: var(--space-5);
}

.shero__crumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.shero__crumb-list li:not(:last-child)::after {
  content: "/";
  margin-left: 0.45rem;
  color: rgba(48, 213, 200, 0.55);
}

.shero__crumb-list a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

.shero__crumb-list a:hover {
  color: var(--color-teal-bright);
}

.shero__crumb-list [aria-current="page"] {
  color: var(--color-teal-bright);
}

.shero__title {
  margin-bottom: var(--space-5);
  font-size: clamp(2.15rem, 1.4rem + 2.8vw, 3.5rem);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: #fff;
}

.shero__title em {
  font-style: normal;
  background: linear-gradient(135deg, #30D5C8, #7EEDE4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.shero__lede {
  margin-bottom: var(--space-8);
  max-width: 34rem;
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
  color: rgba(255, 255, 255, 0.78);
}

.shero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.shero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.shero__pills li {
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Hero enter */

.shero-enter {
  opacity: 0;
  transform: translateY(18px);
  animation: sh-enter 0.85s var(--ease-out) forwards;
}

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

@keyframes sh-enter {
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .shero-enter {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* Hero stage */

.shero__stage {
  position: relative;
  min-height: clamp(340px, 48vw, 480px);
  display: grid;
  place-items: center;
}

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

.shero__orbit--outer {
  width: min(92%, 440px);
  aspect-ratio: 1;
  animation: sh-spin 48s linear infinite;
}

.shero__orbit--outer::before,
.shero__orbit--outer::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #30D5C8;
  box-shadow: 0 0 16px rgba(48, 213, 200, 0.8);
}

.shero__orbit--outer::before { top: 8%; left: 50%; }
.shero__orbit--outer::after { bottom: 12%; right: 10%; background: #1FB6A6; }

.shero__orbit--inner {
  width: min(68%, 300px);
  aspect-ratio: 1;
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.12);
  animation: sh-spin 32s linear infinite reverse;
}

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

.shero__core {
  position: relative;
  z-index: 2;
  width: min(78%, 340px);
  transform: translate(var(--px, 0), var(--py, 0));
}

.shero__core-glow {
  position: absolute;
  inset: 15%;
  border-radius: 50%;
  background: rgba(48, 213, 200, 0.28);
  filter: blur(40px);
  animation: sh-pulse 4s var(--ease-in-out) infinite;
}

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

.shero__core-svg {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
}

.shero__illus-caption {
  position: absolute;
  left: 50%;
  bottom: 6%;
  transform: translateX(-50%);
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  white-space: nowrap;
}

.shero-float {
  position: absolute;
  z-index: 3;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  transform: translate(var(--px, 0), var(--py, 0));
}

.shero-float__label {
  margin: 0 0 0.15rem;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.shero-float__value {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: var(--fw-bold);
  color: #fff;
}

.shero-float--a { top: 8%; left: 0; }
.shero-float--b { top: 18%; right: 0; }
.shero-float--c { bottom: 22%; left: 2%; }
.shero-float--d { bottom: 12%; right: 4%; }

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

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

.shero__wave-back {
  fill: rgba(245, 248, 252, 0.45);
}

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

@media (max-width: 991px) {
  .shero-float--a,
  .shero-float--d { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .shero__blob,
  .shero__beam,
  .shero__orbit,
  .shero__core-glow {
    animation: none;
  }
}

/* ============================================================
   2. SERVICES GRID
   ============================================================ */

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

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

.slist__aura--1 {
  width: min(480px, 60vw);
  height: min(480px, 60vw);
  top: 5%;
  right: -10%;
  background: rgba(31, 182, 166, 0.12);
}

.slist__aura--2 {
  width: min(400px, 50vw);
  height: min(400px, 50vw);
  bottom: 10%;
  left: -8%;
  background: rgba(18, 58, 111, 0.08);
}

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

.slist__intro {
  max-width: 34rem;
  margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
}

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

.slist__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.55rem, 1.2rem + 1.2vw, 2.15rem);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--color-navy);
}

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

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

.slist__grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.35rem);
}

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

@media (min-width: 1100px) {
  .slist__grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .slist__grid .scard:nth-child(1),
  .slist__grid .scard:nth-child(2),
  .slist__grid .scard:nth-child(3) {
    grid-column: span 2;
  }

  .slist__grid .scard:nth-child(4) {
    grid-column: 2 / 4;
  }

  .slist__grid .scard:nth-child(5) {
    grid-column: 4 / 6;
  }
}

/* Service cards */

.scard {
  position: relative;
  isolation: isolate;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: transform var(--duration-base) var(--ease-out);
}

.scard:hover {
  transform: translateY(-4px);
}

.scard__glow {
  position: absolute;
  inset: 10% 15%;
  border-radius: 50%;
  background: rgba(31, 182, 166, 0.2);
  filter: blur(40px);
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-out);
  z-index: 0;
  pointer-events: none;
}

.scard:hover .scard__glow {
  opacity: 1;
}

.scard__border {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(145deg, rgba(48, 213, 200, 0.65), rgba(18, 58, 111, 0.25), rgba(48, 213, 200, 0.4));
  -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;
  opacity: 0.55;
  transition: opacity var(--duration-base) var(--ease-out);
  z-index: 1;
  pointer-events: none;
}

.scard:hover .scard__border {
  opacity: 1;
}

.scard__panel {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: inherit;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.92) 0%, rgba(245, 248, 252, 0.88) 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 18px 48px rgba(18, 58, 111, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
}

.scard__media {
  position: relative;
  height: clamp(150px, 18vw, 190px);
  overflow: hidden;
  background: var(--color-navy-deep);
}

.scard__media img,
.scard__illus-svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s var(--ease-out);
}

.scard__media--illus .scard__illus-svg {
  object-fit: contain;
  padding: 1.1rem 1.5rem;
  box-sizing: border-box;
}

.scard:hover .scard__media img,
.scard:hover .scard__illus-svg {
  transform: scale(1.04);
}

.scard__media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(6, 18, 33, 0.5) 100%);
  pointer-events: none;
}

.scard__media-label {
  position: absolute;
  left: 0.85rem;
  bottom: 0.65rem;
  font-size: 0.6rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.scard__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: clamp(1.2rem, 2.2vw, 1.55rem);
  min-height: 11.5rem;
}

.scard__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 0.55rem;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(31, 182, 166, 0.1);
  border: 1px solid rgba(31, 182, 166, 0.2);
  transition: transform var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out);
}

.scard__icon svg {
  width: 22px;
  height: 22px;
}

.scard:hover .scard__icon {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 10px 24px rgba(31, 182, 166, 0.22);
}

.scard__index {
  margin: 0 0 0.25rem;
  font-size: 0.65rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.14em;
  color: var(--color-teal);
}

.scard__name {
  margin: 0 0 0.4rem;
  font-size: clamp(1.05rem, 0.95rem + 0.35vw, 1.2rem);
  font-weight: var(--fw-bold);
  letter-spacing: -0.02em;
  color: var(--color-navy);
}

.scard__desc {
  margin: 0 0 1.25rem;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.scard__more {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  font-family: var(--font-display);
  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);
}

.scard__more-arrow {
  display: inline-flex;
  transition: transform var(--duration-fast) var(--ease-out);
}

.scard__more-arrow svg {
  width: 16px;
  height: 16px;
  color: var(--color-teal);
}

.scard__more:hover {
  color: var(--color-teal);
  gap: 0.65rem;
}

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

/* Unique card accents */

.scard--fd .scard__panel {
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.95) 0%, rgba(232, 245, 248, 0.9) 100%);
}

.scard--mf .scard__icon {
  background: rgba(18, 58, 111, 0.08);
  border-color: rgba(18, 58, 111, 0.15);
}

.scard--life .scard__border {
  background: linear-gradient(145deg, rgba(48, 213, 200, 0.8), rgba(12, 42, 82, 0.35), rgba(31, 182, 166, 0.5));
}

.scard--vehicle .scard__panel {
  box-shadow:
    0 18px 48px rgba(18, 58, 111, 0.12),
    0 0 0 1px rgba(31, 182, 166, 0.12) inset;
}

.scard--general .scard__icon {
  border-radius: 50%;
}

@media (prefers-reduced-motion: reduce) {
  .scard,
  .scard__media img,
  .scard__illus-svg,
  .scard__icon {
    transition: none;
  }

  .scard:hover {
    transform: none;
  }
}

/* ============================================================
   3. WHY CHOOSE
   ============================================================ */

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

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

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

.swhy__orb--1 {
  width: min(380px, 50vw);
  height: min(380px, 50vw);
  top: -8%;
  right: -6%;
  background: rgba(48, 213, 200, 0.16);
}

.swhy__orb--2 {
  width: min(300px, 40vw);
  height: min(300px, 40vw);
  bottom: 5%;
  left: -8%;
  background: rgba(18, 58, 111, 0.1);
}

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

.swhy__intro {
  max-width: 36rem;
  margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
}

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

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

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

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

.swhy__grid {
  display: grid;
  gap: clamp(0.85rem, 1.6vw, 1.15rem);
  grid-template-columns: 1fr;
}

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

@media (min-width: 1024px) {
  .swhy__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.swhy-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.15rem 1.2rem 1.2rem;
  border-radius: calc(var(--radius-lg) + 4px);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 248, 252, 0.92) 100%);
  border: 1px solid rgba(18, 58, 111, 0.08);
  box-shadow:
    0 12px 32px rgba(18, 58, 111, 0.06),
    0 0 0 1px rgba(255, 255, 255, 0.7) inset;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  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);
}

.swhy-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 1.2rem;
  right: 1.2rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(48, 213, 200, 0.55), transparent);
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-out);
}

.swhy-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, rgba(48, 213, 200, 0.55), transparent 42%, rgba(18, 58, 111, 0.18));
  -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;
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-out);
  pointer-events: none;
}

.swhy-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 22px 48px rgba(18, 58, 111, 0.12),
    0 0 28px rgba(31, 182, 166, 0.12);
  border-color: transparent;
}

.swhy-card:hover::before,
.swhy-card:hover::after {
  opacity: 1;
}

.swhy-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.swhy-card__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(31, 182, 166, 0.16), rgba(48, 213, 200, 0.08));
  color: var(--color-teal);
  border: 1px solid rgba(31, 182, 166, 0.22);
  box-shadow: 0 8px 18px rgba(31, 182, 166, 0.12);
  transition: transform var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out);
}

.swhy-card:hover .swhy-card__icon {
  transform: scale(1.06);
  box-shadow: 0 10px 22px rgba(31, 182, 166, 0.22);
}

.swhy-card__icon svg {
  width: 20px;
  height: 20px;
}

.swhy-card__num {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  color: rgba(18, 58, 111, 0.28);
  transition: color var(--duration-fast) var(--ease-out);
}

.swhy-card:hover .swhy-card__num {
  color: var(--color-teal);
}

.swhy-card__title {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: var(--fw-bold);
  letter-spacing: -0.02em;
  color: var(--color-navy);
}

.swhy-card__text {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

@media (prefers-reduced-motion: reduce) {
  .swhy-card,
  .swhy-card__icon {
    transition: none;
  }

  .swhy-card:hover {
    transform: none;
  }
}

/* ============================================================
   4. FINANCIAL PROCESS
   ============================================================ */

.sflow {
  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%);
}

.sflow__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;
}

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

.sflow__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);
}

.sflow__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);
}

.sflow__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;
}

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

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

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

.sflow__rail {
  display: none;
}

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

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

.sflow__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;
}

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

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

.sflow-step__marker {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #123A6F, #0C2A52);
  border: 2px solid rgba(48, 213, 200, 0.45);
  box-shadow: 0 8px 24px rgba(18, 58, 111, 0.2);
  align-self: start;
}

.sflow-step__num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: var(--fw-bold);
  color: #30D5C8;
  letter-spacing: 0.04em;
}

.sflow-step__card {
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(18, 58, 111, 0.08);
  box-shadow: 0 12px 32px rgba(18, 58, 111, 0.06);
  transition:
    transform var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out);
}

.sflow-step.is-active .sflow-step__card,
.sflow-step:hover .sflow-step__card {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(18, 58, 111, 0.12);
}

.sflow-step__icon {
  width: 36px;
  height: 36px;
  margin-bottom: 0.55rem;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(31, 182, 166, 0.1);
  color: var(--color-teal);
}

.sflow-step__icon svg {
  width: 18px;
  height: 18px;
}

.sflow-step__label {
  margin: 0 0 0.2rem;
  font-size: 0.68rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-teal);
}

.sflow-step__title {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: var(--fw-bold);
  color: var(--color-navy);
  letter-spacing: -0.02em;
}

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

@media (min-width: 992px) {
  .sflow__rail {
    display: block;
    position: absolute;
    top: 1.35rem;
    left: 6%;
    right: 6%;
    height: 4px;
    z-index: 0;
  }

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

  .sflow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.85rem;
  }

  .sflow-step__marker {
    position: relative;
    z-index: 1;
  }

  .sflow-step__card {
    width: 100%;
  }
}

/* ============================================================
   FAQ — matches Homepage
   ============================================================ */

.faq {
  position: relative;
  padding-block: clamp(2.75rem, 5vw, 4.5rem);
  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);
  background: none;
  border: none;
  cursor: pointer;
  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 0 1.25rem;
  max-width: 40rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.35s var(--ease-out) 0.05s,
    transform 0.35s var(--ease-out) 0.05s;
}

.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;
  }
}

/* ============================================================
   CTA
   ============================================================ */

.scta {
  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: #fff;
}

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

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

.scta__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) 100%
    );
  pointer-events: none;
}

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

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

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

.scta__inner {
  position: relative;
  z-index: 3;
}

.scta__content {
  max-width: 40rem;
}

.scta__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);
}

.scta__title {
  margin-bottom: var(--space-5);
  font-size: clamp(2.1rem, 1.45rem + 2.5vw, 3.5rem);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: #fff;
}

.scta__title em {
  font-style: normal;
  background: linear-gradient(135deg, #30D5C8, #7EEDE4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.scta__lede {
  margin: 0 0 var(--space-8);
  max-width: 32rem;
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
  color: rgba(255, 255, 255, 0.78);
}

.scta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.scta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  transition:
    transform var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out),
    background var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out);
}

.scta__btn--primary {
  background: linear-gradient(135deg, #1FB6A6 0%, #30D5C8 100%);
  color: var(--color-navy-deep);
  box-shadow: 0 8px 32px rgba(31, 182, 166, 0.4);
}

.scta__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(48, 213, 200, 0.55);
}

.scta__btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.scta__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(48, 213, 200, 0.5);
  transform: translateY(-2px);
}

.scta__glasses {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.scta-glass {
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  min-width: 7.5rem;
}

.scta-glass__label {
  margin: 0 0 0.2rem;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.scta-glass__value {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: var(--fw-bold);
  color: #fff;
}

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