﻿/* ═══════════════════════════════════════════
   SWISS UMEF MBA LANDING PAGE — LIGHT THEME
   Primary: #ab0e00 | Accent: gradient warm-red
═══════════════════════════════════════════ */

/* ─── ROOT TOKENS ─── */
:root {
  /* Light palette – neutral cool */
  --clr-bg: #ffffff;
  --clr-bg-alt: #f8f9fb;
  --clr-bg-alt2: #f1f4f8;
  --clr-surface: #ffffff;
  --clr-border: rgba(0, 0, 0, 0.09);
  --clr-border-mid: rgba(0, 0, 0, 0.08);

  /* Brand */
  --clr-primary: #b31400;
  --clr-primary-d: #8c1000;
  --clr-primary-l: #d41500;
  --clr-accent: #e52400;
  --clr-navy: #111729;
  --clr-gold: #c87f00;
  --clr-success: #059669;
  --clr-danger: #dc2626;

  /* Text – cool neutral, navy headings */
  --clr-text: #111729;
  --clr-text-muted: #4b5563;
  --clr-text-dim: #9ca3af;
  --clr-text-inv: #ffffff;

  /* Gradients – pure red, no orange/pink bleed */
  --grad-primary: linear-gradient(135deg, #8c1000 0%, #c41e00 100%);
  --grad-primary-v: linear-gradient(180deg, #8c1000 0%, #c41e00 100%);
  --grad-warm: linear-gradient(135deg, #c41e00 0%, #8c1000 100%);
  --grad-gold: linear-gradient(135deg, #c87f00 0%, #f59e0b 100%);
  --grad-hero: linear-gradient(150deg, #f8f9fb 0%, #ffffff 50%, #f1f4f8 100%);
  --grad-section: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
  --grad-text: linear-gradient(135deg, #8c1000 0%, #c41e00 100%);

  /* Typography */
  --font-body: 'Inter', system-ui, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  /* Spacing */
  --section-py: 96px;
  --container: 1360px;

  /* Effects */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.05);
  --shadow-red: 0 8px 32px rgba(180, 20, 0, 0.22);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── RESET & BASE ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

abbr {
  text-decoration: none;
  cursor: help;
}

/* ─── CONTAINER ─── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ─── TYPOGRAPHY UTILITIES ─── */
.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section label – navy academic pill */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  background: #111729;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

/* Section titles – academic weight with serif accent */
.section-title {
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
  color: #111729;
}

.section-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  color: var(--clr-primary);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: var(--shadow-red);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(171, 14, 0, 0.35);
  filter: brightness(1.08);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  background: rgba(171, 14, 0, 0.06);
  color: var(--clr-primary);
  border-color: rgba(171, 14, 0, 0.2);
}

.btn-ghost:hover {
  background: rgba(171, 14, 0, 0.1);
  border-color: var(--clr-primary);
}

.btn-outline {
  background: transparent;
  color: var(--clr-primary);
  border-color: var(--clr-primary);
}

.btn-outline:hover {
  background: rgba(171, 14, 0, 0.06);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   HEADER
═══════════════════════════════════════════ */
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

/* --- New Sticky Header (IDEAS_HEADER) --- */
.ideas_header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease;
  height: 72px;
  display: flex;
  align-items: center;
}

.ideas_header.hide {
  transform: translateY(-100%);
}

.ideas_header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.ideas_header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo img {
  height: 42px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: #111729;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-primary);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--clr-primary);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px;
  background: var(--grad-primary);
  color: #fff !important;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 4px 15px rgba(171, 14, 0, 0.2);
  transition: all 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(171, 14, 0, 0.35);
  filter: brightness(1.1);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 2001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #111729;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: #fff;
  z-index: 2002;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 32px;
  gap: 8px;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu .nav-link {
  font-size: 1.05rem;
  padding: 8px 0;
  width: 100%;
  text-align: center;
}

.mobile-menu .nav-cta {
  margin-top: 12px;
  text-align: center;
  padding: 12px 32px;
  width: auto;
  min-width: 180px;
}

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(171, 14, 0, 0.05);
  border: none;
  color: #ab0e00;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #ab0e00;
  color: #fff;
  transform: rotate(90deg);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 2001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

/* Floating Booking Icon */
.fixed-booking-fab {
  position: fixed;
  right: 24px;
  bottom: 100px;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.fab-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  color: var(--clr-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  border: 1px solid rgba(171, 14, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fab-button:hover {
  transform: scale(1.1) rotate(5deg);
  background: var(--clr-primary);
  color: #fff;
  box-shadow: 0 12px 40px rgba(171, 14, 0, 0.3);
}

.fab-label {
  background: #111729;
  color: #fff;
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.fixed-booking-fab:hover .fab-label {
  opacity: 1;
  transform: translateX(0);
}

.fab-button-mini {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  color: var(--clr-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 2px solid rgba(171, 14, 0, 0.15);
  transition: all 0.3s ease;
  padding: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.fab-button-mini:hover {
  background: var(--clr-primary);
  color: #fff;
  border-color: var(--clr-primary);
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(171, 14, 0, 0.25);
}

@media (max-width: 900px) {
  .header-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .fixed-booking-fab {
    right: 16px;
    bottom: 80px;
  }

  .fab-button {
    width: 52px;
    height: 52px;
  }
}

/* ═══════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--grad-hero);
  padding: 108px 0 80px;
  overflow: clip;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.hero-orb-1 {
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(171, 14, 0, 0.12) 0%, transparent 70%);
  top: -180px;
  right: -80px;
  animation: orb-drift 9s ease-in-out infinite alternate;
}

.hero-orb-2 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(255, 87, 64, 0.1) 0%, transparent 70%);
  bottom: -80px;
  left: 60px;
  animation: orb-drift 11s ease-in-out infinite alternate-reverse;
}

.hero-orb-3 {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(200, 127, 0, 0.08) 0%, transparent 70%);
  top: 50%;
  left: 45%;
  animation: orb-drift 13s ease-in-out infinite alternate;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(171, 14, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(171, 14, 0, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 0%, transparent 100%);
}

@keyframes orb-drift {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(24px, -24px) scale(1.06);
  }
}

/* 2-column layout */
.hero-layout {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* ─── Hero Visual Panel ─── */
.hero-visual {
  position: relative;
}

.hero-photo-main {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(171, 14, 0, 0.22), 0 8px 32px rgba(0, 0, 0, 0.12);
}

.hero-photo-main>img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: var(--radius-xl);
}

/* Floating stat badges */
.hero-float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(171, 14, 0, 0.15);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
  min-width: 160px;
  animation: float-gentle 4s ease-in-out infinite alternate;
}

.hero-float-1 {
  top: 20px;
  left: 16px;
  animation-delay: 0s;
}

.hero-float-2 {
  bottom: 90px;
  left: 16px;
  animation-delay: 1.3s;
}

.hero-float-3 {
  top: 46%;
  right: 16px;
  animation-delay: 0.7s;
}

@keyframes float-gentle {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-8px);
  }
}

.float-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(171, 14, 0, 0.12) 0%, rgba(255, 87, 64, 0.08) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--clr-primary);
}

.float-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--clr-primary);
  line-height: 1.1;
}

.float-label {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  font-weight: 500;
  line-height: 1.3;
}

/* Secondary stacked photo */
.hero-photo-secondary {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 180px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  border: 3px solid #fff;
}

.hero-photo-secondary img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
}

/* Responsive: collapse to single column */
@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-photo-main>img {
    height: 420px;
    object-position: center 20%;
  }

  .hero-float-1 {
    left: 12px;
    top: 12px;
  }

  .hero-float-2 {
    left: 12px;
    bottom: 12px;
  }

  .hero-float-3 {
    right: 12px;
    top: 48%;
  }

  .hero-photo-secondary {
    right: 12px;
    bottom: 12px;
  }
}

@media (max-width: 768px) {
  .hero-photo-main>img {
    height: 300px;
  }

  .hero-float-badge {
    min-width: 130px;
    padding: 8px 12px;
  }

  .float-icon {
    width: 32px;
    height: 32px;
  }

  .float-value {
    font-size: 0.95rem;
  }

  .hero-photo-secondary {
    width: 130px;
  }

  .hero-photo-secondary img {
    height: 96px;
  }
}


.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(171, 14, 0, 0.07);
  border: 1px solid rgba(171, 14, 0, 0.2);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--clr-primary);
  margin-bottom: 28px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-primary);
  box-shadow: 0 0 8px rgba(171, 14, 0, 0.6);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.65;
  }
}

.hero-headline {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--clr-text);
}

.hero-headline em {
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--clr-primary);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.12rem);
  color: var(--clr-text-muted);
  max-width: 780px;
  margin-bottom: 32px;
  line-height: 1.78;
}

.hero-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

/* Info badges – academic navy style */
.info-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #fff;
  border: 1.5px solid rgba(17, 23, 41, 0.15);
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  font-weight: 600;
  color: #111729;
  box-shadow: 0 1px 8px rgba(17, 23, 41, 0.07);
  transition: var(--transition);
}

.info-badge:hover {
  border-color: #111729;
  box-shadow: 0 4px 16px rgba(17, 23, 41, 0.12);
  transform: translateY(-1px);
}

.info-badge .icon {
  font-size: 1.1rem;
  color: var(--clr-primary);
}

/* Hero description blockquote – clean full-border style */
.hero-desc {
  font-size: 1rem;
  color: var(--clr-text-muted);
  margin-bottom: 36px;
  padding: 16px 20px;
  background: #f8f9fb;
  border: 1.5px solid rgba(17, 23, 41, 0.10);
  border-radius: var(--radius-sm);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 44px;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatars {
  display: flex;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  border: 2px solid #fff;
  margin-right: -10px;
  color: #fff;
  object-fit: cover;
}

.av1 {
  background: linear-gradient(135deg, #ab0e00, #d41500);
}

.av2 {
  background: linear-gradient(135deg, #e97314, #f59e0b);
}

.av3 {
  background: linear-gradient(135deg, #0d7ae1, #06b6d4);
}

.av4 {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.av5 {
  background: linear-gradient(135deg, #10b981, #34d399);
}

.av6 {
  background: linear-gradient(135deg, #f43f5e, #fb7185);
}

.hero-social-proof p {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  padding-left: 16px;
}

.hero-social-proof strong {
  color: var(--clr-primary);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.35;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(171, 14, 0, 0.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--clr-primary);
  border-radius: 2px;
  animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(12px);
    opacity: 0;
  }
}

/* ═══════════════════════════════════════════
   PAIN SECTION
═══════════════════════════════════════════ */
.pain-section {
  padding: var(--section-py) 0;
  background: var(--clr-bg-alt);
  position: relative;
}

.pain-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-primary);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}

.pain-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  background: #fff;
  border: 1.5px solid var(--clr-border-mid);
  border-radius: var(--radius-md);
  transition: var(--transition);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.pain-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.pain-card:hover {
  border-color: rgba(171, 14, 0, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(171, 14, 0, 0.1);
}

.pain-card:hover::after {
  transform: scaleX(1);
}

.pain-icon {
  font-size: 1.8rem;
}

.pain-card p {
  font-size: 0.92rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

.pain-card p strong {
  color: var(--clr-text);
}

/* Pain stat card – clean navy full-border academic card */
.pain-stat {
  margin-bottom: 48px;
  background: #fff;
  border: 1.5px solid rgba(17, 23, 41, 0.12);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  box-shadow: 0 4px 32px rgba(17, 23, 41, 0.06);
  position: relative;
  overflow: hidden;
}


.stat-inner {
  display: flex;
  align-items: center;
  gap: 36px;
}

.stat-number {
  font-size: 5rem;
  font-weight: 900;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  flex-shrink: 0;
}

.stat-question {
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: 8px;
}

.stat-source {
  font-size: 0.82rem;
  color: var(--clr-text-dim);
}

.pain-warning {
  text-align: center;
  margin-bottom: 48px;
}

.warning-lead {
  font-size: 1.08rem;
  color: var(--clr-text-muted);
  max-width: 680px;
  margin: 0 auto;
}

.warning-lead strong {
  color: var(--clr-text);
}

.trend-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

/* Trend items – clean card, no single-side border */
.trend-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: #f8f9fb;
  border: 1.5px solid rgba(17, 23, 41, 0.09);
  border-radius: var(--radius-md);
  box-shadow: none;
  transition: var(--transition);
}

.trend-item:hover {
  background: #fff;
  border-color: rgba(17, 23, 41, 0.2);
  box-shadow: 0 4px 20px rgba(17, 23, 41, 0.08);
  transform: translateY(-2px);
}

.trend-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.trend-item p {
  font-size: 0.92rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
}

.trend-item p strong {
  color: var(--clr-text);
}

/* Pain conclusion banner – navy academic */
.pain-conclusion {
  text-align: center;
  padding: 22px 32px;
  background: rgba(17, 23, 41, 0.04);
  border: 1.5px solid rgba(17, 23, 41, 0.14);
  border-radius: var(--radius-md);
  margin-bottom: 40px;
}

.pain-conclusion p {
  font-size: 1rem;
  color: #111729;
}

.pain-conclusion p strong {
  color: var(--clr-primary);
}

.section-cta {
  text-align: center;
  margin-top: 16px;
}

/* ═══════════════════════════════════════════
   SOLUTION SECTION
═══════════════════════════════════════════ */
.solution-section {
  padding: var(--section-py) 0;
  background: var(--clr-bg);
}

.solution-intro {
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  max-width: 920px;
  line-height: 1.8;
  margin-bottom: 52px;
}

.solution-intro strong {
  color: var(--clr-text);
}

.solution-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 52px;
}

.sol-stat {
  text-align: center;
  padding: 32px 20px;
  background: var(--clr-bg-alt);
  border: 1.5px solid var(--clr-border-mid);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.sol-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transition: var(--transition);
}

/* Sol-stat hover – navy top bar for academic cred */
.sol-stat:hover {
  border-color: rgba(17, 23, 41, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(17, 23, 41, 0.12);
}

.sol-stat:hover::before {
  transform: scaleX(1);
  background: #111729;
}

.sol-stat-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.sol-stat-value {
  font-size: 2.4rem;
  font-weight: 900;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 6px;
}

.sol-stat-label {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  font-weight: 500;
}

/* Solution tagline – navy academic frame */
.solution-tagline {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 40px;
  padding: 32px 40px;
  background: rgba(17, 23, 41, 0.03);
  border: 1.5px solid rgba(17, 23, 41, 0.12);
  border-top: 3px solid #111729;
  border-radius: var(--radius-lg);
}

.solution-tagline p {
  font-size: 1.12rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

.solution-tagline p strong {
  color: var(--clr-primary-d);
}

/* ═══════════════════════════════════════════
   PROOF SECTION
═══════════════════════════════════════════ */
.proof-section {
  padding: var(--section-py) 0;
  background: var(--clr-bg-alt);
}

.proof-section::before {
  content: '';
  display: none;
  /* use section bg instead */
}

/* QS Stars block */
.qs-stars-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 52px;
  padding: 40px 48px;
  background: linear-gradient(135deg, #fff9f8 0%, #fff 60%, #fff5f0 100%);
  border: 1.5px solid rgba(171, 14, 0, 0.18);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.qs-stars-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-primary);
}

/* .qs-stars-content inherits layout from parent grid */

.qs-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(171, 14, 0, 0.08);
  border: 1.5px solid rgba(171, 14, 0, 0.2);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--clr-primary);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.qs-title {
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
  color: var(--clr-text);
}

.qs-stars-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
}

.qs-star {
  font-size: 1.8rem;
  line-height: 1;
  display: inline-block;
  animation: star-pop 0.4s ease-out both;
}

.qs-star:nth-child(1) {
  animation-delay: 0.1s;
}

.qs-star:nth-child(2) {
  animation-delay: 0.2s;
}

.qs-star:nth-child(3) {
  animation-delay: 0.3s;
}

.qs-star:nth-child(4) {
  animation-delay: 0.4s;
}

.qs-star:nth-child(5) {
  animation-delay: 0.5s;
}

@keyframes star-pop {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  70% {
    transform: scale(1.3);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.qs-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--clr-primary);
  padding: 4px 12px;
  background: rgba(171, 14, 0, 0.08);
  border-radius: 6px;
}

.qs-desc {
  font-size: 0.93rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.qs-aspects {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* QS Aspect tags – navy academic pill */
.qs-aspect-tag {
  padding: 5px 14px;
  background: #111729;
  border: 1px solid transparent;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #ffffff;
  opacity: 0.85;
  transition: var(--transition);
}

.qs-aspect-tag:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.qs-cert-card {
  text-align: center;
}

.qs-cert-img {
  width: 100%;
  max-width: 300px;
  margin: 0 auto 12px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--clr-border-mid);
  transition: var(--transition);
}

.qs-cert-img:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.18);
}

.qs-cert-caption {
  font-size: 0.82rem;
  color: var(--clr-text-dim);
  font-style: italic;
}

/* Accreditation logos grid */
.accred-section {
  margin-bottom: 60px;
}

.accred-title {
  font-size: 1.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 10px;
  color: var(--clr-text);
}

.accred-subtitle {
  text-align: center;
  font-size: 0.95rem;
  color: var(--clr-primary);
  font-weight: 600;
  margin-bottom: 36px;
}

.accred-logos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.accred-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
  background: #fff;
  border: 1.5px solid var(--clr-border-mid);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  min-height: 100px;
}

.accred-logo-card:hover {
  border-color: rgba(171, 14, 0, 0.25);
  box-shadow: 0 8px 32px rgba(171, 14, 0, 0.1);
  transform: translateY(-4px);
  background: linear-gradient(135deg, #fff 0%, #fff9f8 100%);
}

.accred-logo-card img {
  max-height: 60px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(30%) opacity(0.85);
  transition: filter 0.3s ease;
}

.accred-logo-card:hover img {
  filter: grayscale(0%) opacity(1);
}

/* Degree samples */
.degree-samples-section {
  margin-bottom: 52px;
}

.degree-samples-title {
  font-size: 1.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 36px;
  color: var(--clr-text);
}

.degree-samples-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.degree-sample-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border: 1.5px solid var(--clr-border-mid);
  transition: var(--transition);
  cursor: pointer;
}

.degree-sample-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  border-color: rgba(171, 14, 0, 0.3);
}

.degree-sample-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.degree-sample-card:hover img {
  transform: scale(1.04);
}

.degree-sample-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Degree benefits */
.proof-sub-title {
  font-size: 1.45rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
}

.degree-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.deg-benefit {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border: 1.5px solid var(--clr-border-mid);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.deg-benefit:hover {
  border-color: rgba(171, 14, 0, 0.25);
  box-shadow: 0 6px 24px rgba(171, 14, 0, 0.08);
}

.deg-benefit-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.deg-benefit strong {
  display: block;
  font-size: 0.95rem;
  color: var(--clr-text);
  margin-bottom: 6px;
}

.deg-benefit p {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  line-height: 1.55;
}

/* OLD proof-hero and degree mockup hidden/unused */
.proof-hero {
  display: none;
}

/* ═══════════════════════════════════════════
   BENEFIT SECTION
═══════════════════════════════════════════ */
.benefit-section {
  padding: var(--section-py) 0;
  background: var(--clr-bg);
}

.competency-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-bottom: 72px;
}

.competency-card {
  padding: 40px 32px;
  background: #ffffff;
  border: 1px solid rgba(17, 23, 41, 0.08);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 20px rgba(17, 23, 41, 0.04);
  cursor: default;
  display: flex;
  flex-direction: column;
}

.competency-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.competency-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(171, 14, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.04);
  border-color: rgba(171, 14, 0, 0.15);
}

.competency-card:hover::before {
  opacity: 1;
}

.comp-number {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(171, 14, 0, 0.05);
  line-height: 1;
  transition: color 0.3s ease;
}

.competency-card:hover .comp-number {
  color: rgba(171, 14, 0, 0.08);
}

.comp-icon {
  width: 56px;
  height: 56px;
  background: rgba(171, 14, 0, 0.06);
  color: var(--clr-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.competency-card:hover .comp-icon {
  background: var(--clr-primary);
  color: #ffffff;
  transform: scale(1.1) rotate(4deg);
  box-shadow: 0 8px 20px rgba(171, 14, 0, 0.25);
}

.comp-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 2;
}

.comp-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #111729;
  margin-bottom: 16px;
  line-height: 1.3;
}

.comp-desc {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.7;
}

/* ─── TESTIMONIALS ─── */
.testimonials-section {
  margin-bottom: 72px;
  text-align: center;
}

.testimonials-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 36px;
}

.testimonials-slider {
  position: relative;
  max-width: 680px;
  margin: 0 auto 24px;
  min-height: 200px;
}

.testimonial-card {
  display: none;
  padding: 40px 44px;
  background: #fff;
  border: 1.5px solid var(--clr-border-mid);
  border-radius: var(--radius-lg);
  text-align: left;
  position: relative;
  box-shadow: var(--shadow-card);
  animation: fade-in-up 0.4s ease;
}

.testimonial-card.active {
  display: block;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testi-quote {
  font-size: 4rem;
  font-family: var(--font-serif);
  color: var(--clr-primary);
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.3;
}

.testi-text {
  font-size: 1rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  color: #fff;
}

.testi-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--clr-text);
}

.testi-author span {
  font-size: 0.82rem;
  color: var(--clr-text-dim);
}

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(171, 14, 0, 0.2);
  transition: var(--transition);
  padding: 0;
}

.dot.active {
  background: var(--clr-primary);
  width: 28px;
  border-radius: 5px;
}

/* ─── ECOSYSTEM ─── */
.ecosystem-section {
  margin-bottom: 72px;
}

.ecosystem-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  color: var(--clr-text);
}

.ecosystem-sub {
  text-align: center;
  color: var(--clr-text-muted);
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto 48px;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.eco-card {
  padding: 32px 24px 28px;
  background: #fff;
  border: 1.5px solid var(--clr-border-mid);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

/* Navy top accent bar on eco-card hover */
.eco-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #111729;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.eco-card:hover::before {
  transform: scaleX(1);
}

.eco-card:hover {
  border-color: rgba(171, 14, 0, 0.18);
  box-shadow: 0 12px 40px rgba(171, 14, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
  transform: translateY(-6px);
}

.eco-num {
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--clr-primary);
  margin-bottom: 16px;
  opacity: 0.7;
}

.eco-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(171, 14, 0, 0.08) 0%, rgba(255, 87, 64, 0.06) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--clr-primary);
}

.eco-card h4 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--clr-text);
}

.eco-card p {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
}

/* ─── PRICING ─── */
.pricing-section {
  margin-top: 48px;
}

.pricing-title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 48px;
  color: var(--clr-text);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1020px;
  margin: 0 auto 28px;
}

.pricing-card {
  padding: 40px 36px;
  background: #fff;
  border: 1.5px solid var(--clr-border-mid);
  border-radius: var(--radius-xl);
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

/* Featured = full red gradient */
.pricing-featured {
  background: var(--grad-primary);
  border: none;
  box-shadow: 0 20px 60px rgba(171, 14, 0, 0.35);
  color: #fff;
}

.pricing-featured:hover {
  box-shadow: 0 28px 70px rgba(171, 14, 0, 0.45);
}

.pricing-featured .price-name,
.pricing-featured .price-desc,
.pricing-featured .price-features li {
  color: rgba(255, 255, 255, 0.95);
}

.pricing-featured .price-name {
  color: #fff;
}

.pricing-featured .check {
  color: #ffd5d0;
}

.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: var(--clr-primary);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 6px 20px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.featured-badge svg {
  vertical-align: -2px;
  color: var(--clr-gold);
}

.price-header {
  margin-bottom: 28px;
}

.price-name {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--clr-text);
  margin-bottom: 8px;
}

.price-desc {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
}

.price-features {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
}

.check {
  color: var(--clr-success);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.installment-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  padding: 16px 28px;
  background: #fffbee;
  border: 1.5px solid rgba(200, 127, 0, 0.25);
  border-radius: var(--radius-md);
  max-width: 540px;
  margin: 0 auto;
}

.installment-note strong {
  color: var(--clr-gold);
}

/* ═══════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════ */
.cta-section {
  padding: var(--section-py) 0;
  background: linear-gradient(160deg, #fff5f4 0%, #fff 50%, #fdf0ee 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-primary);
}

.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.cta-orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(171, 14, 0, 0.07);
  top: -200px;
  right: -100px;
}

.cta-orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(255, 87, 64, 0.06);
  bottom: -200px;
  left: -100px;
}

.cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.gmac-quote {
  padding: 32px;
  background: #fff;
  border: 1px solid rgba(171, 14, 0, 0.1);
  border-radius: 20px;
  margin-bottom: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
  position: relative;
  transition: transform 0.3s ease;
}

.gmac-quote:hover {
  transform: translateY(-5px);
}

.quote-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.quote-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #ab0e00;
  background: rgba(171, 14, 0, 0.05);
  padding: 4px 12px;
  border-radius: 99px;
  text-transform: uppercase;
}

.quote-icon {
  color: rgba(171, 14, 0, 0.15);
}

.quote-body {
  font-size: 1.05rem;
  color: #374151;
  line-height: 1.75;
  margin-bottom: 20px;
}

.quote-highlight {
  font-weight: 700;
  color: #ab0e00;
  background: linear-gradient(120deg, rgba(171, 14, 0, 0.08) 0%, rgba(171, 14, 0, 0) 100%);
  padding: 0 4px;
}

.quote-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 16px;
}

.quote-source {
  font-size: 0.8rem;
  color: #9ca3af;
  font-style: italic;
}

.cta-headline {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin-bottom: 28px;
  color: #111827;
  /* Removed text-transform: uppercase for a more elegant look */
}

.cta-gradient {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.underline-highlight {
  position: relative;
  display: inline-block;
}

.underline-highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 6px;
  background: rgba(171, 14, 0, 0.08);
  z-index: -1;
  border-radius: 2px;
}

.cta-checklist {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cta-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.5;
}

.cta-check-v2 {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ab0e00;
  margin-top: 2px;
}

/* Form — matches modal popup style */
.cta-form-wrapper {
  background: #ffffff;
  border-radius: 32px;
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.form-header {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 32px 40px 20px;
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
  border-radius: 32px 32px 0 0;
}

.form-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
  margin: 0 auto 16px;
  display: none;
  /* hide logo in new layout – badge replaces it */
}

.form-header-badge {
  display: inline-block;
  padding: 4px 10px;
  background: #ab0e00;
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  border-radius: 100px;
  margin-bottom: 6px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(171, 14, 0, 0.2);
}

.form-header h3 {
  font-size: 1.5rem;
  font-weight: 850;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 2px;
}

.form-header p {
  font-size: 0.88rem;
  color: #64748b;
  max-width: 380px;
  margin: 0 auto;
  line-height: 1.4;
}

.cta-form {
  padding: 20px 32px 24px;
  display: grid;
  gap: 10px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--clr-text-muted);
}

.form-group abbr {
  color: var(--clr-danger);
  margin-left: 2px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: var(--clr-bg-alt);
  border: 1.5px solid var(--clr-border-mid);
  border-radius: var(--radius-sm);
  color: var(--clr-text);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' viewBox='0 0 12 8'%3E%3Cpath stroke='%23666' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-group input::placeholder {
  color: #bbb;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--clr-primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(171, 14, 0, 0.1);
}

.form-group input.error {
  border-color: var(--clr-danger);
}

.form-error {
  font-size: 0.78rem;
  color: var(--clr-danger);
  display: block;
  min-height: 16px;
}

.form-privacy {
  text-align: center;
  font-size: 0.78rem;
  color: var(--clr-text-dim);
  line-height: 1.5;
  margin-top: 4px;
}

.form-success {
  text-align: center;
  padding: 40px 24px;
}

.success-icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
}

.form-success h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.form-success p {
  font-size: 0.92rem;
  color: var(--clr-text-muted);
  margin-bottom: 8px;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer {
  background: #1a0500;
  padding: 40px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 32px;
}

.footer-brand img {
  height: 28px;
  width: auto;
  margin-bottom: 8px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.footer-links a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  transition: var(--transition);
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer-copy p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
  text-align: right;
}

/* ─── FLOATING CTA ─── */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  pointer-events: none;
}

.floating-cta.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-btn {
  box-shadow: var(--shadow-red), 0 4px 16px rgba(0, 0, 0, 0.15) !important;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .solution-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .qs-stars-block {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .degree-benefits {
    grid-template-columns: 1fr;
  }

  .accred-logos-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .degree-samples-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    align-items: center;
  }

  .footer-copy p {
    text-align: center;
  }
}

@media (max-width: 768px) {
  :root {
    --section-py: 64px;
  }

  .header-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 88px 0 60px;
    min-height: auto;
  }

  .hero-headline {
    font-size: 2rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    justify-content: center;
  }

  .stat-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .stat-number {
    font-size: 3.5rem;
  }

  .pain-stat {
    padding: 28px 24px;
  }

  .solution-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .sol-stat {
    padding: 20px 12px;
  }

  .sol-stat-value {
    font-size: 1.8rem;
  }

  .competency-grid {
    grid-template-columns: 1fr;
  }

  .ecosystem-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .accred-logos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .degree-samples-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 28px 24px;
  }

  .form-header {
    padding: 24px 24px 16px;
  }

  .cta-form {
    padding: 16px 24px 20px;
  }



  .floating-cta {
    bottom: 16px;
    right: 16px;
  }

  .qs-stars-block {
    padding: 28px 24px;
  }
}

@media (max-width: 480px) {
  .hero-badges-row {
    gap: 8px;
  }

  .info-badge {
    font-size: 0.78rem;
    padding: 6px 12px;
  }

  .pain-grid {
    grid-template-columns: 1fr;
  }

  .trend-grid {
    grid-template-columns: 1fr;
  }

  .btn-lg {
    padding: 15px 24px;
    font-size: 0.95rem;
  }

  .accred-logos-grid {
    grid-template-columns: 1fr 1fr;
  }

  .degree-samples-grid {
    grid-template-columns: 1fr;
  }

  .qs-stars-row .qs-star {
    font-size: 1.4rem;
  }

  .hero-social-proof {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .avatars {
    padding-left: 10px;
    /* Compensate for negative margin-right on avatars */
  }

  .hero-social-proof p {
    padding-left: 0;
    line-height: 1.5;
    font-size: 0.82rem;
    /* padding: 10px 0; */
  }

  /* Title sizing requested: standard 1.5rem; dual: black 1.3rem / red 1.5rem */
  .section-title {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 24px;
  }

  .section-title:has(.gradient-text),
  .section-title:has(em) {
    font-size: 1rem;
  }

  .section-title .gradient-text,
  .section-title em {
    font-size: 1.3rem;
  }

  .cta-headline {
    font-size: 1.3rem !important;
    line-height: 1.3;
  }

  .cta-headline .cta-gradient {
    font-size: 1.5rem !important;
  }

  /* Enrollment & CTA mobile centering */
  .enroll-left {
    text-align: center;
  }

  .enroll-left .section-label {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .enroll-timeline {
    align-items: center;
    text-align: left;
  }

  .enroll-step {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  #enroll-cta {
    margin: 0 auto;
    width: 100%;
    justify-content: center;
  }

  .cta-left {
    text-align: center !important;
    padding: 0 20px !important;
  }

  .gmac-quote {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }

  .cta-checklist {
    align-items: center;
    max-width: 340px;
    margin: 0 auto;
    text-align: left;
  }

  /* Accreditation section in card centering */
  .proof-card-accred {
    text-align: center !important;
    padding: 32px 20px !important;
  }

  .accred-feature-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .accred-commitment {
    text-align: center;
    border-left: none;
    border-top: 3px solid #ab0e00;
    border-radius: 16px;
  }

  .accred-feature-list {
    max-width: 320px;
    margin: 32px auto !important;
  }

  .accred-feature-list li {
    justify-content: flex-start;
    text-align: left;
  }

  .combined-cta-wrap {
    justify-content: center !important;
    padding: 0 20px 40px !important;
  }

  .combined-cta-wrap .btn {
    width: max-content !important;
    min-width: unset !important;
  }
}

/* ═══════════════════════════════════════════
   AUDIENCE SECTION – WHO IS THIS FOR?
═══════════════════════════════════════════ */
.audience-section {
  padding: var(--section-py) 0;
  background: var(--clr-bg);
}

/* The dark card */
.audience-card {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.10), 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.audience-col {
  padding: 48px 48px 40px;
}

.aud-divider {
  width: 1px;
  background: #e5e7eb;
  margin: 32px 0;
}

/* Column header label */
.aud-col-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 28px;
}

.aud-col-accent {
  width: 4px;
  height: 16px;
  background: #c41e00;
  border-radius: 2px;
  flex-shrink: 0;
}

/* ─── Horizontal bars (industries) ─── */
.aud-bars {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.aud-bar-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.aud-bar-info {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.aud-bar-name {
  font-size: 0.88rem;
  color: #111827;
  font-weight: 500;
}

.aud-bar-pct {
  font-size: 0.82rem;
  color: #6b7280;
  font-weight: 600;
}

.aud-bar-track {
  height: 8px;
  background: #f3f4f6;
  border-radius: 100px;
  overflow: hidden;
}

.aud-bar-fill {
  height: 100%;
  width: 0;
  border-radius: 100px;
  background: #c41e00;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animate when in view */
.audience-card.in-view .aud-bar-fill {
  width: var(--w);
}

/* ─── Vertical bars (age) ─── */
.aud-age-chart {
  position: relative;
}

.aud-age-peak {
  font-size: 1.6rem;
  font-weight: 900;
  color: #c41e00;
  margin-bottom: 8px;
  line-height: 1;
}

.aud-vbars {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  height: 160px;
  margin-bottom: 12px;
}

.aud-vbar-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  height: 100%;
  justify-content: flex-end;
}

.aud-vbar-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
}

.aud-vbar {
  width: 100%;
  height: 0;
  border-radius: 6px 6px 0 0;
  background: #e5e7eb;
  transition: height 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animate to target height */
.audience-card.in-view .aud-vbar {
  height: var(--h);
}

/* Active column (31-40) = red */
.aud-vbar-active .aud-vbar {
  background: #c41e00;
}

.aud-vbar-active .aud-vbar-label {
  color: #c41e00;
  font-weight: 700;
}

.aud-vbar-label {
  font-size: 0.75rem;
  color: #9ca3af;
  white-space: nowrap;
  text-align: center;
}

.aud-note {
  font-size: 0.78rem;
  color: #9ca3af;
  line-height: 1.5;
  margin-top: 12px;
  font-style: italic;
}

/* Responsive */
@media (max-width: 1024px) {
  .audience-card {
    grid-template-columns: 1fr;
  }

  .aud-divider {
    width: auto;
    height: 1px;
    margin: 0 40px;
  }

  .audience-col {
    padding: 40px;
  }
}

@media (max-width: 480px) {
  .audience-col {
    padding: 28px 24px;
  }

  .aud-vbars {
    height: 120px;
  }
}

@media (prefers-reduced-motion: reduce) {


  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ═══════════════════════════════════════════
   GALLERY SECTION
═══════════════════════════════════════════ */
.gallery-section {
  padding: var(--section-py) 0;
  background: var(--clr-bg-alt);
}

.gallery-subtitle {
  text-align: left;
  color: #475569;
  font-size: 1.12rem;
  max-width: 680px;
  margin: -10px 0 48px;
  line-height: 1.75;
  font-weight: 450;
  border-left: 3px solid #ab0e00;
  padding-left: 24px;
}

.gallery-subtitle em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  color: #1e293b;
}

.gallery-subtitle strong {
  color: #ab0e00;
  font-weight: 800;
}

/* Mosaic: 1 tall item left, 2×2 grid right */
.gallery-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 12px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.gallery-item--large {
  grid-column: 1;
  grid-row: 1 / 3;
}

/* Items 2 & 3 fill top-right row, items 4 & 5 fill bottom-right row */
.gallery-item:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.gallery-item:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}

.gallery-item:nth-child(4) {
  grid-column: 2;
  grid-row: 2;
}

.gallery-item:nth-child(5) {
  grid-column: 3;
  grid-row: 2;
}

.gallery-item a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.gallery-item a:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(171, 14, 0, 0.55) 0%, rgba(0, 0, 0, 0.15) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: white;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.gallery-item a:hover .gallery-overlay {
  opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 220px;
  }

  .gallery-item--large {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .gallery-item:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }

  .gallery-item:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }

  .gallery-item:nth-child(4) {
    grid-column: 1;
    grid-row: 3;
  }

  .gallery-item:nth-child(5) {
    grid-column: 2;
    grid-row: 3;
  }
}

@media (max-width: 480px) {
  .gallery-mosaic {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 10px;
    border-radius: var(--radius-lg);
    padding-bottom: 12px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    grid-template-columns: unset;
    grid-template-rows: unset;
  }

  .gallery-mosaic::-webkit-scrollbar {
    display: none;
  }

  .gallery-item,
  .gallery-item--large {
    flex: 0 0 80vw;
    max-width: 80vw;
    height: 260px;
    grid-column: unset;
    grid-row: unset;
    border-radius: 12px;
    overflow: hidden;
    scroll-snap-align: start;
  }

  .gallery-item--large {
    flex: 0 0 85vw;
    max-width: 85vw;
  }

  .gallery-subtitle {
    font-size: 0.95rem;
  }
}

/* ═══════════════════════════════════════════
   CURRICULUM SECTION — premium academic
═══════════════════════════════════════════ */
.curriculum-section {
  padding: var(--section-py) 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.curriculum-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 10%, rgba(17, 23, 41, 0.035) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 80% 90%, rgba(171, 14, 0, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 44px 0 36px;
}

.curri-pillar {
  background: #fff;
  border: 1.5px solid rgba(17, 23, 41, 0.1);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(17, 23, 41, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.curri-pillar:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(17, 23, 41, 0.14), 0 4px 12px rgba(0, 0, 0, 0.06);
  border-color: rgba(17, 23, 41, 0.25);
}

/* Each pillar gets a unique gradient accent strip at top */
.curri-pillar:nth-child(1) .curri-pillar-header {
  background: linear-gradient(135deg, #111729 0%, #1e2d4a 100%);
}

.curri-pillar:nth-child(2) .curri-pillar-header {
  background: linear-gradient(135deg, #1a2440 0%, #0f3460 100%);
}

.curri-pillar:nth-child(3) .curri-pillar-header {
  background: linear-gradient(135deg, #1c1f2e 0%, #2d1b20 100%);
}

.curri-pillar:nth-child(4) .curri-pillar-header {
  background: linear-gradient(135deg, #ab0e00 0%, #8b0a00 100%);
}

.curri-pillar-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.curri-pillar-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transform: translate(30%, 30%);
}

.curri-pillar-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.75rem;
  font-weight: 700;
  opacity: 0.6;
  line-height: 1;
  min-width: 28px;
}

.curri-pillar-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.35;
}

.curri-subjects {
  list-style: none;
  padding: 18px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.curri-subjects li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: #2a2e3a;
  line-height: 1.45;
  transition: color 0.2s;
}

.curri-pillar:hover .curri-subjects li {
  color: var(--clr-text);
}

.curri-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clr-primary);
  flex-shrink: 0;
  margin-top: 5px;
  transition: transform 0.2s;
}

.curri-pillar:hover .curri-dot {
  transform: scale(1.4);
}

/* Thesis block – dark premium card */
.curri-thesis {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 20px;
  padding: 28px 32px;
  background: linear-gradient(135deg, #111729 0%, #1a2240 100%);
  border-radius: 18px;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
}

.curri-thesis::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.curri-thesis::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 40%;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(171, 14, 0, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.curri-thesis-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-radius: 12px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.curri-thesis strong {
  display: block;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 6px;
}

.curri-thesis p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  margin: 0;
}

/* LMS note */
.curri-lms-note {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  background: rgba(17, 23, 41, 0.04);
  border: 1px solid rgba(17, 23, 41, 0.1);
  border-radius: 10px;
  font-size: 0.875rem;
  color: var(--clr-text-muted);
}

.curri-lms-note svg {
  color: #111729;
  flex-shrink: 0;
}

.curri-lms-note strong {
  color: #111729;
}

/* ═══════════════════════════════════════════
   ENROLLMENT + APPLICATION SECTION — dark accent panel
═══════════════════════════════════════════ */
.enroll-section {
  padding: var(--section-py) 0;
  background: var(--clr-bg-alt);
  position: relative;
}

.enroll-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

/* LEFT – Timeline */
.enroll-left {
  position: relative;
}

.enroll-left .section-title {
  margin-bottom: 12px;
}

.enroll-urgency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(171, 14, 0, 0.08);
  border: 1px solid rgba(171, 14, 0, 0.2);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--clr-primary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.enroll-timeline {
  display: flex;
  flex-direction: column;
  margin: 32px 0 40px;
  position: relative;
  padding-left: 36px;
}

.enroll-timeline::before {
  content: '';
  position: absolute;
  left: 35px;
  top: 14px;
  bottom: 14px;
  width: 2px;
  background: linear-gradient(to bottom, #111729 0%, rgba(171, 14, 0, 0.6) 50%, rgba(17, 23, 41, 0.15) 100%);
}

.enroll-step {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding-bottom: 32px;
  position: relative;
}

.enroll-step:last-child {
  padding-bottom: 0;
}

.enroll-step-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2.5px solid #dde1ea;
  background: #fff;
  flex-shrink: 0;
  margin-left: -11px;
  margin-top: 3px;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

.enroll-step--done .enroll-step-dot {
  background: #111729;
  border-color: #111729;
}

.enroll-step--done .enroll-step-dot::after {
  content: '';
  position: absolute;
  inset: 4px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
}

.enroll-step--active .enroll-step-dot {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 5px rgba(171, 14, 0, 0.15), 0 0 0 10px rgba(171, 14, 0, 0.06);
  animation: pulse-enroll 2.5s ease-in-out infinite;
}

@keyframes pulse-enroll {

  0%,
  100% {
    box-shadow: 0 0 0 5px rgba(171, 14, 0, 0.15), 0 0 0 10px rgba(171, 14, 0, 0.06);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(171, 14, 0, 0.1), 0 0 0 16px rgba(171, 14, 0, 0.03);
  }
}

.enroll-step-date {
  font-size: 1.15rem;
  font-weight: 800;
  color: #111729;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.enroll-step--done .enroll-step-date {
  color: #aab0be;
  font-size: 1rem;
}

.enroll-step-label {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  margin-top: 4px;
  line-height: 1.4;
}

.enroll-step--active .enroll-step-label {
  color: var(--clr-text);
}

.enroll-step--active .enroll-step-date {
  color: var(--clr-primary);
}

/* RIGHT – Application steps */
.enroll-right {
  background: #fff;
  border: 1.5px solid rgba(17, 23, 41, 0.09);
  border-radius: 24px;
  padding: 36px 36px 28px;
  box-shadow: 0 8px 40px rgba(17, 23, 41, 0.07), 0 2px 8px rgba(0, 0, 0, 0.04);
}

.apply-title {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 800;
  color: #111729;
  line-height: 1.25;
  margin-bottom: 20px;
}

.apply-req {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(17, 23, 41, 0.05);
  border: 1.5px solid rgba(17, 23, 41, 0.12);
  border-radius: 10px;
  font-size: 0.875rem;
  color: var(--clr-text);
  margin-bottom: 28px;
  line-height: 1.55;
}

.apply-req svg {
  color: var(--clr-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.apply-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.apply-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 16px 14px;
  border-radius: 12px;
  transition: background 0.2s;
}

.apply-step:hover {
  background: rgba(17, 23, 41, 0.03);
}

.apply-step-num {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #fff;
  background: linear-gradient(135deg, #111729, #1e2d4a);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(17, 23, 41, 0.25);
}

.apply-step strong {
  display: block;
  font-size: 0.9rem;
  color: #111729;
  margin-bottom: 3px;
}

.apply-step p {
  font-size: 0.84rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ═══════════════════════════════════════════
   SWITZERLAND TRIP SECTION — immersive hero-style
═══════════════════════════════════════════ */
.trip-section {
  padding: var(--section-py) 0;
  background: #fff;
  position: relative;
}

.trip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.trip-content .section-label {
  margin-bottom: 14px;
}

.trip-content .section-title {
  margin-bottom: 20px;
}

.trip-desc {
  font-size: 1rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.trip-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 36px;
}

.trip-highlights li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.93rem;
  color: var(--clr-text);
  line-height: 1.5;
  padding: 13px 16px;
  border-radius: 10px;
  transition: background 0.2s, transform 0.2s;
  cursor: default;
}

.trip-highlights li:hover {
  background: rgba(17, 23, 41, 0.04);
  transform: translateX(4px);
}

.trip-highlights svg {
  color: var(--clr-primary);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

/* Photo panel */
.trip-photo {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(17, 23, 41, 0.18), 0 8px 24px rgba(0, 0, 0, 0.1);
}

.trip-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 23, 41, 0.55) 0%, transparent 45%);
  pointer-events: none;
}

.trip-photo img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.trip-photo:hover img {
  transform: scale(1.04);
}

.trip-photo-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  background: rgba(17, 23, 41, 0.82);
  color: #fff;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  z-index: 1;
}

/* Trip stats row – small info badges above the photo */
.trip-stats {
  position: absolute;
  top: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 1;
}

.trip-stat-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #111729;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.trip-stat-pill svg {
  color: var(--clr-primary);
}

/* ─── Responsive ─── */
@media (max-width: 1100px) {
  .curriculum-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .enroll-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .enroll-right {
    padding: 28px 24px;
  }

  .trip-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .trip-photo {
    order: -1;
  }

  .trip-photo img {
    height: 320px;
  }
}

@media (max-width: 640px) {
  .curriculum-grid {
    grid-template-columns: 1fr;
  }

  .curri-thesis {
    grid-template-columns: 1fr;
  }

  .curri-thesis-icon {
    width: 44px;
    height: 44px;
  }
}

/* ═══════════════════════════════════════════
   3D FLIP CARD — DEGREE CERTIFICATE
   (matches the existing degree card design in proof section)
═══════════════════════════════════════════ */

.degree-samples-section {
  text-align: center;
  margin-bottom: 0;
}

.degree-flip-hint {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  margin-bottom: 32px;
  padding: 6px 16px;
  background: rgba(17, 23, 41, 0.04);
  border: 1px solid rgba(17, 23, 41, 0.09);
  border-radius: 100px;
  letter-spacing: 0.01em;
}

/* ��������������������������������������������������������������������������

/* 
   DEGREE SAMPLES showcase
   Clean 3D flip card
    */
.degree-samples-section {
  padding: 60px 0;
  text-align: center;
}

.degree-samples-title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  color: var(--clr-navy);
  margin-bottom: 12px;
}

.degree-flip-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  margin-bottom: 40px;
}

.flip-card-wrap {
  perspective: 1000px;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.flip-card {
  position: relative;
  width: 100%;
  height: 420px;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.flip-card-wrap:hover .flip-card {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.flip-card-back {
  transform: rotateY(180deg);
}

.flip-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}

.flip-card-overlay,
.flip-card-back-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.flip-card-label {
  background: var(--clr-primary);
  color: #fff;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.flip-back-badge {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

/* Degree Benefits Grid */
.degree-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.deg-benefit {
  background: var(--clr-bg-alt);
  padding: 30px;
  border-radius: 16px;
  display: flex;
  gap: 20px;
  transition: var(--transition);
  text-align: left;
}

.deg-benefit:hover {
  background: #fff;
  box-shadow: var(--shadow-card);
  transform: translateY(-5px);
}

.deg-benefit-icon {
  color: var(--clr-primary);
  flex-shrink: 0;
}

.deg-benefit strong {
  display: block;
  font-size: 1.1rem;
  color: var(--clr-navy);
  margin-bottom: 6px;
}

.deg-benefit p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .flip-card {
    height: 320px;
  }

  .degree-samples-title {
    font-size: 1.75rem;
  }
}


/* ═══════════════════════════════════════════
   ACCREDITATION MODAL & INTERACTIVE LOGOS
   Premium UI with Glassmorphism
═══════════════════════════════════════════ */

.accred-trigger {
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.3s ease !important;
}

.accred-trigger:hover {
  transform: scale(1.15) translateY(-5px);
  filter: grayscale(0) !important;
}

/* Modal Shell */
.accred-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 20px;
}

.accred-modal.open {
  visibility: visible;
  opacity: 1;
}

.accred-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.accred-modal-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 650px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: scale(0.9) translateY(20px);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.accred-modal.open .accred-modal-container {
  transform: scale(1) translateY(0);
}

.accred-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(17, 23, 41, 0.05);
  border: none;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
  color: #111729;
}

.accred-modal-close:hover {
  background: #ab0e00;
  color: #fff;
  transform: rotate(90deg);
}

.accred-modal-content {
  padding: 0;
}

.accred-modal-body {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 500px;
}

@media (max-width: 900px) {
  .accred-modal-body {
    grid-template-columns: 1fr;
    max-height: 90vh;
    overflow-y: auto;
  }
}

/* Info Column */
.accred-modal-info {
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.accred-modal-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #ab0e00;
  margin-bottom: 20px;
  padding: 6px 16px;
  background: rgba(171, 14, 0, 0.08);
  border-radius: 100px;
  width: fit-content;
}

.accred-modal-title {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.1;
  color: #111729;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.accred-modal-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #475569;
}

/* Visual Column */
.accred-modal-visual {
  background: #f8fafc;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.accred-cert-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: #fff;
  padding: 20px;
  transition: transform 0.5s ease;
}

.accred-cert-wrap:hover {
  transform: scale(1.02);
}

.accred-cert-wrap img {
  max-width: 100%;
  max-height: 450px;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.accred-cert-wrap img[src=""] {
  display: none;
}

.accred-modal.no-image .accred-modal-body,
.accred-modal-body {
  grid-template-columns: 1fr;
}

.accred-modal-visual {
  display: none !important;
}

.accred-modal.no-image .accred-modal-info {
  max-width: 800px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════
   ACCREDITATION FEATURE BLOCK
   Fanned certificates + List
═══════════════════════════════════════════ */
.accred-feature-section {
  padding: 80px 0;
  background: #fff;
  border-top: 1px solid #f1f5f9;
}

.accred-feature-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 1024px) {
  .accred-feature-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
}

.accred-feature-list {
  list-style: none;
  padding: 0;
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accred-feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1e293b;
  text-align: left;
}

@media (max-width: 1024px) {
  .accred-feature-list li {
    justify-content: center;
  }
}

.accred-feature-list svg {
  color: #10b981;
  flex-shrink: 0;
}

.accred-commitment {
  padding: 24px;
  background: rgba(171, 14, 0, 0.05);
  border-left: 4px solid #ab0e00;
  border-radius: 0 16px 16px 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
  text-align: left;
}

.accred-commitment strong {
  color: #ab0e00;
  display: block;
  margin-bottom: 4px;
}

/* ═══════════════════════════════════════════
   ACCREDITATION STACK (Swipe/Rotate Effect)
═══════════════════════════════════════════ */
.accred-fan-wrap {
  position: relative;
  height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.accred-stack {
  position: relative;
  width: 380px;
  height: 500px;
  perspective: 1500px;
  cursor: pointer;
}

.accred-stack-card {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  padding: 16px;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  border: 1px solid #e2e8f0;
  transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accred-stack-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

/* Stack Positions - More Fanned Out */
.accred-stack-card.pos-1 {
  /* Top */
  z-index: 5;
  transform: translateZ(0) rotate(0);
  opacity: 1;
}

.accred-stack-card.pos-2 {
  /* Middle */
  z-index: 3;
  transform: translateZ(-80px) translateY(35px) rotate(8deg) translateX(15px);
  opacity: 0.9;
}

.accred-stack-card.pos-3 {
  /* Back */
  z-index: 1;
  transform: translateZ(-160px) translateY(70px) rotate(16deg) translateX(30px);
  opacity: 0.7;
}

/* Exit/Flip Animation */

.accred-stack-controls {
  margin-top: 40px;
  display: flex;
  gap: 20px;
}

.accred-step-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #1e293b;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.accred-step-btn:hover {
  background: #ab0e00;
  color: #fff;
  border-color: #ab0e00;
  transform: scale(1.1);
}

@media (max-width: 560px) {
  .accred-stack {
    width: 280px;
    height: 380px;
  }

  .accred-fan-wrap {
    height: 500px;
  }
}


@media (max-width: 600px) {
  .accred-modal-info {
    padding: 40px 24px 30px;
  }

  .accred-modal-title {
    font-size: 1.75rem;
  }

  .accred-modal-visual {
    padding: 24px;
  }
}

/* ═══════════════════════════════════════
   REGISTRATION MODAL
═══════════════════════════════════════ */
.reg-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.reg-modal.open {
  opacity: 1;
  visibility: visible;
}

.reg-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.reg-modal-container {
  position: relative;
  width: 100%;
  max-width: 580px;
  background: #ffffff;
  border-radius: 32px;
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.35);
  /* overflow: hidden removed to allow dropdowns */
  transform: translateY(40px) scale(0.96);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 2;
}

.reg-modal.open .reg-modal-container {
  transform: translateY(0) scale(1);
}

.reg-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #64748b;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
}

.reg-modal-close:hover {
  background: #fff;
  color: #ab0e00;
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.reg-modal-content {
  padding: 0;
}

.modal-form-header {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 32px 40px 20px;
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
  border-radius: 32px 32px 0 0;
  /* Add radius here */
}

.modal-badge {
  display: inline-block;
  padding: 4px 10px;
  background: #ab0e00;
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  border-radius: 100px;
  margin-bottom: 6px;
  box-shadow: 0 4px 12px rgba(171, 14, 0, 0.2);
}

.modal-form-header h3 {
  font-size: 1.5rem;
  font-weight: 850;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 2px;
}

.modal-form-header p {
  font-size: 0.88rem;
  color: #64748b;
  max-width: 380px;
  margin: 0 auto;
  line-height: 1.4;
}

.modal-form {
  padding: 20px 32px 24px;
  display: grid;
  gap: 10px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #1e293b;
  display: flex;
  justify-content: space-between;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.9rem;
  color: #0f172a;
  transition: all 0.25s ease;
  font-family: inherit;
}

.form-group textarea {
  resize: vertical;
  min-height: 70px;
}

/* Custom Select Styling */
.select-wrapper {
  position: relative;
  width: 100%;
}

.form-group select {
  display: none;
  /* Hide native select */
}

.select-trigger {
  width: 100%;
  padding: 10px 14px;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.9rem;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
}

.select-trigger:hover {
  border-color: #cbd5e1;
}

.select-trigger.active {
  border-color: #ab0e00;
  box-shadow: 0 0 0 4px rgba(171, 14, 0, 0.08);
}

.select-trigger::after {
  content: '';
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5' /%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}

.select-trigger.active::after {
  transform: rotate(180deg);
}

.select-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.15);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  padding: 6px;
}

.select-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.select-option {
  padding: 10px 12px;
  font-size: 0.9rem;
  color: #334155;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.select-option:hover {
  background: #f1f5f9;
  color: #0f172a;
}

.select-option.selected {
  background: rgba(171, 14, 0, 0.06);
  color: #ab0e00;
  font-weight: 600;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ab0e00;
  box-shadow: 0 0 0 5px rgba(171, 14, 0, 0.1);
}



.form-group input::placeholder {
  color: #94a3b8;
}

.form-error {
  color: #ef4444;
  font-size: 0.7rem;
  font-weight: 500;
  min-height: 14px;
}

.btn-full {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 1rem;
  margin-top: 2px;
}

/* Zalo Section in Modal */
.modal-zalo-section {
  margin-top: 8px;
  text-align: center;
}

.modal-zalo-divider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.modal-zalo-divider::before,
.modal-zalo-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}

.modal-zalo-divider span {
  padding: 0 12px;
  font-size: 0.75rem;
  color: #94a3b8;
  background: transparent;
  font-weight: 500;
}

.modal-zalo-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.modal-zalo-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  background: transparent;
  border: 1.5px solid #0068ff;
  border-radius: 100px;
  color: #0068ff;
  font-size: 0.82rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.modal-zalo-btn:hover {
  background: #0068ff;
  color: #ffffff;
  box-shadow: 0 8px 20px -6px rgba(0, 104, 255, 0.3);
  transform: translateY(-1px);
}

.modal-zalo-btn img {
  border-radius: 4px;
  flex-shrink: 0;
}

.modal-booking-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  background: #111729;
  border: 1.5px solid #111729;
  border-radius: 100px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.modal-booking-btn:hover {
  background: #1e2a48;
  border-color: #1e2a48;
  box-shadow: 0 8px 20px -6px rgba(17, 23, 41, 0.35);
  transform: translateY(-1px);
}

.modal-booking-btn svg {
  flex-shrink: 0;
}

.form-privacy {
  font-size: 0.75rem;
  color: #94a3b8;
  text-align: center;
}

/* Success State */
.modal-form-success {
  padding: 80px 40px;
  text-align: center;
  display: none;
  border-radius: 32px;
  /* Consistency */
}

.success-circle {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
}

.checkmark {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  stroke-width: 2;
  stroke: #10b981;
  stroke-miterlimit: 10;
  box-shadow: inset 0 0 0 #10b981;
}

.checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #10b981;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes scale {

  0%,
  100% {
    transform: none;
  }

  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}

@keyframes fill {
  100% {
    box-shadow: inset 0 0 0 40px #fff;
  }
}

@media (max-width: 640px) {
  .reg-modal-container {
    max-width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .modal-form-header {
    padding: 40px 24px 24px;
  }

  .modal-form {
    padding: 24px;
  }
}

/* ── Mobile: Zalo + Đặt lịch row ─────────────────── */
@media (max-width: 540px) {
  .modal-zalo-row {
    gap: 8px;
  }

  .modal-zalo-btn,
  .modal-booking-btn {
    font-size: 0.75rem;
    padding: 8px 10px;
    gap: 6px;
  }

  .modal-zalo-btn img {
    width: 16px;
    height: 16px;
  }

  .modal-booking-btn svg {
    width: 14px;
    height: 14px;
  }
}

/* ── Mobile: Registration Popup ──────────────────── */
@media (max-width: 640px) {

  /* ── Mobile: centered modal với margin 2 bên ── */
  .reg-modal {
    align-items: center;
    justify-content: center;
    padding: 16px;
  }

  .reg-modal-container {
    max-width: 100%;
    width: 100%;
    border-radius: 24px;
    max-height: 88vh;
    overflow-y: auto;
    overflow-x: hidden;
    transform: translateY(24px) scale(0.97);
    scrollbar-width: none;
    /* Override old absolute positioning */
    position: relative;
    bottom: auto;
  }

  .reg-modal-container::-webkit-scrollbar {
    display: none;
  }

  .reg-modal.open .reg-modal-container {
    transform: translateY(0) scale(1);
  }

  /* Remove ::before drag handle on mobile */
  .reg-modal-container::before {
    display: none;
  }

  .modal-form-header {
    padding: 20px 20px 18px;
  }

  .modal-form {
    padding: 16px 20px 24px;
    gap: 12px;
  }

  /* Stack form-row to 1 column */
  .modal-form .form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .reg-modal-close {
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
  }

  /* Tighter Zalo/Booking row inside popup */
  .modal-form .modal-zalo-btn,
  .modal-form .modal-booking-btn {
    font-size: 0.72rem;
    padding: 8px 10px;
    gap: 5px;
  }
}