/* === AURA PREMIUM LIGHT (matches mockup) === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&display=swap');

/* Aura Premium Client Details Refinements */
body { font-family: 'Inter', sans-serif !important; }
.bg-light-aura { background-color: #f8fafc !important; }
.rounded-5 { border-radius: 32px !important; }
.card-metric-aura { 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
    border: 1px solid rgba(0,0,0,0.03) !important;
    border-radius: 24px !important;
}
.card-metric-aura:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
}
.bg-primary-soft { background-color: rgba(37, 99, 235, 0.12) !important; color: #2563eb !important; }
.bg-success-soft { background-color: rgba(34, 197, 94, 0.12) !important; color: #16a34a !important; }
.bg-info-soft    { background-color: rgba(14, 165, 233, 0.12) !important; color: #0ea5e9 !important; }
.bg-warning-soft { background-color: rgba(245, 158, 11, 0.12) !important; color: #d97706 !important; }

#clientTabs .nav-link.active { 
    color: #003366 !important; 
    border-bottom: 4px solid #00529B !important; 
    font-weight: 900 !important;
    padding-bottom: 12px !important;
}
.btn-light-aura { 
    background: #ffffff; 
    border: 1px solid #e2e8f0 !important; 
    color: #475569 !important; 
    border-radius: 50px !important; 
    padding: 10px 24px !important; 
    text-decoration: none; 
    display: inline-flex; 
    align-items: center;
    transition: all 0.2s ease;
}
.btn-light-aura:hover {
    background: #f8fafc;
    border-color: #cbd5e1 !important;
    transform: translateY(-2px);
}
.shadow-aura { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.avatar-aura { border: 5px solid #fff; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); }
.bg-primary-aura { background: linear-gradient(135deg, #003366 0%, #00529B 100%) !important; color: white !important; }
.shadow-aura-lg { box-shadow: 0 35px 60px -15px rgba(0, 82, 155, 0.2) !important; }
.fw-700 { font-weight: 700; }
.fw-900 { font-weight: 900; }

:root {
  --aura-navy: #071a35;
  --aura-navy2: #06152b;

  /* Light premium background */
  --aura-bg: #f6f8fb;
  --aura-surface: rgba(255, 255, 255, .72);
  --aura-surface-border: rgba(148, 163, 184, .30);

  /* Accent */
  --aura-accent: #2B6FFF;
  --aura-accent-hover: #1B4ED8;

  /* Text */
  --aura-text: #0f172a;
  --aura-muted: #64748b;

  /* Shadows & radius */
  --aura-radius: 18px;
  --shadow-sm: 0 8px 18px rgba(2, 6, 23, .10);
  --shadow-md: 0 18px 34px rgba(2, 6, 23, .12);
  --shadow-lg: 0 40px 80px -20px rgba(0, 18, 32, .12);

  /* Spacing compact (fix huge gaps) */
  --space-section: 44px;
  --space-tight: 28px;

  /* Glassmorphism */
  --aura-glass: rgba(255, 255, 255, 0.1);
  --aura-glass-border: rgba(255, 255, 255, 0.15);
  --aura-glass-dark: rgba(15, 23, 42, 0.85);

  --transition: all .28s cubic-bezier(.16, 1, .3, 1);
}

/* GLOBAL LIGHT */
body.aura-home {
  font-family: 'Inter', sans-serif;
  background: var(--aura-bg) !important;
  color: var(--aura-text) !important;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body.aura-home .container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}

body.aura-home section {
  padding: var(--space-section) 0;
}

body.aura-home .section-tight {
  padding: var(--space-tight) 0;
}

body.aura-home h1,
body.aura-home h2,
body.aura-home .reviews-title {
  font-family: 'Cormorant Garamond', serif !important;
  font-weight: 700;
  color: var(--aura-navy) !important;
  margin: 0;
}

body.aura-home .cta-bottom-section h2 {
  font-family: 'Cormorant Garamond', serif !important;
  font-weight: 700;
  color: #fff !important;
  margin: 0;
}

/* HEADER */
body.aura-home .site-header {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1160px;
  background: var(--aura-surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--aura-surface-border);
  border-radius: 999px;
  z-index: 1000;
  padding: 0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

body.aura-home .site-header.is-scrolled {
  position: fixed;
  top: 12px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 255, 255, 0.8);
}

body.aura-home .header-shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
  padding: 0 12px 0 24px;
}

body.aura-home .brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--aura-navy);
}

body.aura-home .brand-mark {
  width: 42px;
  height: 42px;
  background: var(--aura-accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 14px;
  color: #fff;
}

body.aura-home .brand-mark svg {
  width: 24px;
  height: 24px;
}

body.aura-home .brand-name {
  font-size: 22px;
  font-weight: 700;
  display: block;
  line-height: 1;
}

body.aura-home .brand-sub {
  font-size: 13px;
  font-weight: 400;
  opacity: 0.7;
  letter-spacing: 0.5px;
}

body.aura-home .nav-desktop {
  display: flex;
  gap: 30px;
}

body.aura-home .nav-desktop a {
  color: var(--aura-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition);
}

body.aura-home .nav-desktop a:hover {
  color: var(--aura-accent);
}

body.aura-home .header-actions {
  display: flex;
  align-items: center;
}

body.aura-home .lang-pill {
  background: rgba(7, 26, 53, 0.05);
  padding: 6px 16px;
  border-radius: 20px;
  display: flex;
  gap: 10px;
  margin-right: 20px;
  font-size: 13px;
  font-weight: 700;
}

body.aura-home .lang-pill a {
  color: var(--aura-text);
  text-decoration: none;
  opacity: 0.5;
}

body.aura-home .lang-pill a.active {
  opacity: 1;
}

body.aura-home .lang-pill .sep {
  opacity: 0.3;
}

body.aura-home .btn-primary.header-quote {
  background: linear-gradient(180deg, var(--aura-accent), var(--aura-accent-hover));
  color: #fff;
  padding: 10px 24px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  box-shadow: 0 8px 16px rgba(43, 111, 255, .2);
}

/* HERO — Premium Light Editorial */
body.aura-home .aura-hero {
  position: relative;
  min-height: 560px;
  /* before: 800px */
  padding-top: 110px;
  /* before: 140px */
  padding-bottom: 110px;
  /* before: 150px */
  background: url('../family_insurance_consultation_1766887514544.png') no-repeat center/cover;
  display: flex;
  align-items: center;
}

/* Light overlay (not dark) */
body.aura-home .aura-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, .74) 0%,
      rgba(255, 255, 255, .42) 45%,
      rgba(255, 255, 255, .70) 100%);
  z-index: 1;
}

body.aura-home .aura-hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  text-align: center !important;
  margin: 0 auto !important;
}

body.aura-home .aura-hero__title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(38px, 4.3vw, 60px);
  /* before: 82px */
  line-height: 1.05;
  color: var(--aura-navy) !important;
  margin-bottom: 14px;
}

body.aura-home .aura-hero__subtitle {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--aura-navy) !important;
  margin-bottom: 30px;
}

body.aura-home .aura-hero__cta {
  display: flex;
  gap: 24px;
  justify-content: center !important;
}

body.aura-home .aura-btn-dark,
body.aura-home .aura-btn-ghost {
  padding: 12px 18px;
  font-size: 13px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}

body.aura-home .aura-btn-dark {
  background: linear-gradient(180deg, var(--aura-accent), var(--aura-accent-hover));
  box-shadow: 0 12px 20px rgba(43, 111, 255, .18);
  color: #fff !important;
}

body.aura-home .aura-btn-ghost {
  border: 1px solid rgba(7, 26, 53, .18);
  background: rgba(255, 255, 255, .55);
  color: rgba(7, 26, 53, .92) !important;
}

/* OVERLAP SECTION */
body.aura-home .aura-overlap-section {
  position: relative;
  z-index: 10;
  margin-top: -78px;
}

body.aura-home .aura-hero__cards,
body.aura-home .steps-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 24px !important;
  margin-bottom: 40px !important;
  width: 100% !important;
}

body.aura-home .aura-hero__cards>.aura-card,
body.aura-home .aura-hero__cards>.step-card,
body.aura-home .steps-grid>.step-card {
  flex: 0 1 320px !important;
  width: 320px !important;
  max-width: 100% !important;
}

body.aura-home .aura-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 100%);
  border: 1px solid rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--aura-radius);

  padding: 32px 24px;
  color: var(--aura-text);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

body.aura-home .aura-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--aura-accent), var(--aura-accent-hover));
  opacity: 0;
  transition: opacity 0.4s ease;
}

body.aura-home .aura-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(43, 111, 255, 0.3);
}

body.aura-home .aura-card:hover::before {
  opacity: 1;
}

body.aura-home .aura-card__icon {
  width: 48px;
  height: 48px;
  color: var(--aura-accent);
  margin: 0 auto 20px auto;
  background: rgba(43, 111, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.aura-home .aura-card__icon--dual {
  display: flex;
  gap: 12px;
}

body.aura-home .aura-card__icon svg {
  width: 36px;
  height: 36px;
}

body.aura-home .aura-card__title {
  font-family: 'Inter', sans-serif !important;
  font-size: 18px;
  font-weight: 700;
  color: var(--aura-navy) !important;
  margin-bottom: 8px;
}

body.aura-home .aura-card__desc {
  font-size: 14px;
  opacity: 0.8;
  color: var(--aura-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

body.aura-home .aura-card__btn {
  background: rgba(43, 111, 255, 0.08);
  color: var(--aura-accent);
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  border: 1px solid transparent;
  transition: var(--transition);
  width: 100%;
}

body.aura-home .aura-card__btn:hover {
  background: var(--aura-accent);
  color: #fff;
}

/* TRUST SECTION */
body.aura-home .trust-container {
  padding-bottom: 24px;
}

body.aura-home .aura-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

body.aura-home .aura-benefit {
  flex: 1 1 280px;
  max-width: 350px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

body.aura-home .benefit-icon {
  width: 50px;
  height: 50px;
  background: rgba(43, 111, 255, 0.1);
  color: var(--aura-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

body.aura-home .aura-benefit h3 {
  font-family: 'Inter', sans-serif !important;
  font-size: 18px;
  color: var(--aura-navy);
  margin-bottom: 8px;
}

body.aura-home .aura-benefit p {
  color: var(--aura-muted);
  font-size: 14px;
}

/* REVIEWS */
body.aura-home .section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

body.aura-home .section-header h2 {
  font-size: 38px;
  margin-bottom: 16px;
  color: var(--aura-navy);
}

body.aura-home .section-header p {
  font-size: 18px;
  color: var(--aura-muted);
}

body.aura-home .reviews-title {
  font-size: 44px;
  text-align: center !important;
  margin-bottom: 16px !important;
}

body.aura-home .rating-pill {
  background: rgba(51, 120, 255, 0.1);
  border: 1px solid rgba(51, 120, 255, 0.3);
  padding: 12px 24px;
  border-radius: 40px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--aura-blue-accent);
}

body.aura-home .reviews-wall {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

body.aura-home .review-card {
  flex: 1 1 300px;
  max-width: 360px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 100%);
  border: 1px solid rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 32px 24px;
  border-radius: var(--aura-radius);
  color: var(--aura-text);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  align-items: center;
  text-align: center;
}

body.aura-home .review-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

body.aura-home .review-username,
body.aura-home .review-highlight,
body.aura-home .review-meta {
  color: var(--aura-navy) !important;
}




body.aura-home .review-user {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  align-items: center;
}

body.aura-home .review-user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

body.aura-home .stars {
  color: #ffb400;
  letter-spacing: 2px;
  font-size: 14px;
}

body.aura-home .review-username {
  font-weight: 700;
  font-size: 16px;
}

body.aura-home .review-highlight {
  font-weight: 600;
  margin-bottom: 10px;
}

body.aura-home .review-meta {
  opacity: 0.6;
  font-size: 13px;
  margin-bottom: 20px;
}

body.aura-home .review-card .btn {
  color: var(--aura-accent) !important;
  text-decoration: none;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(43, 111, 255, 0.08);
  border: 1px solid transparent;
  padding: 12px 20px;
  border-radius: 999px;
  transition: var(--transition);
  margin-top: auto;
}

body.aura-home .review-card .btn:hover {
  background: var(--aura-accent);
  color: #fff !important;
}

/* GOOGLE REVIEWS CTA */
body.aura-home .google-cta-block {
  text-align: center;
  padding: 40px;
  background: var(--aura-surface);
  border: 1px solid var(--aura-surface-border);
  box-shadow: var(--shadow-sm);
  border-radius: var(--aura-radius);
  margin-top: 60px;
}

body.aura-home .google-cta-block h3 {
  color: var(--aura-navy) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 24px;
  font-weight: 700;
  margin-top: 16px;
  margin-bottom: 8px;
}

body.aura-home .google-cta-block .muted {
  color: var(--aura-muted);
  font-size: 15px;
  margin-bottom: 24px;
}

body.aura-home .google-btn {
  background: #fff;
  color: #4285F4 !important;
  border: 1px solid rgba(66, 133, 244, 0.3) !important;
  box-shadow: 0 4px 12px rgba(66, 133, 244, 0.1);
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 999px;
  display: inline-block;
  text-decoration: none;
  transition: var(--transition);
}

body.aura-home .google-btn:hover {
  background: rgba(66, 133, 244, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(66, 133, 244, 0.15);
}

/* QUOTE FORM */
body.aura-home .quote-section {
  padding: var(--space-section) 0;
}

body.aura-home .form-card {
  background: var(--aura-surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 36px;
  border-radius: var(--aura-radius);
  color: var(--aura-text);
  border: 1px solid var(--aura-surface-border);
  box-shadow: var(--shadow-md);
  max-width: 800px;
  margin: 0 auto;
}

/* OVERRIDE GLOBALS PARA REDUCIR FORMULARIOS MASIVOS */
body.aura-home .form-control {
  height: 48px;
  padding: 0 16px;
  font-size: 15px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(148, 163, 184, .30);
  width: 100%;
  color: var(--aura-text);
  font-family: 'Inter', sans-serif;
}

body.aura-home textarea.form-control {
  height: 120px;
  padding-top: 12px;
}

body.aura-home .form-label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

body.aura-home .form-group {
  margin-bottom: 20px !important;
}

body.aura-home .form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  body.aura-home .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

body.aura-home .quote-title {
  color: var(--aura-navy) !important;
  text-align: center !important;
  font-size: 36px !important;
  margin-bottom: 8px;
}

body.aura-home .quote-subtitle {
  text-align: center;
  color: var(--aura-muted);
  margin-bottom: 32px;
  font-size: 15px;
}

/* CTA BOTTOM */
body.aura-home .cta-bottom-section {
  padding: 80px 0;
  text-align: center;
  background: var(--aura-navy);
  color: #fff;
}

body.aura-home .cta-bottom-section h2 {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 64px;
  margin-bottom: 24px;
  text-align: center !important;
}

body.aura-home .cta-bottom-section p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto;
}

body.aura-home .cta-actions {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
}

body.aura-home .cta-bottom-section .btn-primary {
  background: var(--aura-blue-accent);
  color: #fff !important;
  padding: 18px 44px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 18px;
}

body.aura-home .btn-icon svg {
  width: 24px;
  height: 24px;
}

body.aura-home .cta-bottom-section .btn-outline {
  border: 2px solid #fff;
  color: #fff !important;
  padding: 18px 44px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 18px;
}

/* FOOTER */
body.aura-home .site-footer {
  background: var(--aura-navy2) !important;
  padding: 60px 0 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  color: #fff !important;
}

body.aura-home .site-footer .brand-name,
body.aura-home .site-footer .brand-sub,
body.aura-home .site-footer .footer-desc,
body.aura-home .site-footer .footer-contact-list span {
  color: #fff !important;
}

body.aura-home .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

body.aura-home .site-footer h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #fff;
}

body.aura-home .site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

body.aura-home .site-footer ul li {
  margin-bottom: 12px;
}

body.aura-home .site-footer ul a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

body.aura-home .site-footer ul a:hover {
  color: #fff;
}

@media (max-width: 992px) {
  body.aura-home .aura-hero__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  body.aura-home .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* SUBPAGES & UTILITIES */
body.aura-home .page-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  padding: 120px 0 60px 0;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

body.aura-home .page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(246, 248, 251, 0.85);
  z-index: 1;
}

body.aura-home .page-hero .content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

body.aura-home .page-hero.health-hero {
  background: url('../health_insurance_illustration_1766956612155.png') no-repeat center right/cover;
}

body.aura-home .page-hero.careers-hero {
  background: url('../family_insurance_consultation_1766887514544.png') no-repeat center right/cover;
}

body.aura-home .careers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

body.aura-home .benefits-checklist {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  display: grid;
  gap: 24px;
}

body.aura-home .benefits-checklist li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

body.aura-home .benefits-checklist .icon-wrap {
  width: 24px;
  height: 24px;
  background: var(--aura-blue-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 4px;
}

body.aura-home .benefits-checklist strong {
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
}

body.aura-home .benefits-checklist p {
  font-size: 14px;
  opacity: 0.7;
  margin: 0;
}

body.aura-home .upload-zone {
  border: 2px dashed rgba(255, 255, 255, 0.3) !important;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: border-color 0.2s;
}

body.aura-home .upload-zone:hover {
  border-color: #fff !important;
}

body.aura-home .upload-zone input {
  display: none;
}

body.aura-home .upload-zone label {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #fff;
}

body.aura-home .upload-zone svg {
  width: 40px;
  height: 40px;
  color: var(--aura-blue-accent);
}

body.aura-home .faq-list {
  max-width: 800px;
  margin: 0 auto;
}

body.aura-home .faq-item {
  background: var(--aura-glass);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  margin-bottom: 16px;
  border: 1px solid var(--aura-glass-border);
  overflow: hidden;
  color: #fff;
}

body.aura-home .faq-item summary {
  padding: 20px 24px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

body.aura-home .faq-content {
  padding: 0 24px 20px;
  opacity: 0.8;
  font-size: 15px;
}

body.aura-home .step-num {
  width: 44px;
  height: 44px;
  background: var(--aura-blue-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 20px;
  font-size: 18px;
}

@media (max-width: 768px) {
  body.aura-home .careers-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  body.aura-home .aura-hero__title {
    font-size: 48px;
  }

  body.aura-home .aura-hero__cards {
    grid-template-columns: 1fr;
  }

  body.aura-home .aura-benefits {
    grid-template-columns: 1fr;
  }

  body.aura-home .reviews-wall {
    grid-template-columns: 1fr;
  }

  body.aura-home .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* --- BASE COMPONENT FIXES (Replaces old style.css logic) --- */
body.aura-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: 'Inter', sans-serif;
}

body.aura-home .btn-primary {
  background: linear-gradient(180deg, var(--aura-accent), var(--aura-accent-hover));
  color: #ffffff !important;
  box-shadow: 0 10px 20px rgba(43, 111, 255, 0.2);
}

body.aura-home .btn-primary:hover {
  transform: translateY(-2px);
  background: var(--aura-accent-hover);
}

body.aura-home .u-hidden {
  display: none !important;
  opacity: 0;
  position: absolute;
}

body.aura-home .btn-block {
  width: 100%;
}

/* MOBILE MENU FIX (Hide on desktop, style correctly) */
body.aura-home .mobile-menu {
  display: none;
  background: var(--aura-bg);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  flex-direction: column;
  padding: 10px 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid var(--aura-surface-border);
}

body.aura-home .site-header.open .mobile-menu {
  display: flex;
}

body.aura-home .mobile-menu a {
  color: var(--aura-navy);
  padding: 15px 30px;
  text-decoration: none;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  border-bottom: 1px solid var(--aura-surface-border);
}

body.aura-home .mobile-menu a:hover {
  background: rgba(0, 0, 0, 0.03);
}

@media (min-width: 992px) {
  body.aura-home .nav-toggle {
    display: none;
  }

  body.aura-home .mobile-menu {
    display: none !important;
  }
}

@media (max-width: 991px) {
  body.aura-home .nav-desktop {
    display: none;
  }

  body.aura-home .header-actions {
    display: none;
  }

  body.aura-home .nav-toggle {
    display: block;
    background: transparent;
    border: none;
    cursor: pointer;
  }

  body.aura-home .nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background: var(--aura-navy);
    transition: all 0.3s ease;
  }
}

/* --- PREMIUM MODAL SYSTEM --- */
.aura-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 25, 47, 0.85);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 1;
  padding: 20px;
}

.aura-modal-overlay.active {
  display: flex !important;
}

/* Modal and Careers Button */
.aura-btn-dark {
  background: #000;
  color: #fff !important;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.aura-btn-dark:hover {
  background: #222;
  transform: translateY(-2px);
}

.aura-btn-ghost {
  background: transparent;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.aura-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.aura-modal-content {
  background: var(--aura-glass-dark);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--aura-glass-border);
  border-radius: 32px;
  width: 100%;
  max-width: 500px;
  padding: 48px 40px;
  transform: translateY(30px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.6);
  color: #fff;
  position: relative;
  text-align: center;
}

.aura-modal-overlay.active .aura-modal-content {
  transform: translateY(0);
}
e 
.aura-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.aura-modal-title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 32px;
  font-weight: 700;
  margin: 0;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.6) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  width: 100%;
}

.aura-modal-close {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  position: absolute;
  top: 32px;
  right: 32px;
}

.aura-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.aura-modal-body {
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.95;
  margin-bottom: 40px;
}

.aura-modal-body p {
  margin-bottom: 16px;
}

.aura-modal-body strong {
  color: var(--aura-accent);
}

.aura-modal-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.aura-modal-footer .aura-btn-dark,
.aura-modal-footer .aura-btn-ghost {
  width: 100%;
  justify-content: center;
  height: 48px;
}
/* Aura Platinum Intelligent UI Refinements */
.glass-card-aura {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07) !important;
}

.status-pulse-active {
    width: 12px;
    height: 12px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.text-gradient-aura {
    background: linear-gradient(135deg, #003366 0%, #00529B 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-id-aura {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid rgba(0, 82, 155, 0.05) !important;
    position: relative;
    overflow: hidden;
}

.card-id-aura::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 150px;
    height: 150px;
    background: rgba(0, 82, 155, 0.03);
    border-radius: 50%;
}

.badge-soft-premium {
    padding: 6px 14px;
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    border-radius: 50px;
}

.stat-label-aura {
    font-size: 0.65rem;
    font-weight: 900;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.actions-aura .btn {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.actions-aura .btn:hover {
    transform: scale(1.05) translateY(-3px);
}

/* --- FORM ELEMENTS --- */
.aura-select {
  width: 100%;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 18px;
  transition: border-color 0.2s, background-color 0.2s;
}

.aura-select:focus {
  outline: none;
  border-color: var(--aura-blue-accent);
  background: rgba(255, 255, 255, 0.1);
}

.aura-select option {
  background: #0a192f;
  color: #fff;
}

/* ==========================================================================
   AURA PLATINUM ULTRA-LUXURY v11.0 (REINFORCED)
   ========================================================================== */
:root {
    --aura-platinum-bg: #f8f9fb;
    --aura-glass-white: rgba(255, 255, 255, 0.94);
    --aura-primary: #2b6fff;
    --aura-success: #10b981;
    --aura-text-main: #0f172a;
    --aura-text-secondary: #64748b;
    --aura-radius-xl: 32px;
    --aura-shadow-premium: 0 25px 50px -12px rgba(43, 111, 255, 0.1);
}

body.aura-platinum-light {
    background: var(--aura-platinum-bg) !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    -webkit-font-smoothing: antialiased;
}

.bento-grid-aura {
    display: grid !important;
    grid-template-columns: repeat(12, 1fr) !important;
    gap: 32px !important;
    max-width: 1400px;
    margin: 0 auto;
}

.glass-card-aura-light {
    background: var(--aura-glass-white) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
    border: 1px solid rgba(255, 255, 255, 0.7) !important;
    border-radius: var(--aura-radius-xl) !important;
    box-shadow: var(--aura-shadow-premium) !important;
    padding: 3rem !important;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) !important;
}

.glass-card-aura-light:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px -15px rgba(43, 111, 255, 0.15) !important;
    border-color: var(--aura-primary) !important;
}

.kpi-value-aura-light {
    font-size: 3.5rem !important;
    font-weight: 800 !important;
    color: var(--aura-text-main) !important;
    letter-spacing: -0.05em !important;
    line-height: 0.9 !important;
}

.stat-label-aura-light {
    font-size: 0.82rem !important;
    font-weight: 800 !important;
    color: var(--aura-text-secondary) !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
}

.bg-primary-aura-light { background: #eff4ff !important; color: #2b6fff !important; }
.bg-success-aura-light { background: #ecfdf5 !important; color: #10b981 !important; }

/* Mobile Adaptive Grid */
@media (max-width: 992px) {
    .bento-grid-aura { grid-template-columns: 1fr !important; }
    .bento-grid-aura > div { grid-column: span 1 !important; }
}

/* Scrollbar Custom v11.0 */
::-webkit-scrollbar { width: 8px; }

/* === AURA ENTERPRISE PLATINUM v10 === */
:root {
    --platinum-bg: #fdfdfd;
    --platinum-cobalt: #1e3a8a;
    --platinum-cobalt-light: #2563eb;
    --platinum-emerald: #10b981;
    --platinum-border: #e2e8f0;
    --platinum-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    --platinum-radius: 24px;
}

body.aura-platinum-enterprise {
    background-color: var(--platinum-bg) !important;
    font-family: 'Inter', sans-serif !important;
    color: #1e293b;
}

/* 💠 VIP CARDS PLATINUM */
.platinum-kpi-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

@media (max-width: 1400px) {
    .platinum-kpi-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}

.platinum-card {
    background: #ffffff;
    border: 1px solid var(--platinum-border);
    border-radius: var(--platinum-radius);
    padding: 28px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--platinum-shadow);
    position: relative;
    overflow: hidden;
    text-decoration: none !important;
    display: block;
}

.platinum-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--platinum-cobalt-light);
}

.platinum-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--card-accent, var(--platinum-cobalt-light));
}

.platinum-card-title {
    font-size: 0.75rem;
    font-weight: 800;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.platinum-card-value {
    font-size: 2.25rem;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.03em;
}

/* 🛡️ SITREP BANNER COBALT */
.sitrep-banner-platinum {
    background: linear-gradient(135deg, var(--platinum-cobalt) 0%, #1e40af 100%);
    border-radius: var(--platinum-radius);
    padding: 32px 40px;
    color: #ffffff;
    margin-bottom: 40px;
    border-left: 12px solid var(--platinum-emerald);
    box-shadow: 0 15px 30px -10px rgba(30, 58, 138, 0.3);
    position: relative;
    overflow: hidden;
}

.sitrep-label {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
    margin-bottom: 8px;
    display: block;
}

.sitrep-text {
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.6;
    max-width: 900px;
}

.sitrep-text b { font-weight: 900; color: #fbbf24; }

/* 📊 AUDIT TABLE PLATINUM */
.platinum-table-container {
    background: #ffffff;
    border: 1px solid var(--platinum-border);
    border-radius: var(--platinum-radius);
    overflow: hidden;
    box-shadow: var(--platinum-shadow);
}

.platinum-table thead th {
    background: #f8fafc;
    color: #475569;
    font-weight: 1000;
    font-size: 0.7rem;
    text-transform: uppercase;
    padding: 20px 24px;
    border-bottom: 2px solid #e2e8f0;
}

.platinum-table tbody td {
    padding: 20px 24px;
    font-weight: 700;
    color: #1e293b;
    border-bottom: 1px solid #f1f5f9;
}

.platinum-table tbody tr:hover {
    background-color: #f8fafc;
}

.platinum-status-badge {
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
}

.platinum-status-done { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.platinum-status-wait { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }

/* 🔍 FILTER BAR ENTERPRISE */
.platinum-filter-bar {
    background: #ffffff;
    border: 1px solid var(--platinum-border);
    border-radius: var(--platinum-radius);
    padding: 24px;
    margin-bottom: 32px;
    box-shadow: var(--platinum-shadow);
}

.platinum-filter-label {
    font-size: 0.7rem;
    font-weight: 800;
    color: #94a3b8;
    margin-bottom: 8px;
    display: block;
}

.platinum-filter-select {
    height: 48px;
    border-radius: 14px;
    border: 1.5px solid #e2e8f0;
    background: #fdfdfd;
    font-weight: 800;
    font-size: 0.85rem;
    transition: all 0.2s;
    width: 100%;
    padding: 0 16px;
    color: #1e293b;
}

.platinum-filter-select:focus {
    border-color: var(--platinum-cobalt-light);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    outline: none;
}
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(0, 0, 0, 0.1); border-radius: 20px;  }

/* === AURA EXECUTIVE DESIGN SYSTEM v4.0 === */

.client-header-executive {
    background: #fff;
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.avatar-box {
    width: 80px;
    height: 80px;
    border-radius: 22px;
    background: linear-gradient(135deg, #003366, #2b6fff);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 900;
    flex-shrink: 0;
}

.client-name {
    font-size: 1.85rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: #0f172a;
}

/* KPI Strip */
.kpi-strip {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 5px;
}

.kpi-box {
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    padding: 16px 20px;
    border-radius: 18px;
    min-width: 190px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.kpi-box:hover {
    background: #fff;
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
    border-color: rgba(37, 99, 235, 0.2);
}

.kpi-label {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #64748b;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.kpi-value {
    font-size: 1.35rem;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.02em;
}

/* Executive Navigation Pills */
.nav-pills-executive {
    display: inline-flex;
    background: #f1f5f9;
    padding: 6px;
    border-radius: 100px;
    gap: 4px;
}

.nav-pills-executive .nav-button,
.nav-pills-executive .nav-link {
    border: none !important;
    background: transparent;
    color: #64748b;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 10px 24px;
    border-radius: 100px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.nav-pills-executive .nav-link:hover {
    color: #0f172a;
    background: rgba(0,0,0,0.05);
}

.nav-pills-executive .nav-link.active {
    background: #fff;
    color: #2b6fff !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Bento Grid Layout 360 */
.profile-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

.col-side { grid-column: span 4; }
.col-main { grid-column: span 5; }
.col-info { grid-column: span 3; }

@media (max-width: 1200px) {
    .col-side, .col-main, .col-info { grid-column: span 12; }
}

/* Timeline Aura */
.timeline-aura {
    position: relative;
    padding-left: 20px;
}

.timeline-aura::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 2px;
    background: #f1f5f9;
}

.timeline-item {
    position: relative;
    padding-bottom: 24px;
    padding-left: 15px;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: -25px;
    top: 4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #cbd5e1;
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-item:hover::after {
    border-color: #2b6fff;
    background: #2b6fff;
    box-shadow: 0 0 0 4px rgba(43, 111, 255, 0.1);
}

/* Helpers & Utilities */
.fw-1000 { font-weight: 900; }
.ls-1 { letter-spacing: 0.05em; }
.ls-2 { letter-spacing: 0.1em; }
.extra-small { font-size: 0.75rem; }
.bg-danger-soft { background: rgba(239, 68, 68, 0.08); color: #ef4444; }
.bg-indigo-soft { background: rgba(99, 102, 241, 0.1); color: #6366f1; }
.bg-primary-soft { background: rgba(37, 99, 235, 0.08); color: #2563eb; }
.shadow-aura-sm { box-shadow: 0 4px 12px rgba(0,0,0,0.03); }
.shadow-inner { box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05); }

/* Animation Overrides */
.hover-translate-y { transition: transform 0.3s ease; }
.hover-translate-y:hover {
    transform: translateY(-5px);
}

/* === AURA PLATINUM UI UTILITIES v5.0 === */
.shadow-platinum { box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.05), 0 10px 15px -5px rgba(0, 0, 0, 0.02) !important; }
.shadow-platinum-lg { box-shadow: 0 35px 70px -15px rgba(0, 0, 0, 0.1) !important; }

.aura-badge-platinum {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 14px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
}

.bg-neutral-platinum {
    background: #f8fafc;
    border: 1px dashed #e2e8f0;
    border-radius: 20px;
}

.text-platinum-muted {
    color: #94a3b8;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.aura-platinum-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #f1f5f9;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.aura-platinum-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(37, 99, 235, 0.1);
}

/* Scrollbar Refinement */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }