/* ═══════════════════════════════════════════════════════════════════
   PREMIUM PARTNER SHOWCASE - PRODUCTION CSS
   Brand: Space Grotesk | Navy #0A2647 | Gold #FFC107
   Design: Clean flat cards + Glassmorphism on modals/overlays only
   ═══════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════
   1. CSS RESET & VARIABLES
   ═══════════════════════════════════════════════════════════════════ */

:root {
  /* Colors */
  --navy-dark: #0A2647;
  --navy-medium: #144272;
  --navy-light: #205295;
  --gold-primary: #FFC107;
  --gold-dark: #F2C94C;
  --gold-light: #FFD54F;
  --white: #FFFFFF;
  --gray-50: #F8F9FA;
  --gray-100: #E9ECEF;
  --gray-600: #6C757D;
  --gray-900: #212529;
  --success: #10B981;

  /* Typography */
  --font-primary: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;

  /* Spacing */
  --space-xs: 6px;
  --space-sm: 12px;
  --space-md: 20px;
  --space-lg: 28px;
  --space-xl: 40px;
  --space-2xl: 56px;
  --space-3xl: 72px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.3);

  /* Transitions */
  --transition-base: all 0.3s ease;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: 100px;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-900);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ═══════════════════════════════════════════════════════════════════
   2. LAYOUT & CONTAINER
   ═══════════════════════════════════════════════════════════════════ */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-sm);
  }
}

/* ═══════════════════════════════════════════════════════════════════
   3. HEADER (PREMIUM STICKY NAVIGATION)
   ═══════════════════════════════════════════════════════════════════ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-medium) 100%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled {
  box-shadow: 0 8px 32px rgba(10, 38, 71, 0.3);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  position: relative;
}

/* Logo */
.navbar-brand {
  flex-shrink: 0;
}

.logo-link {
  display: block;
  line-height: 0;
}

.logo-image {
  height: 40px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.logo-image:hover {
  opacity: 0.9;
}

/* Center Navigation */
.navbar-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--white);
}

.nav-link-highlight {
  color: var(--gold-primary);
  font-weight: 600;
}

.nav-link-highlight:hover {
  color: var(--gold-light);
}

/* Right Actions */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-account {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  border-radius: 24px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-account:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.btn-header-cta {
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
  color: var(--navy-dark);
  font-size: 14px;
  font-weight: 700;
  border-radius: 24px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
  white-space: nowrap;
}

.btn-header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .navbar-menu {
    gap: 20px;
  }

  .navbar-actions {
    gap: 8px;
  }

  .btn-account,
  .btn-header-cta {
    padding: 8px 16px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .navbar-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-medium) 100%);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: 0 8px 32px rgba(10, 38, 71, 0.5);
  }

  .navbar-menu.active {
    transform: translateX(0);
  }

  .nav-link {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  .navbar-actions {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-medium) 100%);
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(10, 38, 71, 0.5);
    transform: translateY(200%);
    transition: transform 0.3s ease;
  }

  .navbar-menu.active~.navbar-actions {
    transform: translateY(0);
  }

  .btn-account,
  .btn-header-cta {
    flex: 1;
    text-align: center;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   4. HERO SECTION (DEALS PAGE)
   ═══════════════════════════════════════════════════════════════════ */

.hero-deals {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, #FAF8F3 0%, #F5F2EB 50%, #F0EDE5 100%);
  overflow: hidden;
}

/* Dot Pattern Background */
.hero-deals::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, rgba(10, 38, 71, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}

/* Vignette Effect */
.hero-deals::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(10, 38, 71, 0.03) 100%);
  pointer-events: none;
  z-index: 0;
}

/* Particle Canvas */
.particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-deals .container {
  position: relative;
  z-index: 2;
}

/* Two Column Grid */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}

/* Left Column Content */
.hero-content-left {
  animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Eyebrow Badge */
.hero-eyebrow {
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeIn 0.5s ease forwards;
  animation-delay: 0s;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-dark);
}

/* Main Headline */
.hero-main-headline {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--navy-dark);
  margin-bottom: 20px;
}

/* Headline Line Animation */
.headline-line {
  display: block;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeSlideUp 0.8s ease forwards;
}

.headline-line[data-line="1"] {
  animation-delay: 0.2s;
}

.headline-line[data-line="2"] {
  animation-delay: 0.7s;
  color: var(--gold-primary);
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.text-highlight {
  color: var(--gold-primary);
  position: relative;
}

/* Subheading */
.hero-subheading {
  font-size: 18px;
  line-height: 1.7;
  color: #5A6C7D;
  margin-bottom: 32px;
  max-width: 580px;
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
  animation-delay: 1.3s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Trust Pills */
.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
  animation-delay: 1.6s;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  color: #0A2647;
}

.pill-check {
  color: var(--success);
  flex-shrink: 0;
}

/* Hero CTAs */
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
  animation-delay: 2s;
}

.btn-hero-primary {
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
  color: var(--navy-dark);
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(255, 193, 7, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 193, 7, 0.4);
}

.btn-hero-secondary {
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-dark);
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.btn-hero-secondary:hover {
  opacity: 1;
  transform: translateX(4px);
}

/* Right Column: Glassmorphism Card */
.hero-content-right {
  animation: fadeInUp 0.8s ease 0.2s both;
}

.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 32px rgba(10, 38, 71, 0.12);
}

.glass-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.glass-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-dark);
  margin: 0;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(255, 193, 7, 0.15);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.live-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold-primary);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.glass-card-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Progress Bar */
.progress-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-dark);
}

.progress-number {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-primary);
}

.progress-bar {
  height: 8px;
  background: rgba(10, 38, 71, 0.08);
  border-radius: 12px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
  border-radius: 12px;
  transition: width 1s ease;
}

/* Glass Stats */
.glass-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.glass-stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 12px;
}

.stat-icon {
  font-size: 24px;
}

.stat-label {
  font-size: 12px;
  color: #5A6C7D;
  font-weight: 500;
}

.stat-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-dark);
}

/* Card Footer */
.glass-card-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(10, 38, 71, 0.08);
  font-size: 11px;
  color: #5A6C7D;
  font-weight: 500;
}

.footer-dot {
  width: 4px;
  height: 4px;
  background: var(--success);
  border-radius: 50%;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 360px;
    gap: 40px;
  }

  .hero-main-headline {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .hero-deals {
    padding: 60px 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-main-headline {
    font-size: 36px;
  }

  .hero-subheading {
    font-size: 16px;
  }

  .trust-pills {
    flex-direction: column;
  }

  .trust-pill {
    width: 100%;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .glass-card {
    padding: 20px;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   5. [REMOVED] URGENCY STRIP
   ═══════════════════════════════════════════════════════════════════ */

/* Styles removed as part of Phase 12 redesign */

/* ═══════════════════════════════════════════════════════════════════
   6. TRUST BLOCK
   ═══════════════════════════════════════════════════════════════════ */

.trust-block {
  padding: var(--space-2xl) 0;
  background: var(--white);
}

.trust-block h2 {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  color: var(--navy-dark);
  margin-bottom: var(--space-xl);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.trust-item {
  text-align: center;
  padding: var(--space-lg);
  background: var(--gray-50);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}

.trust-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.trust-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-sm);
  background: var(--success);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
}

.trust-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: var(--space-xs);
}

.trust-item p {
  font-size: 14px;
  color: var(--gray-600);
}

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

@media (max-width: 768px) {
  .trust-block h2 {
    font-size: 28px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

/* ═══════════════════════════════════════════════════════════════════
   7. PARTNERS SECTION
   ═══════════════════════════════════════════════════════════════════ */

.partners-section {
  padding: var(--space-3xl) 0;
  background: var(--gray-50);
}

.partners-section h2 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  color: var(--navy-dark);
  margin-bottom: var(--space-2xl);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

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

@media (max-width: 768px) {
  .partners-section h2 {
    font-size: 28px;
  }

  .partners-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
}

/* ═══════════════════════════════════════════════════════════════════
   8. PARTNER CARDS (CLEAN FLAT DESIGN - REFERENCE STYLE)
   ═══════════════════════════════════════════════════════════════════ */

.partner-card {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  will-change: transform, box-shadow;
}

.partner-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.6);
  border-color: var(--gold-primary);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 0 20px rgba(251, 191, 36, 0.1);
}

.partner-image {
  height: 120px;
  background: rgba(248, 249, 250, 0.5);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  transition: transform 0.5s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  overflow: hidden;
}

.partner-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  /* IMPORTANT: Images are NOT clickable */
  pointer-events: none;
  user-select: none;
}

.partner-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 4px;
}

.partner-desc {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: var(--space-sm);
  flex-grow: 1;
}

.partner-actions {
  display: flex;
  gap: var(--space-xs);
  margin-top: auto;
}

/* ═══════════════════════════════════════════════════════════════════
   9. BUTTONS
   ═══════════════════════════════════════════════════════════════════ */

.btn-primary {
  display: inline-block;
  padding: 10px 20px;
  background: var(--gold-primary);
  color: var(--navy-dark);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-align: center;
  transition: var(--transition-base);
  border: none;
  cursor: pointer;
  flex: 1;
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(255, 193, 7, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 8px rgba(255, 193, 7, 0.2);
}

.btn-secondary {
  display: inline-block;
  padding: 8px 18px;
  background: var(--white);
  color: var(--navy-dark);
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid var(--navy-medium);
  border-radius: var(--radius-sm);
  text-align: center;
  transition: var(--transition-base);
  cursor: pointer;
  flex: 1;
}

.btn-secondary:hover {
  background: var(--gray-50);
  border-color: var(--navy-dark);
}

@media (max-width: 768px) {
  .partner-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   10. MODAL (GLASSMORPHISM)
   ═══════════════════════════════════════════════════════════════════ */

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  animation: modalFadeIn 0.3s ease;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 38, 71, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal-content {
  position: relative;
  z-index: 1001;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: transparent;
  color: var(--gray-600);
  font-size: 28px;
  line-height: 1;
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
  border-radius: 50%;
}

.modal-close:hover {
  background: rgba(10, 38, 71, 0.1);
  color: var(--navy-dark);
}

.modal-image {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.modal-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.modal-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: var(--space-sm);
}

.modal-description {
  font-size: 16px;
  color: var(--gray-600);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.modal-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: var(--space-sm);
  margin-top: var(--space-md);
}

.modal-list {
  list-style: none;
  margin-bottom: var(--space-md);
}

.modal-list li {
  padding: var(--space-xs) 0;
  padding-left: var(--space-md);
  position: relative;
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.5;
}

.modal-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold-primary);
  font-weight: 700;
}

.modal-list.pros li::before {
  content: "✓";
  color: var(--success);
}

.modal-list.cons li::before {
  content: "⚠";
  color: var(--gray-600);
}

.modal-content .btn-primary {
  width: 100%;
  margin-top: var(--space-md);
  padding: 16px 32px;
  font-size: 16px;
}

@media (max-width: 768px) {
  .modal-content {
    padding: var(--space-md);
    max-height: 85vh;
  }

  .modal-content h3 {
    font-size: 20px;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   11. FAQ SECTION
   ═══════════════════════════════════════════════════════════════════ */

.faq-section {
  padding: 100px 0;
  background: var(--white);
  content-visibility: auto;
  contain-intrinsic-size: 800px;
}

.faq-section h2 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  color: var(--navy-dark);
  margin-bottom: var(--space-2xl);
}

.faq-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: var(--space-sm);
}

.faq-item {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  padding: var(--space-md);
  transition: var(--transition-base);
}

.faq-item[open] {
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.faq-item summary {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy-dark);
  cursor: pointer;
  list-style: none;
  padding: var(--space-xs) 0;
  position: relative;
  padding-right: var(--space-lg);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--gold-primary);
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  content: "−";
  transform: translateY(-50%) rotate(180deg);
}

.faq-item p {
  margin-top: var(--space-sm);
  padding-top: var(--space-sm);
  color: var(--gray-600);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .faq-section h2 {
    font-size: 28px;
  }

  .faq-item summary {
    font-size: 16px;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   12. FOOTER
   ═══════════════════════════════════════════════════════════════════ */

.site-footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: var(--space-lg) 0;
  text-align: center;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
}

.footer-disclaimer {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-md);
}

.footer-disclaimer strong {
  color: var(--gold-primary);
  font-weight: 600;
}

.footer-copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* ═══════════════════════════════════════════════════════════════════
   13. UTILITY CLASSES
   ═══════════════════════════════════════════════════════════════════ */

.hidden {
  display: none !important;
}

.no-scroll {
  overflow: hidden;
}

/* Focus visible for accessibility */
*:focus-visible {
  outline: 2px solid var(--gold-primary);
  outline-offset: 2px;
}

/* Print styles */
@media print {

  .site-header,
  .urgency-strip,
  .modal,
  .btn-primary,
  .btn-secondary {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   14. PARTNER RATING BADGES (ON CARDS)
   ═══════════════════════════════════════════════════════════════════ */

.partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: var(--space-xs);
}

.verified-badge-floating {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 50px;
  padding: 4px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.verified-badge-floating span {
  font-size: 10px;
  font-weight: 700;
  color: #1E40AF;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-icon-blue {
  flex-shrink: 0;
  filter: drop-shadow(0 0 2px rgba(59, 130, 246, 0.3));
}

.badge-icon-svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.partner-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--gray-600);
  margin-top: var(--space-xs);
  margin-bottom: var(--space-sm);
}

.stars {
  display: flex;
  gap: 2px;
  color: var(--gold-primary);
}

.rating-label {
  font-size: 11px;
  color: var(--gray-600);
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════════════════
   15. TRUST INDICATORS SECTION
   ═══════════════════════════════════════════════════════════════════ */

.trust-indicators {
  padding: var(--space-2xl) 0;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.indicators-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  text-align: center;
}

.indicator-item {
  padding: var(--space-md);
}

.indicator-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1;
  margin-bottom: var(--space-xs);
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-medium) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.indicator-label {
  font-size: 16px;
  color: var(--gray-600);
  font-weight: 500;
}

.indicator-sublabel {
  font-size: 13px;
  color: var(--gray-600);
  margin-top: 4px;
  font-style: italic;
}

@media (max-width: 768px) {
  .indicators-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .indicator-number {
    font-size: 36px;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   16. TRANSPARENCY DISCLAIMER
   ═══════════════════════════════════════════════════════════════════ */

.transparency-section {
  padding: var(--space-xl) 0;
  background: var(--white);
}

.transparency-note {
  padding: var(--space-md);
  background: rgba(255, 193, 7, 0.1);
  border-left: 4px solid var(--gold-primary);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

.transparency-note strong {
  color: var(--navy-dark);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════════
   17. CTA MICRO-INTERACTIONS
   ═══════════════════════════════════════════════════════════════════ */

/* Pulse animation for urgency */
@keyframes ctaPulse {

  0%,
  100% {
    box-shadow: 0 4px 8px rgba(255, 193, 7, 0.2);
  }

  50% {
    box-shadow: 0 4px 16px rgba(255, 193, 7, 0.4);
  }
}

.btn-primary {
  position: relative;
  overflow: hidden;
  animation: ctaPulse 3s infinite ease-in-out;
}

/* Ripple effect on click */
.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary:active::before {
  width: 300px;
  height: 300px;
}

/* Shine effect */
.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -100%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.4),
      transparent);
  transform: skewX(-20deg);
  transition: left 0.8s ease;
}

.btn-primary:hover::after {
  left: 150%;
}

/* Secondary button hover glow */
.btn-secondary {
  position: relative;
  transition: var(--transition-base);
}

.btn-secondary:hover {
  box-shadow: 0 0 0 2px var(--navy-dark);
}

/* Icon animation for scroll button */
.btn-scroll {
  position: relative;
}

.btn-scroll::after {
  content: '↓';
  display: inline-block;
  margin-left: 8px;
  animation: bounce 2s infinite ease-in-out;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(4px);
  }
}

/* ═══════════════════════════════════════════════════════════════════
   18. LOADING STATE FOR CTA BUTTONS
   ═══════════════════════════════════════════════════════════════════ */

.btn-primary.loading {
  pointer-events: none;
  opacity: 0.7;
  position: relative;
}

.btn-primary.loading::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid var(--navy-dark);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
}

@keyframes spin {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

/* ═══════════════════════════════════════════════════════════════════
   19. HOVER LIFT EFFECT ON CARDS
   ═══════════════════════════════════════════════════════════════════ */

.partner-card {
  transform-origin: center bottom;
  will-change: transform;
}

.partner-card:hover {
  animation: cardFloat 3s ease-in-out infinite;
}

@keyframes cardFloat {

  0%,
  100% {
    transform: translateY(-4px);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ═══════════════════════════════════════════════════════════════════
   20. CTA TOOLTIPS
   ═══════════════════════════════════════════════════════════════════ */

[data-tooltip] {
  position: relative;
  cursor: pointer;
}

[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 12px;
  background: var(--navy-dark);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

[data-tooltip]:hover::after {
  opacity: 1;
}

/* Tooltip arrow */
[data-tooltip]::before {
  content: '';
  position: absolute;
  bottom: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--navy-dark);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

[data-tooltip]:hover::before {
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════════
   21. PERFORMANCE OPTIMIZATIONS
   ═══════════════════════════════════════════════════════════════════ */

/* Reduce layout shifts with aspect ratio boxes */
.partner-image {
  aspect-ratio: 16 / 9;
  background: var(--gray-50);
}

/* GPU acceleration for animations */
.partner-card,
.btn-primary,
.btn-secondary,
.modal-content {
  will-change: transform;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}



/* Reduce paint on scroll */
.site-header {
  contain: layout style paint;
}

/* Optimize images */
img {
  content-visibility: auto;
}

/* ═══════════════════════════════════════════════════════════════════
   22. ACCESSIBILITY
   ═══════════════════════════════════════════════════════════════════ */

.skip-to-main {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 1em;
  background: var(--navy-dark);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
}

.skip-to-main:focus {
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}

/* Ensure sufficient color contrast */
.partner-desc {
  color: #5a6169;
  /* WCAG AA compliant on white */
}

/* Focus indicators for keyboard navigation */
a:focus,
button:focus,
details:focus {
  outline: 2px solid var(--gold-primary);
  outline-offset: 2px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .partner-card {
    border: 2px solid var(--navy-dark);
  }

  .btn-primary {
    border: 2px solid var(--navy-dark);
  }
}

/* ═══════════════════════════════════════════════════════════════════
   23. MOBILE-SPECIFIC OPTIMIZATIONS
   ═══════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* Optimize touch targets (minimum 44x44px) */
  .btn-primary,
  .btn-secondary {
    min-height: 44px;
    padding: 14px 24px;
  }

  /* Reduce animations on mobile for performance */
  .partner-card:hover {
    animation: none;
  }

  /* Optimize modal for mobile */
  .modal-content {
    max-height: 90vh;
    padding: var(--space-lg);
  }

  /* Improve tap targets */
  .faq-item summary {
    padding: var(--space-md);
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  /* Prevent horizontal scroll */
  body {
    overflow-x: hidden;
  }

  /* Optimize font sizes for mobile readability */
  body {
    font-size: 16px;
    /* Prevents zoom on iOS */
  }
}

/* iOS Safari specific fixes */
@supports (-webkit-touch-callout: none) {
  .modal-content {
    /* Fix for iOS bottom bar */
    max-height: calc(90vh - 100px);
  }
}

.partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: var(--space-xs);
}

.badge-verified {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #059669;
  border-radius: 50px;
  padding: 4px 12px;
  font-weight: 700;
}

.badge-icon {
  font-size: 14px;
}

.partner-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--gray-600);
  margin-top: var(--space-xs);
  margin-bottom: var(--space-sm);
}

.stars {
  display: flex;
  gap: 2px;
  color: var(--gold-primary);
}

.rating-label {
  font-size: 11px;
  color: var(--gray-600);
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════════════════
   15. TRUST INDICATORS SECTION
   ═══════════════════════════════════════════════════════════════════ */

.trust-indicators {
  padding: var(--space-2xl) 0;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.indicators-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  text-align: center;
}

.indicator-item {
  padding: var(--space-md);
}

.indicator-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1;
  margin-bottom: var(--space-xs);
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-medium) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.indicator-label {
  font-size: 16px;
  color: var(--gray-600);
  font-weight: 500;
}

.indicator-sublabel {
  font-size: 13px;
  color: var(--gray-600);
  margin-top: 4px;
  font-style: italic;
}

@media (max-width: 768px) {
  .indicators-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .indicator-number {
    font-size: 36px;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   16. TRANSPARENCY DISCLAIMER
   ═══════════════════════════════════════════════════════════════════ */

.transparency-section {
  padding: var(--space-xl) 0;
  background: var(--white);
}

.transparency-note {
  padding: var(--space-md);
  background: rgba(255, 193, 7, 0.1);
  border-left: 4px solid var(--gold-primary);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

.transparency-note strong {
  color: var(--navy-dark);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════════
   24. ANIMATED GRADIENT BACKGROUNDS
   ═══════════════════════════════════════════════════════════════════ */

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.hero {
  background: linear-gradient(-45deg, #0A2647, #144272, #205295, #FFC107);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* ═══════════════════════════════════════════════════════════════════
   25. PARTICLE CANVAS BACKGROUND
   ═══════════════════════════════════════════════════════════════════ */

.particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.3;
}

/* ═══════════════════════════════════════════════════════════════════
   26. ANIMATED STATS BAR
   ═══════════════════════════════════════════════════════════════════ */

.animated-stats {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, #1e3a5f 50%, var(--navy-medium) 100%);
  position: relative;
  overflow: hidden;
}

.animated-stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 193, 7, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(255, 193, 7, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.stats-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: var(--space-md) var(--space-sm);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.stat-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
  border-color: rgba(255, 193, 7, 0.3);
}

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

/* SVG Icon Wrap */
.stat-icon-wrap {
  width: 36px;
  height: 36px;
  margin: 0 auto var(--space-xs);
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.2) 0%, rgba(255, 193, 7, 0.1) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.stat-item:hover .stat-icon-wrap {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.3) 0%, rgba(255, 193, 7, 0.15) 100%);
  transform: scale(1.1);
}

.stat-icon-svg {
  width: 20px;
  height: 20px;
  color: var(--gold-primary);
  transition: all 0.3s ease;
}

.stat-item:hover .stat-icon-svg {
  color: var(--gold-light);
}

/* Remove old emoji styles */
.stat-icon {
  display: none;
}

.stat-content {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--gold-primary);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
  color: var(--gold-light);
  text-shadow: 0 0 20px rgba(255, 193, 7, 0.4);
}

.stat-plus,
.stat-percent,
.stat-slash {
  font-size: 18px;
  color: rgba(255, 193, 7, 0.7);
  font-weight: 600;
}

.stat-static {
  font-size: 28px;
  color: var(--gold-primary);
  font-weight: 700;
}

.stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

/* Responsive */
@media (max-width: 1024px) {
  .stats-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .stat-item {
    padding: var(--space-sm);
  }
}

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

  .stat-number {
    font-size: 26px;
  }

  .stat-icon-wrap {
    width: 30px;
    height: 30px;
  }

  .stat-icon-svg {
    width: 16px;
    height: 16px;
  }

  .stat-label {
    font-size: 10px;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   27. INTERACTIVE CATEGORY FILTER
   ═══════════════════════════════════════════════════════════════════ */

.category-filter-section {
  padding: var(--space-sm) 0;
  background: var(--white);
  position: sticky;
  top: 100px;
  z-index: 98;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: var(--space-2xl);
}

.filter-controls {
  display: flex;
  gap: var(--space-sm);
  overflow-x: auto;
  padding: var(--space-sm) 0;
  scrollbar-width: none;
}

.filter-controls::-webkit-scrollbar {
  display: none;
}

.filter-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-dark);
  cursor: pointer;
  transition: var(--transition-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

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

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

.filter-btn:hover {
  border-color: var(--gold-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.2);
}

.filter-btn.active {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: var(--navy-dark);
  box-shadow: 0 4px 16px rgba(255, 193, 7, 0.4);
}

.filter-icon {
  font-size: 18px;
}

.filter-count {
  background: rgba(10, 38, 71, 0.1);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
}

.filter-btn.active .filter-count {
  background: rgba(10, 38, 71, 0.2);
}

/* ═══════════════════════════════════════════════════════════════════
   28. CARD HOVER ENHANCEMENTS (SUBTLE)
   ═══════════════════════════════════════════════════════════════════ */

.partner-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

/* ═══════════════════════════════════════════════════════════════════
   29. SCROLL PROGRESS INDICATOR
   ═══════════════════════════════════════════════════════════════════ */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 9999;
}

.scroll-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
  width: 0%;
  transition: width 0.1s ease;
  box-shadow: 0 0 10px var(--gold-primary);
}

/* ═══════════════════════════════════════════════════════════════════
   30. LIVE SOCIAL PROOF NOTIFICATIONS
   ═══════════════════════════════════════════════════════════════════ */

.social-proof-notification {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 360px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  padding: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  z-index: 9998;
  transform: translateX(-400px);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-left: 4px solid var(--gold-primary);
}

.social-proof-notification.show {
  transform: translateX(0);
}

.notification-content {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex: 1;
}

.notification-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid var(--gold-primary);
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background: var(--white);
}

.notification-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.notification-text {
  font-size: 13px;
  line-height: 1.3;
  color: var(--gray-900);
  display: flex;
  flex-direction: column;
}

/* Inline Verified Icon Styling */
.partner-name {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: var(--space-xs);
}

.verified-icon-native {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: rgba(16, 185, 129, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 50%;
  padding: 2px;
  position: relative;
  overflow: hidden;
  filter: drop-shadow(0 2px 4px rgba(16, 185, 129, 0.1));
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  flex-shrink: 0;
}

.verified-icon-native::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg,
      transparent,
      rgba(255, 255, 255, 0.6),
      transparent);
  transform: rotate(45deg);
  animation: glimmer 3s infinite;
}

@keyframes glimmer {
  0% {
    left: -150%;
    top: -150%;
  }

  100% {
    left: 150%;
    top: 150%;
  }
}

.verified-icon-native svg {
  width: 14px;
  height: 14px;
  position: relative;
  z-index: 1;
}

.partner-card:hover .verified-icon-native {
  transform: scale(1.2) rotate(10deg);
  background: rgba(16, 185, 129, 0.2);
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.3);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }

  70% {
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.notification-text strong {
  color: var(--navy-dark);
  font-weight: 600;
}

.notification-close {
  background: transparent;
  border: none;
  font-size: 20px;
  color: var(--gray-600);
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}

@media (max-width: 768px) {
  .social-proof-notification {
    left: 12px;
    right: 12px;
    max-width: none;
    bottom: 80px;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   31. FLOATING STICKY CTA
   ═══════════════════════════════════════════════════════════════════ */

.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9997;
  transform: translateY(200px);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.floating-cta.visible {
  transform: translateY(0);
}

.floating-cta-content {
  background: var(--navy-dark);
  color: var(--white);
  padding: var(--space-md) var(--space-lg);
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: var(--space-md);
  box-shadow: 0 8px 32px rgba(10, 38, 71, 0.4);
  animation: ctaPulse 3s infinite ease-in-out;
}

.floating-cta-text {
  display: flex;
  align-items: center;
  gap: 8px;
}

.floating-cta-emoji {
  font-size: 24px;
  animation: bounce 2s ease-in-out infinite;
}

.floating-cta-message {
  font-size: 14px;
  font-weight: 600;
}

.floating-cta-btn {
  background: var(--gold-primary);
  color: var(--navy-dark);
  padding: 10px 24px;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition-base);
}

.floating-cta-btn:hover {
  background: var(--gold-light);
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .floating-cta {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .floating-cta-content {
    width: 100%;
    justify-content: space-between;
    padding: var(--space-sm) var(--space-md);
  }

  .floating-cta-message {
    font-size: 12px;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   32. COMPARISON TOOL
   ═══════════════════════════════════════════════════════════════════ */

.comparison-tool {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.comparison-tool h2 {
  text-align: center;
  font-size: 36px;
  color: var(--navy-dark);
  margin-bottom: var(--space-sm);
}

.section-subtitle {
  text-align: center;
  color: var(--gray-600);
  margin-bottom: var(--space-2xl);
}

.comparison-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.comparison-slot {
  background: var(--white);
  border: 2px dashed var(--gray-100);
  border-radius: var(--radius-md);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
  cursor: pointer;
}

.comparison-slot:hover {
  border-color: var(--gold-primary);
  border-style: solid;
  box-shadow: 0 4px 16px rgba(255, 193, 7, 0.2);
}

.empty-slot {
  text-align: center;
  color: var(--gray-600);
}

.empty-icon {
  font-size: 48px;
  color: var(--gray-100);
  display: block;
  margin-bottom: var(--space-sm);
}

@media (max-width: 768px) {
  .comparison-selector {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   33. TESTIMONIAL SLIDER
   ═══════════════════════════════════════════════════════════════════ */

.testimonials-section {
  padding: var(--space-3xl) 0;
  background: var(--navy-dark);
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite reverse;
}

.testimonials-section h2 {
  text-align: center;
  color: var(--white);
  margin-bottom: var(--space-2xl);
  position: relative;
  z-index: 1;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
  padding: var(--space-md) 0;
}

.testimonial-track {
  display: flex;
  gap: var(--space-lg);
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: calc(33.333% - var(--space-lg));
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  flex-shrink: 0;
}

.testimonial-stars {
  color: var(--gold-primary);
  font-size: 20px;
  margin-bottom: var(--space-sm);
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-md);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold-primary);
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info strong {
  display: block;
  font-size: 14px;
  color: var(--white);
}

.author-info span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  position: relative;
  z-index: 1;
}

.slider-btn {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  transition: var(--transition-base);
}

.slider-btn:hover {
  background: var(--gold-primary);
  color: var(--navy-dark);
  transform: scale(1.1);
}

@media (max-width: 1024px) {
  .testimonial-card {
    min-width: calc(50% - var(--space-lg));
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    min-width: calc(100% - var(--space-lg));
  }
}

/* ═══════════════════════════════════════════════════════════════════
   34. HERO BADGE & TIMER
   ═══════════════════════════════════════════════════════════════════ */

.hero-badge-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(10, 38, 71, 0.05);
  border: 1px solid rgba(10, 38, 71, 0.1);
  border-radius: 50px;
  color: var(--navy-dark);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.badge-icon {
  color: var(--gold-primary);
  font-size: 14px;
}

.badge-divider {
  color: var(--gray-400);
  margin: 0 4px;
}

.hero-timer {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  color: var(--gold-primary);
  background: var(--navy-dark);
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .hero-badge {
    font-size: 12px;
    padding: 6px 12px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.exit-intent-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  animation: modalFadeIn 0.3s ease;
}

.exit-intent-popup.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.exit-popup-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 38, 71, 0.95);
  backdrop-filter: blur(8px);
}

.exit-popup-content {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  max-width: 500px;
  width: 90%;
  text-align: center;
  animation: modalSlideIn 0.3s ease;
}

.exit-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: var(--gray-600);
  cursor: pointer;
}

.exit-popup-icon {
  font-size: 64px;
  margin-bottom: var(--space-md);
  animation: bounce 2s ease-in-out infinite;
}

.exit-popup-content h3 {
  font-size: 28px;
  color: var(--navy-dark);
  margin-bottom: var(--space-sm);
}

.exit-popup-content>p {
  color: var(--gray-600);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.exit-popup-partners {
  display: grid;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.exit-partner-mini {
  background: var(--gray-50);
  padding: var(--space-md);
  border-radius: var(--radius-sm);
  text-align: left;
}

.exit-partner-mini strong {
  display: block;
  color: var(--navy-dark);
  font-size: 16px;
  margin-bottom: 4px;
}

.exit-partner-mini span {
  font-size: 13px;
  color: var(--gray-600);
}

.exit-popup-dismiss {
  background: transparent;
  border: none;
  color: var(--gray-600);
  font-size: 13px;
  margin-top: var(--space-sm);
  cursor: pointer;
  text-decoration: underline;
}

.exit-popup-dismiss:hover {
  color: var(--navy-dark);
}

/* ═══════════════════════════════════════════════════════════════════
   35. PARTNER SPOTLIGHT BANNER
   ═══════════════════════════════════════════════════════════════════ */

.partner-spotlight-banner {
  background: linear-gradient(90deg, var(--navy-dark) 0%, var(--navy-medium) 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.spotlight-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold-primary);
  color: var(--navy-dark);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
}

.spotlight-content {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  width: 100%;
  justify-content: space-between;
}

.spotlight-info h3 {
  color: var(--white);
  margin-bottom: 4px;
}

.spotlight-info p {
  color: var(--gray-100);
  font-size: 14px;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   36. COMPARISON CHECKBOXES
   ═══════════════════════════════════════════════════════════════════ */

.compare-checkbox {
  position: absolute;
  top: 12px;
  right: 12px;
  opacity: 0;
}

.compare-label {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--white);
  border: 2px solid var(--gray-100);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-base);
  z-index: 10;
}

.compare-checkbox:checked+.compare-label {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: var(--navy-dark);
}

.compare-label:hover {
  border-color: var(--gold-primary);
}

/* ═══════════════════════════════════════════════════════════════════
   37. ADVANCED COMPARISON STYLES
   ═══════════════════════════════════════════════════════════════════ */

.comparison-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.comparison-bar.active {
  transform: translateY(0);
}

.comparison-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
}

.comparison-selected-partners {
  display: flex;
  gap: var(--space-sm);
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
}

.comparison-selected-partners::-webkit-scrollbar {
  display: none;
}

.selected-partner-chip {
  background: var(--navy-dark);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  animation: chipSlideIn 0.3s ease;
}

@keyframes chipSlideIn {
  from {
    transform: translateX(20px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.remove-chip {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--white);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  transition: var(--transition-base);
}

.remove-chip:hover {
  background: var(--gold-primary);
  color: var(--navy-dark);
}

.comparison-bar-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.selection-count {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  white-space: nowrap;
}

/* Comparison Table Styles */
.comparison-table-wrapper {
  margin-top: var(--space-2xl);
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  background: var(--white);
  border: 1px solid var(--gray-100);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: var(--space-md);
  border-bottom: 1px solid var(--gray-50);
  min-width: 180px;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  min-width: 150px;
  background: var(--gray-50);
  position: sticky;
  left: 0;
  z-index: 2;
}

.comparison-table th {
  background: var(--gray-50);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 16px;
}

.score-badge {
  background: var(--gold-primary);
  color: var(--navy-dark);
  padding: 2px 10px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 16px;
}

.comp-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comp-feature-list li {
  font-size: 13px;
  color: var(--gray-700);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 768px) {
  .comparison-bar-content {
    flex-direction: column;
    gap: var(--space-md);
    align-items: stretch;
  }

  .comparison-selected-partners {
    width: 100%;
    padding-bottom: 4px;
  }

  .comparison-bar-actions {
    justify-content: space-between;
  }

  .comparison-table td,
  .comparison-table th {
    padding: var(--space-md);
    font-size: 13px;
  }
}