/* ============================================================
   Worldeoo — custom.css
   Apple-inspired design system — Light Theme
   ============================================================ */

/* ----------------------------------------------------------
   GLOBAL
   ---------------------------------------------------------- */
::selection {
  background-color: rgba(61, 196, 211, 0.2);
  color: #1d1d1f;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  letter-spacing: -0.011em;
}

button,
a,
[role="button"],
[role="option"],
input[type="checkbox"],
label[for],
.motivation-card,
.situation-card,
.faq-trigger,
.country-option {
  cursor: pointer;
}

/* ----------------------------------------------------------
   APPLE TRANSITION EASING
   All transitions use Apple's signature cubic-bezier
   ---------------------------------------------------------- */
:root {
  --apple-ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --apple-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --apple-duration: 0.6s;
  --apple-duration-fast: 0.35s;
}

/* ----------------------------------------------------------
   HERO
   ---------------------------------------------------------- */
.hero-gradient {
  background: linear-gradient(180deg,
    #147080 0%,
    #1a95a8 40%,
    #2bb2c4 70%,
    #f5f5f7 100%);
}

.hero-mesh {
  background-image:
    radial-gradient(ellipse 70% 50% at 30% 45%, rgba(31, 168, 185, 0.05) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 75% 25%, rgba(61, 196, 211, 0.03) 0%, transparent 60%);
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #fde68a 50%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ----------------------------------------------------------
   HEADER (Floating nav — Premium glassmorphism)
   ---------------------------------------------------------- */

/* Default state: floating pill */
.nav-bar {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    0 0 0 0.5px rgba(0, 0, 0, 0.04),
    0 2px 8px rgba(0, 0, 0, 0.04),
    0 8px 24px rgba(0, 0, 0, 0.06);
}

/* Scrolled state: wider, more opaque */
#header.header-scrolled .header-container {
  max-width: 100%;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

#header.header-scrolled .nav-bar {
  border-radius: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  height: 48px;
}

/* Nav link — pill style hover */
.nav-link {
  position: relative;
  font-weight: 500;
  letter-spacing: -0.005em;
}

.nav-pill {
  padding: 6px 12px;
  border-radius: 10px;
}

.nav-pill:hover {
  background: rgba(0, 0, 0, 0.04);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(31, 168, 185, 0.7), rgba(16, 185, 129, 0.5));
  border-radius: 1px;
  transition: width var(--apple-duration-fast) var(--apple-ease), left var(--apple-duration-fast) var(--apple-ease);
}

.nav-link:hover::after {
  width: 60%;
  left: 20%;
}

/* CTA button in nav */
.nav-cta-btn {
  background: linear-gradient(135deg, #1a95a8, #1fa8b9, #10b981);
  background-size: 200% 200%;
  box-shadow:
    0 2px 8px rgba(31, 168, 185, 0.25),
    0 0 0 0.5px rgba(31, 168, 185, 0.2) inset;
  position: relative;
  overflow: hidden;
}

.nav-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.nav-cta-btn:hover::before {
  left: 100%;
}

.nav-cta-btn:hover {
  box-shadow:
    0 4px 16px rgba(31, 168, 185, 0.35),
    0 0 0 0.5px rgba(31, 168, 185, 0.3) inset;
  transform: translateY(-1px);
}

.nav-cta-btn:active {
  transform: translateY(0) scale(0.98);
}

/* ----------------------------------------------------------
   HAMBURGER
   ---------------------------------------------------------- */
.hamburger-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 16px;
}

.hamburger-lines span {
  display: block;
  height: 1.5px;
  border-radius: 2px;
  background: #374151;
  transition: transform var(--apple-duration-fast) var(--apple-ease),
              opacity 0.2s ease,
              width 0.2s ease;
  transform-origin: center;
}

.hamburger-lines span:nth-child(1) { width: 100%; }
.hamburger-lines span:nth-child(2) { width: 75%; }
.hamburger-lines span:nth-child(3) { width: 100%; }

#hamburger-btn:hover .hamburger-lines span:nth-child(2) {
  width: 100%;
}

#hamburger-btn.active .hamburger-lines span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}

#hamburger-btn.active .hamburger-lines span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
  width: 100%;
}

#hamburger-btn.active .hamburger-lines span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

/* ----------------------------------------------------------
   MOBILE MENU — Fullscreen premium overlay
   ---------------------------------------------------------- */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  visibility: hidden;
}

.mobile-menu-overlay.open {
  pointer-events: auto;
  visibility: visible;
}

/* Backdrop */
.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.35s var(--apple-ease);
}

.mobile-menu-overlay.open .mobile-menu-backdrop {
  opacity: 1;
}

/* Sheet panel — slides from right */
.mobile-menu-sheet {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 88%;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border-left: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    -8px 0 32px rgba(0, 0, 0, 0.08),
    -24px 0 80px rgba(0, 0, 0, 0.04);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu-overlay.open .mobile-menu-sheet {
  transform: translateX(0);
}

/* Close button */
.mobile-menu-close {
  transition: all 0.2s var(--apple-ease);
}

.mobile-menu-close:active {
  transform: scale(0.9);
}

/* Navigation links */
.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 0.875rem;
  border-radius: 1rem;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
  opacity: 0;
  transform: translateX(20px);
}

.mobile-menu-overlay.open .mobile-nav-link {
  opacity: 1;
  transform: translateX(0);
  transition: background 0.2s ease,
              transform 0.4s cubic-bezier(0.32, 0.72, 0, 1) calc(var(--stagger, 0) * 50ms + 150ms),
              opacity 0.4s ease calc(var(--stagger, 0) * 50ms + 150ms);
}

.mobile-nav-link:active {
  background: rgba(0, 0, 0, 0.04);
  transform: scale(0.98);
}

/* Icon circle */
.mobile-nav-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Text block */
.mobile-nav-text {
  flex: 1;
  min-width: 0;
}

.mobile-nav-label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1d1d1f;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.mobile-nav-desc {
  display: block;
  font-size: 0.6875rem;
  color: #9ca3af;
  margin-top: 1px;
  font-weight: 400;
}

/* Resource cards */
.mobile-resource-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 1rem;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.04);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  opacity: 0;
  transform: translateX(20px);
}

.mobile-menu-overlay.open .mobile-resource-card {
  opacity: 1;
  transform: translateX(0);
  transition: background 0.2s ease, border-color 0.2s ease,
              transform 0.4s cubic-bezier(0.32, 0.72, 0, 1) calc(var(--stagger, 0) * 50ms + 150ms),
              opacity 0.4s ease calc(var(--stagger, 0) * 50ms + 150ms);
}

.mobile-resource-card:active {
  background: rgba(0, 0, 0, 0.05);
  transform: scale(0.98);
}

.mobile-resource-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mobile-resource-badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 3px 8px;
  border-radius: 6px;
  flex-shrink: 0;
  text-transform: uppercase;
}

/* CTA button */
.mobile-menu-cta {
  position: relative;
  overflow: hidden;
}

.mobile-menu-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  animation: premium-shimmer 2.8s ease-in-out infinite;
}

/* ----------------------------------------------------------
   RESOURCES DROPDOWN (Desktop nav)
   ---------------------------------------------------------- */
.resources-panel {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px) scale(0.98);
  transition: opacity 0.25s var(--apple-ease),
              visibility 0.25s var(--apple-ease),
              transform 0.25s var(--apple-ease);
  pointer-events: none;
}

.resources-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.resources-item {
  transition: background 0.2s ease, color 0.2s ease;
}

/* ----------------------------------------------------------
   CTA BUTTON (Apple: no pulse, clean hover)
   ---------------------------------------------------------- */
.cta-btn {
  position: relative;
  transition: transform var(--apple-duration-fast) var(--apple-ease),
              box-shadow var(--apple-duration-fast) var(--apple-ease);
}

.cta-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 24px rgba(31, 168, 185, 0.2);
}

.cta-btn:active {
  transform: scale(0.98);
}

/* ----------------------------------------------------------
   SECTION OVERLINE (replaces pill badges)
   ---------------------------------------------------------- */
.section-overline {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(31, 168, 185, 0.9);
  margin-bottom: 1rem;
}

/* ----------------------------------------------------------
   HOW IT WORKS — Cards, timeline, animations
   ---------------------------------------------------------- */

/* Progress line — animated fill on scroll */
.hiw-progress-line {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.hiw-progress-line.animate {
  transform: scaleX(1);
}

/* Step cards */
.hiw-card {
  text-align: center;
  position: relative;
}

.hiw-card-inner {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 1.5rem;
  padding: 2rem 1.75rem 1.75rem;
  transition: all 0.4s var(--apple-ease);
  position: relative;
  overflow: hidden;
}

/* Subtle shimmer on top edge */
.hiw-card-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  border-radius: 1px;
  background: linear-gradient(90deg, transparent, rgba(31, 168, 185, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--apple-ease);
}

.hiw-card:hover .hiw-card-inner {
  border-color: rgba(31, 168, 185, 0.2);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.04),
    0 16px 40px -8px rgba(31, 168, 185, 0.1);
  transform: translateY(-4px);
}

.hiw-card:hover .hiw-card-inner::before {
  opacity: 1;
}

/* Floating icon animation */
@keyframes hiw-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hiw-icon-float {
  animation: hiw-float 4s ease-in-out infinite;
}

/* Tags */
.hiw-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  background: rgba(31, 168, 185, 0.08);
  color: #1b8a9c;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hiw-tag-gold {
  background: rgba(251, 191, 36, 0.12);
  color: #b45309;
}

/* Mobile: vertical connector between cards */
@media (max-width: 1023px) {
  .hiw-card + .hiw-card::before {
    content: '';
    position: absolute;
    top: -1rem;
    left: 50%;
    width: 2px;
    height: 1rem;
    background: linear-gradient(to bottom, rgba(31, 168, 185, 0.15), rgba(31, 168, 185, 0.3));
    transform: translateX(-50%);
  }
}

/* ----------------------------------------------------------
   BENEFIT CARDS — Premium glassmorphism with mock UIs
   ---------------------------------------------------------- */
.benefit-card {
  position: relative;
  border-radius: 1.75rem;
  padding: 2px;
  transition: transform 0.5s var(--apple-ease), box-shadow 0.5s var(--apple-ease);
}

.benefit-card:hover {
  transform: translateY(-6px);
}

/* Gradient border via background on outer container */
.benefit-card--emerald { background: linear-gradient(135deg, rgba(16, 185, 129, 0.3), rgba(16, 185, 129, 0.08), rgba(16, 185, 129, 0.2)); }
.benefit-card--teal    { background: linear-gradient(135deg, rgba(31, 168, 185, 0.3), rgba(31, 168, 185, 0.08), rgba(31, 168, 185, 0.2)); }
.benefit-card--warm    { background: linear-gradient(135deg, rgba(251, 191, 36, 0.35), rgba(251, 191, 36, 0.08), rgba(251, 191, 36, 0.25)); }
.benefit-card--purple  { background: linear-gradient(135deg, rgba(147, 51, 234, 0.25), rgba(147, 51, 234, 0.06), rgba(147, 51, 234, 0.2)); }

/* Inner content — glassmorphism */
.benefit-card-content {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-radius: calc(1.75rem - 2px);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
}

/* Glow orb behind card */
.benefit-card-glow {
  position: absolute;
  width: 60%;
  height: 60%;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  pointer-events: none;
  transition: opacity 0.5s var(--apple-ease);
}

.benefit-card:hover .benefit-card-glow { opacity: 0.6; }

.benefit-card--emerald .benefit-card-glow { background: rgba(16, 185, 129, 0.4); top: 10%; right: -10%; }
.benefit-card--teal .benefit-card-glow    { background: rgba(31, 168, 185, 0.4); bottom: 10%; left: -10%; }
.benefit-card--warm .benefit-card-glow    { background: rgba(251, 191, 36, 0.35); top: 5%; left: 10%; }
.benefit-card--purple .benefit-card-glow  { background: rgba(147, 51, 234, 0.3); bottom: 5%; right: 5%; }

/* Hover shadow per variant */
.benefit-card--emerald:hover { box-shadow: 0 20px 60px -15px rgba(16, 185, 129, 0.2); }
.benefit-card--teal:hover    { box-shadow: 0 20px 60px -15px rgba(31, 168, 185, 0.2); }
.benefit-card--warm:hover    { box-shadow: 0 20px 60px -15px rgba(251, 191, 36, 0.2); }
.benefit-card--purple:hover  { box-shadow: 0 20px 60px -15px rgba(147, 51, 234, 0.15); }

/* Mock UI container */
.benefit-mock {
  background: linear-gradient(145deg, rgba(249, 250, 251, 0.9), rgba(243, 244, 246, 0.5));
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 1rem;
  padding: 1.25rem;
}

/* Animated bar for payment progress */
@keyframes benefit-bar-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; background: var(--color-we-400); }
}
.benefit-bar-animate {
  animation: benefit-bar-pulse 2s ease-in-out infinite;
}

/* Badges */
.benefit-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border: 1px solid;
}
.benefit-badge--emerald { background: rgba(16, 185, 129, 0.08); border-color: rgba(16, 185, 129, 0.2); color: #059669; }
.benefit-badge--teal    { background: rgba(31, 168, 185, 0.08); border-color: rgba(31, 168, 185, 0.2); color: #1b8a9c; }
.benefit-badge--warm    { background: rgba(251, 191, 36, 0.1); border-color: rgba(251, 191, 36, 0.25); color: #b45309; }
.benefit-badge--purple  { background: rgba(147, 51, 234, 0.06); border-color: rgba(147, 51, 234, 0.15); color: #7c3aed; }

/* Checklist */
.benefit-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #4b5563;
}
.benefit-checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.benefit-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  flex-shrink: 0;
  color: white;
}
.benefit-check--emerald { background: #059669; }
.benefit-check--teal    { background: #1b8a9c; }
.benefit-check--warm    { background: #d97706; }
.benefit-check--purple  { background: #7c3aed; }

/* ----------------------------------------------------------
   PARTNER SECTION — Background orbs
   ---------------------------------------------------------- */
.partner-orb-1 {
  background: rgba(31, 168, 185, 0.12);
  animation: partner-orb-float 12s ease-in-out infinite alternate;
}
.partner-orb-2 {
  background: rgba(251, 191, 36, 0.08);
  animation: partner-orb-float 10s ease-in-out infinite alternate-reverse;
}
.partner-orb-3 {
  background: rgba(139, 92, 246, 0.06);
  animation: partner-orb-float 14s ease-in-out infinite alternate;
}

@keyframes partner-orb-float {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(30px, -20px) scale(1.05); }
  100% { transform: translate(-20px, 15px) scale(0.95); }
}

/* ----------------------------------------------------------
   PARTNER CARDS — Premium glassmorphism with animated border
   ---------------------------------------------------------- */
.partner-card {
  --card-color: 31, 168, 185;
  position: relative;
  border-radius: 1.25rem;
  cursor: default;
}

/* Animated gradient border */
.partner-card-border {
  position: absolute;
  inset: 0;
  border-radius: 1.25rem;
  padding: 1.5px;
  background: linear-gradient(
    var(--border-angle, 0deg),
    rgba(var(--card-color), 0.5),
    rgba(var(--card-color), 0.05) 40%,
    rgba(var(--card-color), 0.05) 60%,
    rgba(var(--card-color), 0.5)
  );
  -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 0.5s ease;
  animation: partner-border-spin 4s linear infinite;
}

.partner-card:hover .partner-card-border {
  opacity: 1;
}

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

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

/* Inner content */
.partner-card-inner {
  position: relative;
  padding: 1.5rem 1.25rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.03),
    0 4px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.45s var(--apple-ease);
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.partner-card:hover .partner-card-inner {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(var(--card-color), 0.15);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.04),
    0 12px 40px rgba(var(--card-color), 0.1);
  transform: translateY(-6px);
}

/* Colored glow orb inside card */
.partner-card-glow {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(var(--card-color), 0.08);
  filter: blur(25px);
  transition: all 0.5s ease;
  pointer-events: none;
}

.partner-card:hover .partner-card-glow {
  width: 100px;
  height: 100px;
  background: rgba(var(--card-color), 0.15);
}

/* Icon wrapper */
.partner-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.875rem;
  background: linear-gradient(135deg, rgba(var(--card-color), 0.15), rgba(var(--card-color), 0.04));
  color: rgba(var(--card-color), 1);
  transition: all 0.4s var(--apple-ease);
  position: relative;
}

.partner-card:hover .partner-icon-wrap {
  transform: scale(1.12) rotate(-3deg);
  background: linear-gradient(135deg, rgba(var(--card-color), 0.25), rgba(var(--card-color), 0.08));
  box-shadow: 0 4px 16px rgba(var(--card-color), 0.15);
}

/* Tag: "+620 marques" */
.partner-card-tag {
  display: inline-block;
  margin-top: auto;
  padding-top: 0.75rem;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(var(--card-color), 0.7);
  transition: color 0.3s ease;
}

.partner-card:hover .partner-card-tag {
  color: rgba(var(--card-color), 1);
}

/* ----------------------------------------------------------
   PARTNER STATS BANNER — Premium dark glassmorphism
   ---------------------------------------------------------- */
.partner-stats-banner {
  position: relative;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  padding: 3px;
  overflow: hidden;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

/* Animated shimmer sweep */
.partner-stats-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.03) 45%,
    rgba(255, 255, 255, 0.06) 50%,
    rgba(255, 255, 255, 0.03) 55%,
    transparent 70%
  );
  background-size: 200% 100%;
  animation: partner-shimmer 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 5;
}

@keyframes partner-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Stat cells */
.partner-stat-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.75rem 1rem;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.partner-stat-cell:first-child {
  border-radius: calc(1.5rem - 3px) 0 0 calc(1.5rem - 3px);
}

.partner-stat-cell:last-child {
  border-radius: 0 calc(1.5rem - 3px) calc(1.5rem - 3px) 0;
}

.partner-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.partner-stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.partner-stat-number::before {
  content: "+";
}

.partner-stat-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(148, 163, 184, 0.8);
  text-align: center;
}

/* ----------------------------------------------------------
   INSTITUTE MARQUEE — Premium double-row with glassmorphism cards
   ---------------------------------------------------------- */
.institute-marquee-wrap {
  position: relative;
  overflow: hidden;
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}

.institute-marquee {
  overflow: hidden;
  width: 100%;
}

.institute-track {
  display: flex;
  gap: 1rem;
  width: max-content;
}

.institute-track--ltr {
  animation: marquee-ltr 35s linear infinite;
}

.institute-track--rtl {
  animation: marquee-rtl 32s linear infinite;
}

.institute-track:hover {
  animation-play-state: paused;
}

@keyframes marquee-ltr {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-rtl {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Card */
.institute-card {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.5rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.02),
    0 2px 8px rgba(0, 0, 0, 0.03);
  cursor: default;
  transition: all 0.4s var(--apple-ease);
  position: relative;
  overflow: hidden;
}

/* Shimmer sweep on hover */
.institute-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 60%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.institute-card:hover::before {
  transform: translateX(100%);
}

.institute-card:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(var(--dot-r, 31), var(--dot-g, 168), var(--dot-b, 185), 0.2);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.04),
    0 8px 32px rgba(0, 0, 0, 0.04);
  transform: translateY(-3px) scale(1.02);
}

/* Colored status dot */
.institute-dot {
  --dot-color: #1fa8b9;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--dot-color);
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 0 8px color-mix(in srgb, var(--dot-color) 40%, transparent);
}

.institute-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid var(--dot-color);
  opacity: 0.25;
  animation: institute-dot-ping 2.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes institute-dot-ping {
  0%   { transform: scale(1); opacity: 0.25; }
  75%, 100% { transform: scale(1.8); opacity: 0; }
}

/* Name & type */
.institute-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1e293b;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.institute-type {
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
  white-space: nowrap;
  padding: 2px 8px;
  border-radius: 6px;
  background: rgba(148, 163, 184, 0.08);
}

/* CTA card variant */
.institute-card--cta {
  border-style: dashed;
  border-color: rgba(31, 168, 185, 0.25);
  background: rgba(31, 168, 185, 0.03);
}

.institute-card--cta:hover {
  background: rgba(31, 168, 185, 0.08);
  border-color: rgba(31, 168, 185, 0.4);
}

/* ----------------------------------------------------------
   BLOG CARDS — Premium glassmorphism with animated border
   ---------------------------------------------------------- */
.blog-card {
  --blog-color: 31, 168, 185;
  position: relative;
  border-radius: 1.25rem;
  cursor: pointer;
}

/* Animated gradient border */
.blog-card-border {
  position: absolute;
  inset: 0;
  border-radius: 1.25rem;
  padding: 1.5px;
  background: linear-gradient(
    var(--border-angle, 0deg),
    rgba(var(--blog-color), 0.5),
    rgba(var(--blog-color), 0.05) 40%,
    rgba(var(--blog-color), 0.05) 60%,
    rgba(var(--blog-color), 0.5)
  );
  -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 0.5s ease;
  animation: partner-border-spin 4s linear infinite;
}

.blog-card:hover .blog-card-border {
  opacity: 1;
}

/* Inner content */
.blog-card-inner {
  position: relative;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.03),
    0 4px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.45s var(--apple-ease);
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blog-card:hover .blog-card-inner {
  background: rgba(255, 255, 255, 0.97);
  border-color: rgba(var(--blog-color), 0.15);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.04),
    0 16px 48px rgba(var(--blog-color), 0.08);
  transform: translateY(-6px);
}

/* Glow orb */
.blog-card-glow {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(var(--blog-color), 0.08);
  filter: blur(25px);
  transition: all 0.5s ease;
  pointer-events: none;
}

.blog-card:hover .blog-card-glow {
  width: 100px;
  height: 100px;
  background: rgba(var(--blog-color), 0.15);
}

/* Thumbnail zone */
.blog-card-thumb {
  position: relative;
  height: 160px;
  border-radius: calc(1.25rem - 1px) calc(1.25rem - 1px) 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg,
    rgba(var(--blog-color), 0.12),
    rgba(var(--blog-color), 0.04) 50%,
    rgba(var(--blog-color), 0.08)
  );
}

.blog-card-thumb svg {
  width: 48px;
  height: 48px;
  color: rgba(var(--blog-color), 0.5);
  transition: all 0.4s var(--apple-ease);
}

.blog-card:hover .blog-card-thumb svg {
  color: rgba(var(--blog-color), 0.7);
  transform: scale(1.1);
}

/* Content area */
.blog-card-body {
  padding: 1.25rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Category badge */
.blog-card-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: rgba(var(--blog-color), 0.08);
  color: rgba(var(--blog-color), 1);
  border: 1px solid rgba(var(--blog-color), 0.15);
  margin-bottom: 0.75rem;
  width: fit-content;
}

/* Article link */
.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(var(--blog-color), 0.85);
  margin-top: auto;
  padding-top: 0.75rem;
  transition: color 0.3s ease, gap 0.3s ease;
}

.blog-card-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--apple-ease);
}

.blog-card:hover .blog-card-link {
  color: rgba(var(--blog-color), 1);
}

.blog-card:hover .blog-card-link svg {
  transform: translateX(4px);
}

/* ----------------------------------------------------------
   PAYMENT CARDS — Premium glassmorphism
   ---------------------------------------------------------- */
.pay-card {
  --pay-color: 31, 168, 185;
  position: relative;
  border-radius: 1.5rem;
}

/* Animated gradient border */
.pay-card-border {
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  padding: 1.5px;
  background: linear-gradient(
    var(--border-angle, 0deg),
    rgba(var(--pay-color), 0.6),
    rgba(var(--pay-color), 0.05) 40%,
    rgba(var(--pay-color), 0.05) 60%,
    rgba(var(--pay-color), 0.6)
  );
  -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 0.5s ease;
  animation: partner-border-spin 4s linear infinite;
}

.pay-card:hover .pay-card-border {
  opacity: 1;
}

/* Inner */
.pay-card-inner {
  position: relative;
  padding: 1.75rem 1.25rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.03),
    0 4px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.45s var(--apple-ease);
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pay-card:hover .pay-card-inner {
  background: rgba(255, 255, 255, 0.97);
  border-color: rgba(var(--pay-color), 0.15);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.04),
    0 16px 48px rgba(var(--pay-color), 0.08);
  transform: translateY(-8px);
}

/* Glow orb */
.pay-card-glow {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(var(--pay-color), 0.06);
  filter: blur(30px);
  transition: all 0.5s ease;
  pointer-events: none;
}

.pay-card:hover .pay-card-glow {
  width: 140px;
  height: 140px;
  background: rgba(var(--pay-color), 0.12);
}

/* Icon */
.pay-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(var(--pay-color), 0.15), rgba(var(--pay-color), 0.04));
  color: rgba(var(--pay-color), 1);
  transition: all 0.4s var(--apple-ease);
  position: relative;
}

.pay-card:hover .pay-icon {
  transform: scale(1.1) translateY(-2px);
  background: linear-gradient(135deg, rgba(var(--pay-color), 0.25), rgba(var(--pay-color), 0.08));
  box-shadow: 0 8px 24px rgba(var(--pay-color), 0.15);
}

/* Speed badge */
.pay-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(var(--pay-color), 0.06);
  font-size: 11px;
  font-weight: 600;
  color: rgba(var(--pay-color), 0.85);
  margin-top: auto;
  transition: all 0.3s ease;
}

.pay-card:hover .pay-badge {
  background: rgba(var(--pay-color), 0.1);
  color: rgba(var(--pay-color), 1);
}

.pay-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(var(--pay-color), 0.6);
  position: relative;
}

.pay-badge-dot--fast {
  background: #22c55e;
}

.pay-badge-dot--fast::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 1px solid #22c55e;
  opacity: 0.4;
  animation: pay-dot-ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes pay-dot-ping {
  0%   { transform: scale(1); opacity: 0.4; }
  75%, 100% { transform: scale(2.2); opacity: 0; }
}

/* ----------------------------------------------------------
   STAT CARDS — Premium glassmorphism with progress bars
   ---------------------------------------------------------- */
.stat-card {
  --stat-color: 31, 168, 185;
  position: relative;
  border-radius: 1.25rem;
}

.stat-card-inner {
  position: relative;
  padding: 1.5rem 1.25rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.03),
    0 4px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.45s var(--apple-ease);
  height: 100%;
  text-align: center;
  overflow: hidden;
}

.stat-card:hover .stat-card-inner {
  background: rgba(255, 255, 255, 0.97);
  border-color: rgba(var(--stat-color), 0.15);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.04),
    0 16px 48px rgba(var(--stat-color), 0.08);
  transform: translateY(-6px);
}

.stat-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.875rem;
  background: linear-gradient(135deg, rgba(var(--stat-color), 0.15), rgba(var(--stat-color), 0.04));
  color: rgba(var(--stat-color), 1);
  transition: all 0.4s var(--apple-ease);
}

.stat-card:hover .stat-card-icon {
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(var(--stat-color), 0.15);
}

.stat-card-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-card-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #9ca3af;
  margin-bottom: 1rem;
}

/* Micro progress bar */
.stat-card-bar {
  height: 3px;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.stat-card-bar-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(var(--stat-color), 0.4), rgba(var(--stat-color), 0.8));
  width: 0%;
  transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

.stat-card.revealed .stat-card-bar-fill,
.stat-card-bar-fill.animated {
  /* width set inline */
}

/* ----------------------------------------------------------
   TESTIMONIAL CAROUSEL — Premium cards
   ---------------------------------------------------------- */
.testi-carousel {
  overflow: hidden;
  border-radius: 1.5rem;
  position: relative;
}

.testi-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.testi-slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: 0 0.25rem;
  position: relative;
}

@media (min-width: 640px) {
  .testi-slide { flex: 0 0 50%; }
}

@media (min-width: 1024px) {
  .testi-slide { flex: 0 0 33.333%; }
}

/* Card */
.testi-card {
  --testi-accent: 31, 168, 185;
  position: relative;
  padding: 2rem 1.75rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.03),
    0 4px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.4s var(--apple-ease);
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin: 0.5rem;
}

.testi-card:hover {
  background: rgba(255, 255, 255, 0.97);
  border-color: rgba(var(--testi-accent), 0.15);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.04),
    0 16px 40px rgba(var(--testi-accent), 0.06);
  transform: translateY(-4px);
}

/* Big quote mark */
.testi-card-quote {
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(var(--testi-accent), 0.06);
  pointer-events: none;
  font-family: Georgia, serif;
}

/* Avatar */
.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, rgba(var(--testi-accent), 0.9), rgba(var(--testi-accent), 0.7));
  box-shadow: 0 2px 8px rgba(var(--testi-accent), 0.25);
  flex-shrink: 0;
}

/* Navigation buttons */
.testi-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: #374151;
  cursor: pointer;
  transition: all 0.3s var(--apple-ease);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.testi-nav-btn:hover {
  background: #fff;
  border-color: rgba(31, 168, 185, 0.2);
  color: #1fa8b9;
  box-shadow: 0 4px 16px rgba(31, 168, 185, 0.1);
  transform: scale(1.05);
}

/* Dots */
.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.35s var(--apple-ease);
}

.testi-dot.active {
  width: 28px;
  border-radius: 4px;
  background: linear-gradient(90deg, #1fa8b9, #10b981);
}

/* ----------------------------------------------------------
   FAQ SECTION — Background orbs
   ---------------------------------------------------------- */
.faq-orb-1 {
  background: rgba(31, 168, 185, 0.1);
  animation: faq-orb-float 12s ease-in-out infinite alternate;
}
.faq-orb-2 {
  background: rgba(139, 92, 246, 0.07);
  animation: faq-orb-float 10s ease-in-out infinite alternate-reverse;
}
.faq-orb-3 {
  background: rgba(236, 72, 153, 0.05);
  animation: faq-orb-float 14s ease-in-out infinite alternate;
}

@keyframes faq-orb-float {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(25px, -15px) scale(1.04); }
  100% { transform: translate(-15px, 10px) scale(0.96); }
}

/* ----------------------------------------------------------
   FAQ ACCORDION — Premium glassmorphism cards
   ---------------------------------------------------------- */
.faq-card {
  --faq-color: 31, 168, 185;
  position: relative;
  border-radius: 1.25rem;
}

/* Animated gradient border */
.faq-card-border {
  position: absolute;
  inset: 0;
  border-radius: 1.25rem;
  padding: 1.5px;
  background: linear-gradient(
    var(--border-angle, 0deg),
    rgba(var(--faq-color), 0.5),
    rgba(var(--faq-color), 0.05) 40%,
    rgba(var(--faq-color), 0.05) 60%,
    rgba(var(--faq-color), 0.5)
  );
  -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 0.5s ease;
  animation: faq-border-spin 4s linear infinite;
  pointer-events: none;
}

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

.faq-card:hover .faq-card-border,
.faq-card.open .faq-card-border {
  opacity: 1;
}

/* Inner glassmorphism layer */
.faq-card-inner {
  position: relative;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.03),
    0 4px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.45s var(--apple-ease);
  overflow: hidden;
}

.faq-card:hover .faq-card-inner {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(var(--faq-color), 0.15);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.04),
    0 12px 40px rgba(var(--faq-color), 0.08);
  transform: translateY(-3px);
}

.faq-card.open .faq-card-inner {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(var(--faq-color), 0.2);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.04),
    0 12px 40px rgba(var(--faq-color), 0.1);
  transform: translateY(-2px);
}

/* Internal glow orb */
.faq-card-glow {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(var(--faq-color), 0.06);
  filter: blur(25px);
  transition: all 0.5s ease;
  pointer-events: none;
}

.faq-card:hover .faq-card-glow {
  width: 90px;
  height: 90px;
  background: rgba(var(--faq-color), 0.12);
}

.faq-card.open .faq-card-glow {
  width: 100px;
  height: 100px;
  background: rgba(var(--faq-color), 0.15);
}

/* Numbered icon */
.faq-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(var(--faq-color), 0.85), rgba(var(--faq-color), 1));
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  transition: all 0.35s var(--apple-ease);
}

.faq-card:hover .faq-number,
.faq-card.open .faq-number {
  box-shadow: 0 4px 12px rgba(var(--faq-color), 0.3);
  transform: scale(1.08);
}

/* Content area */
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--apple-ease);
}

/* Trigger */
.faq-trigger {
  cursor: pointer;
  transition: background var(--apple-duration-fast) var(--apple-ease);
}

.faq-trigger:hover {
  background: rgba(0, 0, 0, 0.02);
}

/* ----------------------------------------------------------
   CTA MESH (Final CTA)
   ---------------------------------------------------------- */
.cta-mesh {
  background-image:
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(251, 191, 36, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 20%, rgba(61, 196, 211, 0.08) 0%, transparent 60%);
}

/* ----------------------------------------------------------
   HERO DECORATIVE ARROW (desktop only)
   ---------------------------------------------------------- */
.hero-cta-arrow {
  position: absolute;
  left: 25%;
  top: -70px;
  width: 40%;
  z-index: 5;
  pointer-events: none;
}

.arrow-path {
  stroke-dasharray: 450;
  stroke-dashoffset: 450;
  animation: arrow-draw 1.6s cubic-bezier(0.4, 0, 0.2, 1) 1.2s forwards;
}

.arrow-head {
  opacity: 0;
  animation: arrow-pop 0.1s ease-out 1.85s forwards;
}

@keyframes arrow-draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes arrow-pop {
  to {
    opacity: 1;
  }
}

/* ----------------------------------------------------------
   HERO — Trust strip + Payment methods
   ---------------------------------------------------------- */
.hero-trust-strip {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 6px 4px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
}

.hero-trust-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-trust-icon--green {
  background: rgba(34, 197, 94, 0.25);
  color: #4ade80;
}

.hero-trust-sep {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* Payment methods — simple text flow */
.hero-pay-method {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s ease;
}

.hero-pay-method:hover {
  color: rgba(255,255,255,0.95);
}

/* Mobile: stack the trust strip */
@media (max-width: 639px) {
  .hero-trust-strip {
    flex-wrap: wrap;
    border-radius: 1rem;
    justify-content: center;
    gap: 4px;
    padding: 8px 6px;
  }

  .hero-trust-sep {
    display: none;
  }

  .hero-trust-item {
    padding: 4px 10px;
  }
}

/* ----------------------------------------------------------
   HERO FORM CARD (Premium glassmorphism)
   ---------------------------------------------------------- */
.hero-form-card {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(40px) saturate(150%);
  -webkit-backdrop-filter: blur(40px) saturate(150%);
  border: 1.5px solid transparent;
  border-radius: 1.75rem;
  background-clip: padding-box;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 0 0 0.5px rgba(0, 0, 0, 0.04) inset,
    0 2px 4px rgba(0, 0, 0, 0.04),
    0 8px 20px rgba(0, 0, 0, 0.08),
    0 24px 48px -8px rgba(0, 0, 0, 0.12),
    0 48px 80px -12px rgba(0, 0, 0, 0.14),
    0 0 60px -5px rgba(31, 168, 185, 0.25),
    0 0 140px -20px rgba(31, 168, 185, 0.35);
}

/* Gradient border ring via pseudo-element behind the card */
.hero-form-card::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(1.75rem + 2px);
  background: linear-gradient(135deg, rgba(31, 168, 185, 0.5), rgba(16, 185, 129, 0.3), rgba(31, 168, 185, 0.15), rgba(31, 168, 185, 0.5));
  z-index: -1;
  pointer-events: none;
}

/* Form card title */
.form-card-title {
  color: #1a1a2e;
  line-height: 1.2;
}

.form-card-title-highlight {
  background: linear-gradient(135deg, #1fa8b9, #0d9488, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
  border-radius: 1px;
  pointer-events: none;
  z-index: 1;
}


/* ----------------------------------------------------------
   FUNNEL STEPPER (numbered circles + connectors)
   ---------------------------------------------------------- */
.funnel-stepper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
}

.stepper-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
}

.stepper-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid #e5e7eb;
  background: #fff;
  color: #9ca3af;
  transition: all 0.4s var(--apple-ease);
  position: relative;
}

.stepper-step.active .stepper-circle {
  border-color: #1fa8b9;
  background: #1fa8b9;
  color: #fff;
  box-shadow: 0 0 0 5px rgba(31, 168, 185, 0.18), 0 0 20px rgba(31, 168, 185, 0.25);
}

.stepper-step.completed .stepper-circle {
  border-color: #10b981;
  background: #10b981;
  color: #fff;
}

.stepper-label {
  font-size: 12px;
  font-weight: 500;
  color: #9ca3af;
  margin-top: 6px;
  white-space: nowrap;
  transition: color 0.4s var(--apple-ease);
}

.stepper-step.active .stepper-label {
  color: #1fa8b9;
}

.stepper-step.completed .stepper-label {
  color: #10b981;
}

.stepper-connector {
  flex: 1;
  height: 3px;
  background: #e5e7eb;
  margin-top: 19px;
  position: relative;
  min-width: 40px;
}

.stepper-connector-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #10b981, #1fa8b9);
  border-radius: 1px;
  transition: width 0.6s var(--apple-ease-out);
}

.stepper-connector.filled .stepper-connector-fill {
  width: 100%;
}

/* ----------------------------------------------------------
   SOCIAL PROOF (inline in card)
   ---------------------------------------------------------- */
.signup-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  border: 3px solid #fff;
  margin-left: -6px;
}

.avatar-stack span:first-child {
  margin-left: 0;
}

/* Funnel steps */
.funnel-step {
  display: none;
}

.funnel-step.active {
  display: block;
  animation: step-slide-in-right 0.45s var(--apple-ease-out);
}

.funnel-step.slide-in-left {
  animation: step-slide-in-left 0.45s var(--apple-ease-out);
}

.funnel-step.slide-in-right {
  animation: step-slide-in-right 0.45s var(--apple-ease-out);
}

@keyframes step-slide-in-right {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes step-slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Motivation cards */
.motivation-card {
  position: relative;
  transition: all var(--apple-duration-fast) var(--apple-ease);
}

.motivation-card:hover {
  border-color: #e5e7eb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  transform: translateY(-1px);
}

.motivation-card.selected {
  background: rgba(31, 168, 185, 0.06);
  border-color: rgba(31, 168, 185, 0.5);
  box-shadow: 0 2px 8px rgba(31, 168, 185, 0.1);
}

.motivation-card.recommended {
  border-color: rgba(31, 168, 185, 0.3);
  background: rgba(31, 168, 185, 0.04);
}

.motivation-card.recommended.selected {
  background: rgba(31, 168, 185, 0.1);
  border-color: rgba(31, 168, 185, 0.5);
}

.motivation-card::after {
  content: '✦';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%) scale(0);
  font-size: 1.1rem;
  color: rgba(31, 168, 185, 0.6);
  transition: transform 0.25s var(--apple-ease), opacity 0.25s var(--apple-ease);
  opacity: 0;
  pointer-events: none;
}

.motivation-card:hover::after {
  transform: translateY(-50%) scale(1);
  opacity: 1;
}

.motivation-card.selected::after {
  content: '✓';
  transform: translateY(-50%) scale(1);
  opacity: 1;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(31, 168, 185, 0.85);
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.motivation-card:active {
  transform: scale(0.98);
}

/* Spotlight animation — sequential highlight loop */
@keyframes card-spotlight {
  0%, 100% {
    transform: translateY(0);
    box-shadow: none;
    border-color: rgba(243, 244, 246, 1);
  }
  8% {
    transform: translateY(-3px) scale(1.015);
    box-shadow: 0 4px 20px rgba(31, 168, 185, 0.15), 0 0 0 1px rgba(31, 168, 185, 0.2);
    border-color: rgba(31, 168, 185, 0.35);
  }
  20% {
    transform: translateY(0);
    box-shadow: none;
    border-color: rgba(243, 244, 246, 1);
  }
}

/* Spotlight for the recommended card (different resting border) */
@keyframes card-spotlight-recommended {
  0%, 100% {
    transform: translateY(0);
    box-shadow: none;
    border-color: rgba(31, 168, 185, 0.3);
  }
  8% {
    transform: translateY(-3px) scale(1.015);
    box-shadow: 0 4px 20px rgba(31, 168, 185, 0.15), 0 0 0 1px rgba(31, 168, 185, 0.2);
    border-color: rgba(31, 168, 185, 0.5);
  }
  20% {
    transform: translateY(0);
    box-shadow: none;
    border-color: rgba(31, 168, 185, 0.3);
  }
}

.motivation-card.spotlight-1 { animation: card-spotlight-recommended 4.5s ease-in-out infinite; }

.motivation-card.spotlight-2 { animation: card-spotlight 4.5s ease-in-out infinite 1.5s; }
.motivation-card.spotlight-3 { animation: card-spotlight 4.5s ease-in-out infinite 3s; }

/* Stop animation once a card is selected */
.motivation-card.selected,
.motivation-card.spotlight-done {
  animation: none !important;
}

/* Situation cards */
.situation-card {
  position: relative;
  transition: all var(--apple-duration-fast) var(--apple-ease);
}

.situation-card:hover {
  border-color: #e5e7eb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  transform: translateY(-1px);
}

.situation-card.selected {
  background: rgba(31, 168, 185, 0.06);
  border-color: rgba(31, 168, 185, 0.5);
  box-shadow: 0 2px 8px rgba(31, 168, 185, 0.1);
}

.situation-card.recommended {
  border-color: rgba(31, 168, 185, 0.3);
  background: rgba(31, 168, 185, 0.04);
}

.situation-card.recommended.selected {
  background: rgba(31, 168, 185, 0.1);
  border-color: rgba(31, 168, 185, 0.5);
}

.situation-card::after {
  content: '✦';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%) scale(0);
  font-size: 1.1rem;
  color: rgba(31, 168, 185, 0.6);
  transition: transform 0.25s var(--apple-ease), opacity 0.25s var(--apple-ease);
  opacity: 0;
  pointer-events: none;
}

.situation-card:hover::after {
  transform: translateY(-50%) scale(1);
  opacity: 1;
}

.situation-card.selected::after {
  content: '✓';
  transform: translateY(-50%) scale(1);
  opacity: 1;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(31, 168, 185, 0.85);
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.situation-card:active {
  transform: scale(0.98);
}

/* ----------------------------------------------------------
   SUBMIT BUTTON (Premium gradient + shimmer)
   ---------------------------------------------------------- */
.submit-btn {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a8a96, #1fa8b9, #10b981);
  background-size: 200% 200%;
  box-shadow: 0 8px 24px rgba(31, 168, 185, 0.3);
  transition: transform var(--apple-duration-fast) var(--apple-ease),
              box-shadow var(--apple-duration-fast) var(--apple-ease);
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  animation: premium-shimmer 2.8s ease-in-out infinite;
}

@keyframes premium-shimmer {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

.submit-btn .submit-arrow {
  display: inline-block;
  transition: transform 0.3s var(--apple-ease);
}

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

.submit-btn:hover {
  box-shadow: 0 12px 32px rgba(31, 168, 185, 0.4);
  transform: translateY(-1px) scale(1.01);
}

.submit-btn:active {
  transform: translateY(0) scale(0.99);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.submit-btn:disabled::before {
  animation: none;
}

/* Continue button (Step 1) — activated state mirrors submit gradient */
.continue-btn-active {
  background: linear-gradient(135deg, #1a8a96, #1fa8b9, #10b981) !important;
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(31, 168, 185, 0.3);
  position: relative;
  overflow: hidden;
}

.continue-btn-active:hover {
  box-shadow: 0 12px 32px rgba(31, 168, 185, 0.4);
  transform: translateY(-1px) scale(1.01);
}

.submit-btn.success {
  background: #10b981;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.submit-btn.success::before {
  animation: none;
}

/* ----------------------------------------------------------
   TRUST BADGES (under submit)
   ---------------------------------------------------------- */
.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #6b7280;
  font-weight: 400;
  background: #f9fafb;
  padding: 6px 12px;
  border-radius: 9999px;
}

/* ----------------------------------------------------------
   INPUT FOCUS RING (premium)
   ---------------------------------------------------------- */
.hero-form-card input:focus {
  box-shadow: 0 0 0 4px rgba(31, 168, 185, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
}

.hero-form-card button[type="button"]:focus {
  box-shadow: 0 0 0 4px rgba(31, 168, 185, 0.08);
}

/* ----------------------------------------------------------
   COUNTRY DROPDOWN
   ---------------------------------------------------------- */
.country-panel {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px) scale(0.98);
  transition: opacity 0.25s var(--apple-ease),
              visibility 0.25s var(--apple-ease),
              transform 0.25s var(--apple-ease);
}

.country-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.country-option:focus {
  background: rgba(0, 0, 0, 0.04);
  outline: none;
}

.country-option.hidden {
  display: none;
}

/* ----------------------------------------------------------
   REVEAL ANIMATIONS (Apple: slower, subtler)
   ---------------------------------------------------------- */
.reveal-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--apple-ease-out),
              transform 0.8s var(--apple-ease-out);
}

.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ----------------------------------------------------------
   LIVE TOAST
   ---------------------------------------------------------- */
#live-toast {
  transition: opacity 0.5s var(--apple-ease), transform 0.5s var(--apple-ease);
}

/* ----------------------------------------------------------
   STICKY CTA
   ---------------------------------------------------------- */
#sticky-cta {
  transition: transform var(--apple-duration-fast) var(--apple-ease);
}

body.sticky-cta-active {
  padding-bottom: 72px;
}

@media (min-width: 1024px) {
  body.sticky-cta-active {
    padding-bottom: 0;
  }
}

/* ----------------------------------------------------------
   FIELD ERRORS
   ---------------------------------------------------------- */
.field-error:not(.hidden) + input,
input:invalid:not(:placeholder-shown) {
  border-color: rgba(248, 113, 113, 0.4);
}

/* ----------------------------------------------------------
   FOCUS VISIBLE (Apple ring)
   ---------------------------------------------------------- */
:focus-visible {
  outline: 2px solid rgba(61, 196, 211, 0.5);
  outline-offset: 3px;
}

button:focus-visible,
input:focus-visible {
  outline: 2px solid rgba(61, 196, 211, 0.5);
  outline-offset: 3px;
}

/* ----------------------------------------------------------
   DIVIDER
   ---------------------------------------------------------- */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.08), transparent);
}

/* ----------------------------------------------------------
   PRINT
   ---------------------------------------------------------- */
@media print {
  .hero-section,
  #header,
  #sticky-cta,
  #live-toast,
  .cta-btn {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }
}

/* ----------------------------------------------------------
   SMART FILTER DOTS (benefit card 4 — animated flowing dots)
   ---------------------------------------------------------- */
.smart-filter-dots {
  align-items: center;
}

.smart-filter-dots span {
  animation: smart-dot-pulse 1.8s ease-in-out infinite;
}

.smart-filter-dots span:nth-child(1) {
  animation-delay: 0s;
}

.smart-filter-dots span:nth-child(2) {
  animation-delay: 0.3s;
}

.smart-filter-dots span:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes smart-dot-pulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}

/* ----------------------------------------------------------
   ARTICLE CONTENT (legal pages)
   ---------------------------------------------------------- */
.article-content h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111827;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}
.article-content h2:first-child,
.article-content .toc + h2 {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}
.article-content p {
    color: #4B5563;
    font-size: 0.9375rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}
.article-content p:last-child {
    margin-bottom: 0;
}
.article-content strong {
    color: #111827;
    font-weight: 600;
}
.article-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin-top: 1.75rem;
    margin-bottom: 0.625rem;
}
.article-content ul,
.article-content ol {
    color: #4B5563;
    font-size: 0.9375rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}
.article-content ul li { list-style-type: disc; }
.article-content ol li { list-style-type: decimal; }
.article-content li { margin-bottom: 0.375rem; }
.article-content a {
    color: #1fa8b9;
    text-decoration: underline;
}
.article-content a:hover {
    color: #0a1f28;
}

/* ALL CAPS legal sections (CGU art. 14 & 17) */
.article-content .legal-caps {
    font-size: 0.8125rem;
    line-height: 1.9;
    letter-spacing: 0.01em;
}

/* TOC (table of contents) */
.toc {
    background: #f0fafb;
    border: 1px solid #d5f4f7;
    border-radius: 0.75rem;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
}
.toc-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #111827;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}
.toc ol {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 1;
}
.toc li {
    margin-bottom: 0.25rem;
}
.article-content .toc li {
    list-style-type: none;
    margin-bottom: 0.25rem;
}
.toc a {
    color: #4B5563;
    font-size: 0.8125rem;
    text-decoration: none;
    transition: color 0.15s ease;
    display: block;
    padding: 0.125rem 0;
}
.toc a:hover {
    color: #1fa8b9;
}

@media (min-width: 768px) {
    .article-content h2 {
        font-size: 1.75rem;
        margin-top: 3rem;
        padding-top: 2.5rem;
    }
    .article-content h3 {
        font-size: 1.25rem;
    }
    .article-content p,
    .article-content ul,
    .article-content ol {
        font-size: 1rem;
    }
    .toc ol {
        columns: 2;
        column-gap: 1.5rem;
    }
    .toc a {
        font-size: 0.875rem;
    }
}

@media print {
  .article-content a[href]::after { content: " (" attr(href) ")"; font-size: 0.8em; color: #666; }
}

/* ----------------------------------------------------------
   ARTICLE — Chapter numbers, pull quotes, separators
   ---------------------------------------------------------- */

/* Article chapter number */
.article-chapter {
    font-size: 4rem;
    font-weight: 800;
    color: #e5e7eb;
    line-height: 1;
    margin-bottom: -0.25rem;
    letter-spacing: -0.05em;
    -webkit-user-select: none;
    user-select: none;
}

/* Pull quote (centered, large italic) */
.article-pullquote {
    text-align: center;
    padding: 2.5rem 1rem;
    margin: 2.5rem 0;
    border-top: 1px solid #d5f4f7;
    border-bottom: 1px solid #d5f4f7;
}
.article-pullquote p {
    font-size: 1.25rem !important;
    font-weight: 400 !important;
    font-style: italic;
    color: #1e4c59 !important;
    line-height: 1.7 !important;
    max-width: 36rem;
    margin: 0 auto 0.75rem !important;
}
.article-pullquote cite {
    font-style: normal;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #1fa8b9;
}

/* Section separator */
.article-separator {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 2rem 0;
}
.article-separator span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #b0e9f0;
}

@media (min-width: 768px) {
    .article-chapter { font-size: 5rem; }
    .article-pullquote p { font-size: 1.5rem !important; }
}

/* ----------------------------------------------------------
   STAT CARDS — Animated border + glow orb (premium uniformisation)
   ---------------------------------------------------------- */
.stat-card-border {
  position: absolute;
  inset: 0;
  border-radius: 1.25rem;
  padding: 1.5px;
  background: linear-gradient(
    var(--border-angle, 0deg),
    rgba(var(--stat-color), 0.5),
    rgba(var(--stat-color), 0.05) 40%,
    rgba(var(--stat-color), 0.05) 60%,
    rgba(var(--stat-color), 0.5)
  );
  -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 0.5s ease;
  animation: partner-border-spin 4s linear infinite;
  pointer-events: none;
}

.stat-card:hover .stat-card-border {
  opacity: 1;
}

.stat-card-glow {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(var(--stat-color), 0.08);
  filter: blur(25px);
  transition: all 0.5s ease;
  pointer-events: none;
}

.stat-card:hover .stat-card-glow {
  width: 100px;
  height: 100px;
  background: rgba(var(--stat-color), 0.15);
}

/* ----------------------------------------------------------
   TESTIMONIAL CARDS — Animated border + glow orb (premium)
   ---------------------------------------------------------- */
.testi-card-border {
  position: absolute;
  inset: 0.5rem;
  border-radius: 1.25rem;
  padding: 1.5px;
  background: linear-gradient(
    var(--border-angle, 0deg),
    rgba(var(--testi-accent), 0.5),
    rgba(var(--testi-accent), 0.05) 40%,
    rgba(var(--testi-accent), 0.05) 60%,
    rgba(var(--testi-accent), 0.5)
  );
  -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 0.5s ease;
  animation: partner-border-spin 4s linear infinite;
  pointer-events: none;
  z-index: 2;
}

.testi-slide:hover .testi-card-border {
  opacity: 1;
}

.testi-card-glow {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(var(--testi-accent), 0.08);
  filter: blur(25px);
  transition: all 0.5s ease;
  pointer-events: none;
}

.testi-slide:hover .testi-card-glow {
  width: 100px;
  height: 100px;
  background: rgba(var(--testi-accent), 0.15);
}

@keyframes testi-orb-float {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(25px, -15px) scale(1.04); }
  100% { transform: translate(-15px, 10px) scale(0.96); }
}

.testi-bg-orb-1 {
  animation: testi-orb-float 12s ease-in-out infinite;
}

.testi-bg-orb-2 {
  animation: testi-orb-float 10s ease-in-out infinite reverse;
}

.testi-bg-orb-3 {
  animation: testi-orb-float 14s ease-in-out infinite;
}

/* ----------------------------------------------------------
   CTA FINAL — Floating orbs + shimmer button
   ---------------------------------------------------------- */
@keyframes cta-orb-float {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(30px, -20px) scale(1.05); }
  100% { transform: translate(-20px, 15px) scale(0.95); }
}

.cta-bg-orb-1 {
  animation: cta-orb-float 14s ease-in-out infinite;
}

.cta-bg-orb-2 {
  animation: cta-orb-float 11s ease-in-out infinite reverse;
}

.cta-bg-orb-3 {
  animation: cta-orb-float 16s ease-in-out infinite;
}

.cta-final-btn {
  position: relative;
  overflow: hidden;
}

.cta-final-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(31, 168, 185, 0.15), transparent);
  animation: premium-shimmer 2.8s ease-in-out infinite;
  pointer-events: none;
}

/* ----------------------------------------------------------
   HERO — Floating orbs + form card glow pulse
   ---------------------------------------------------------- */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  z-index: 1;
}

.hero-orb-1 {
  top: 10%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: rgba(61, 196, 211, 0.08);
  animation: hero-orb-float 14s ease-in-out infinite;
}

.hero-orb-2 {
  bottom: 15%;
  right: 5%;
  width: 250px;
  height: 250px;
  background: rgba(251, 191, 36, 0.06);
  animation: hero-orb-float 11s ease-in-out infinite reverse;
}

.hero-orb-3 {
  top: 40%;
  right: 20%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  animation: hero-orb-float 16s ease-in-out infinite;
}

@keyframes hero-orb-float {
  0%   { transform: translateY(0) scale(1); }
  50%  { transform: translateY(-15px) scale(1.03); }
  100% { transform: translateY(0) scale(1); }
}

@keyframes hero-glow-pulse {
  0%, 100% {
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.6) inset,
      0 0 0 0.5px rgba(0, 0, 0, 0.04) inset,
      0 2px 4px rgba(0, 0, 0, 0.04),
      0 8px 20px rgba(0, 0, 0, 0.08),
      0 24px 48px -8px rgba(0, 0, 0, 0.12),
      0 48px 80px -12px rgba(0, 0, 0, 0.14),
      0 0 60px -5px rgba(31, 168, 185, 0.25),
      0 0 140px -20px rgba(31, 168, 185, 0.35);
  }
  50% {
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.6) inset,
      0 0 0 0.5px rgba(0, 0, 0, 0.04) inset,
      0 2px 4px rgba(0, 0, 0, 0.04),
      0 8px 20px rgba(0, 0, 0, 0.08),
      0 24px 48px -8px rgba(0, 0, 0, 0.12),
      0 48px 80px -12px rgba(0, 0, 0, 0.14),
      0 0 80px -5px rgba(31, 168, 185, 0.35),
      0 0 160px -20px rgba(31, 168, 185, 0.45);
  }
}

.hero-form-card {
  animation: hero-glow-pulse 4s ease-in-out infinite;
}

/* ----------------------------------------------------------
   FOOTER — Enhanced gradient + hover effects
   ---------------------------------------------------------- */
.footer-enhanced {
  background: linear-gradient(180deg, #f5f5f7 0%, #f0f0f2 100%);
}

.footer-enhanced a {
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.footer-enhanced a:hover {
  transform: translateX(2px);
}

.footer-enhanced .footer-logo:hover {
  filter: drop-shadow(0 2px 8px rgba(31, 168, 185, 0.3));
  transition: filter 0.3s ease;
}

/* ----------------------------------------------------------
   BUTTON SHIMMER — Reusable shimmer class for any CTA
   ---------------------------------------------------------- */
.btn-shimmer {
  position: relative;
  overflow: hidden;
}

.btn-shimmer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  animation: premium-shimmer 2.8s ease-in-out infinite;
  pointer-events: none;
}

/* ----------------------------------------------------------
   REDUCED MOTION
   ---------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal-item {
    opacity: 1;
    transform: none;
  }

  .mobile-nav-link,
  .mobile-resource-card {
    opacity: 1;
    transform: none;
  }

  .mobile-menu-sheet {
    transition: none;
  }

  .mobile-menu-backdrop {
    transition: none;
  }

  .cta-btn::after {
    animation: none;
  }

  .hiw-progress-line {
    transform: scaleX(1);
  }

  .hiw-icon-float {
    animation: none;
  }

  .motivation-card.spotlight-1,
  .motivation-card.spotlight-2,
  .motivation-card.spotlight-3 {
    animation: none;
  }

  .funnel-step.active {
    animation: none;
  }

  .motivation-card:hover,
  .situation-card:hover {
    transform: none;
  }

  .submit-btn::before {
    animation: none;
  }

  .stepper-connector-fill {
    transition: none;
  }

  .hero-cta-arrow {
    display: none !important;
  }

  .smart-filter-dots span {
    animation: none;
    opacity: 1;
  }

  .faq-orb-1,
  .faq-orb-2,
  .faq-orb-3 {
    animation: none;
  }

  .faq-card-border {
    animation: none;
  }

  .faq-card:hover .faq-card-inner,
  .faq-card.open .faq-card-inner {
    transform: none;
  }

  .faq-card:hover .faq-number,
  .faq-card.open .faq-number {
    transform: none;
  }

  .partner-orb-1,
  .partner-orb-2,
  .partner-orb-3 {
    animation: none;
  }

  .partner-card-border {
    animation: none;
  }

  .blog-card-border {
    animation: none;
  }

  .blog-card:hover .blog-card-inner {
    transform: none;
  }

  .blog-card:hover .blog-card-thumb svg {
    transform: none;
  }

  .blog-card:hover .blog-card-link svg {
    transform: none;
  }

  .partner-stats-shimmer {
    animation: none;
    display: none;
  }

  .partner-card:hover .partner-card-inner {
    transform: none;
  }

  .partner-card:hover .partner-icon-wrap {
    transform: none;
  }

  .institute-track--ltr,
  .institute-track--rtl {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
  }

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

  .institute-card::before {
    display: none;
  }

  .institute-dot::after {
    animation: none;
  }

  .pay-card-border {
    animation: none;
  }

  .pay-card:hover .pay-card-inner {
    transform: none;
  }

  .pay-card:hover .pay-icon {
    transform: none;
  }

  .pay-badge-dot--fast::after {
    animation: none;
  }

  .stat-card:hover .stat-card-inner {
    transform: none;
  }

  .stat-card:hover .stat-card-icon {
    transform: none;
  }

  .testi-track {
    transition: none;
  }

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

  .testi-nav-btn:hover {
    transform: none;
  }

  /* New premium effects — disabled for reduced motion */
  .stat-card-border {
    animation: none;
    opacity: 0;
  }

  .testi-card-border {
    animation: none;
    opacity: 0;
  }

  .hero-orb {
    animation: none;
  }

  .hero-form-card {
    animation: none;
  }

  .cta-final-btn::before {
    animation: none;
  }

  .btn-shimmer::before {
    animation: none;
  }

  .footer-enhanced a:hover {
    transform: none;
  }

  .testi-bg-orb-1,
  .testi-bg-orb-2,
  .testi-bg-orb-3 {
    animation: none;
  }

  .cta-bg-orb-1,
  .cta-bg-orb-2,
  .cta-bg-orb-3 {
    animation: none;
  }

}
