/* ==========================================================================
   Ava Ardakani Dental Admissions Coaching - Modern Luxury CSS (Updated)
   ========================================================================== */

:root {
  --primary: #0284c7;        /* Medical Sky Blue */
  --primary-dark: #0369a1;
  --primary-light: #e0f2fe;
  --accent: #0d9488;         /* Clinical Teal */
  --accent-light: #ccfbf1;
  --gold: #f59e0b;           /* Academic Honors Amber/Gold */
  --gold-light: #fef3c7;
  --navy: #0f172a;           /* Deep Slate Navy */
  --navy-card: #1e293b;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 25px -3px rgb(0 0 0 / 0.08), 0 4px 6px -4px rgb(0 0 0 / 0.05);
  --shadow-xl: 0 20px 35px -5px rgb(0 0 0 / 0.12), 0 8px 10px -6px rgb(0 0 0 / 0.08);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text-main);
  background-color: var(--bg-light);
  line-height: 1.6;
}

body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, .font-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--navy);
  line-height: 1.25;
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  width: fit-content;
}

.badge-gold {
  background: var(--gold-light);
  color: #b45309;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.badge-blue {
  background: var(--primary-light);
  color: var(--primary-dark);
  border: 1px solid rgba(2, 132, 199, 0.25);
}

.badge-teal {
  background: var(--accent-light);
  color: #0f766e;
  border: 1px solid rgba(13, 148, 136, 0.25);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  line-height: 1;
}

.btn-primary {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px 0 rgba(2, 132, 199, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(2, 132, 199, 0.45);
  background: linear-gradient(135deg, #0369a1 0%, #075985 100%);
}

.btn-secondary {
  background: #ffffff;
  color: var(--navy);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--bg-light);
  border-color: #cbd5e1;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px 0 rgba(245, 158, 11, 0.35);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(245, 158, 11, 0.45);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
}

/* Urgency Top Bar */
.announcement-bar {
  background: linear-gradient(90deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  color: #f8fafc;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.announcement-bar .pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  margin-right: 8px;
  animation: pulse 2s infinite;
}

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

/* Header & Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-avatar-mini {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.25);
}

.brand-text h1 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin: 0;
}

.brand-text span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: #475569;
  transition: var(--transition);
}

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

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--navy);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 60px 0;
  background: radial-gradient(circle at 10% 20%, rgba(224, 242, 254, 0.5) 0%, rgba(248, 250, 252, 1) 90%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.3rem, 4.2vw, 3.4rem);
  font-weight: 800;
  line-height: 1.16;
  margin: 18px 0 16px;
  color: #0f172a;
}

.hero-content h1 .highlight {
  background: linear-gradient(135deg, #0284c7 0%, #0d9488 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: 1.12rem;
  color: #475569;
  margin-bottom: 28px;
  max-width: 620px;
  line-height: 1.65;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

.hero-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.88rem;
  color: #64748b;
  font-weight: 500;
  margin-top: 12px;
}

.hero-trust-list span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-trust-list svg {
  color: #10b981;
}

/* Hero Profile Card - UNZOOMED, FULL-PHOTO VIEW FOR ORAL HEALTH CENTER */
.profile-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: var(--shadow-xl);
  position: relative;
}

.profile-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #0284c7, #0d9488, #f59e0b);
  border-radius: calc(var(--radius-lg) + 2px);
  z-index: -1;
  opacity: 0.25;
}

.hero-featured-photo-wrapper {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: var(--shadow-md);
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
}

.hero-featured-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
}

.photo-badge-overlay {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: white;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

/* ZOOMED IN PROFILE AVATAR */
.avatar-wrapper {
  position: relative;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #ffffff;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
  background: #e2e8f0;
}

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

.verified-pill {
  position: absolute;
  bottom: -2px;
  right: -2px;
  background: #0284c7;
  color: white;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
}

.profile-info h3 {
  font-size: 1.25rem;
  margin-bottom: 3px;
}

.profile-info p {
  color: #64748b;
  font-size: 0.88rem;
  font-weight: 500;
}

.profile-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.stat-box {
  background: var(--bg-light);
  padding: 14px 10px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  text-align: center;
}

.stat-number {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary-dark);
  display: block;
  line-height: 1.15;
}

.stat-label {
  font-size: 0.74rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.credentials-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 0.86rem;
}

.credentials-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #334155;
}

.credentials-list svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Credibility Strip */
.credibility-strip {
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 26px 0;
}

.credibility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  align-items: center;
}

.credibility-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.credibility-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.credibility-item h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.credibility-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* SIM LAB VIDEO SPOTLIGHT - FULLY ZOOMED OUT 9:16 PHONE FRAME */
.sim-lab-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-bottom: 1px solid var(--border-color);
}

.sim-lab-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 48px;
  align-items: center;
}

.sim-lab-media-box {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid #0f172a;
  background: #000000;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  aspect-ratio: 464 / 832;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sim-lab-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #000000;
}

.video-overlay-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(8px);
  color: white;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 10;
}

.video-pulse-dot {
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.sim-lab-content h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
  margin: 14px 0 16px;
  line-height: 1.22;
}

.sim-lab-content p {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.68;
  margin-bottom: 22px;
}

.sim-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.92rem;
  color: #334155;
}

.sim-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.sim-highlights svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 3px;
}

/* Seminar Proof Section */
.seminar-proof-banner {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  margin-top: 48px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: center;
}

.seminar-photo-wrapper {
  width: 100%;
  height: 240px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #f1f5f9;
}

.seminar-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.seminar-info h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.seminar-info p {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Pain Points / Traps Section */
.section-padding {
  padding: 85px 0;
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 50px;
}

.section-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  margin: 14px 0;
  line-height: 1.2;
}

.section-header p {
  font-size: 1.08rem;
  color: var(--text-muted);
}

.traps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.trap-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.trap-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #cbd5e1;
}

.trap-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #ef4444;
  background: #fee2e2;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  width: fit-content;
}

.trap-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.trap-quote {
  font-style: italic;
  font-size: 0.9rem;
  color: #64748b;
  border-left: 3px solid #cbd5e1;
  padding-left: 12px;
  margin-bottom: 16px;
}

.trap-card p {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.6;
}

/* The Ava Difference / Comparison Table */
.comparison-section {
  background: #ffffff;
}

.comparison-table-wrapper {
  overflow-x: auto;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  margin-top: 40px;
}

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

.comparison-table th, 
.comparison-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.95rem;
}

.comparison-table th {
  background: var(--bg-light);
  font-weight: 700;
  color: var(--navy);
}

.comparison-table th.highlight-col,
.comparison-table td.highlight-col {
  background: rgba(224, 242, 254, 0.4);
  font-weight: 600;
  color: var(--navy);
}

.check-icon {
  color: #10b981;
  font-weight: 700;
}

.cross-icon {
  color: #ef4444;
  font-weight: 700;
}

/* Framework / Blueprint Section */
.blueprint-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blueprint-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  position: relative;
  transition: var(--transition);
}

.blueprint-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.step-badge {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0284c7, #0d9488);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 22px;
}

.blueprint-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.blueprint-card p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blueprint-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.88rem;
  color: #334155;
}

.blueprint-features li {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Interview Formats Grid */
.interview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.interview-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.interview-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.interview-card p {
  color: #64748b;
  font-size: 0.92rem;
  margin-bottom: 16px;
}

.interview-drills-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.88rem;
  color: #334155;
}

.interview-drills-list li::before {
  content: '→';
  color: var(--primary);
  margin-right: 8px;
  font-weight: bold;
}

/* Packages / Pricing Section */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.package-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 38px 28px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.package-card.featured {
  border: 2px solid var(--primary);
  box-shadow: 0 10px 30px -5px rgba(2, 132, 199, 0.25);
}

.featured-pill {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #0284c7, #0d9488);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: var(--radius-full);
}

.package-header {
  margin-bottom: 20px;
}

.package-title {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.package-subtitle {
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.92rem;
}

.package-pricing {
  margin-bottom: 24px;
  background: var(--bg-light);
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.package-price {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.package-price-sub {
  font-size: 0.85rem;
  color: #475569;
  font-weight: 600;
  margin-top: 6px;
}

.package-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
  font-size: 0.9rem;
  color: #334155;
  margin-bottom: 30px;
  flex-grow: 1;
}

.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.package-features svg {
  color: #10b981;
  flex-shrink: 0;
  margin-top: 3px;
}

/* Package Filter Tabs */
.package-tabs-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.package-tabs {
  display: inline-flex;
  background: #f1f5f9;
  padding: 5px;
  border-radius: var(--radius-full);
  gap: 6px;
  border: 1px solid var(--border-color);
  flex-wrap: wrap;
  justify-content: center;
}

.package-tab {
  border: none;
  background: transparent;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  transition: var(--transition);
}

.package-tab:hover {
  color: var(--navy);
}

.package-tab.active {
  background: #ffffff;
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Category Badge on Card */
.card-category-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
  width: fit-content;
}

.badge-cat-ps {
  background: rgba(2, 132, 199, 0.1);
  color: var(--primary);
}

.badge-cat-interview {
  background: rgba(13, 148, 136, 0.1);
  color: #0d9488;
}

/* Full-Width Bundle Showcase Card */
.bundle-showcase-card {
  margin-top: 32px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  border: 2px solid #f59e0b;
  box-shadow: 0 15px 35px -5px rgba(15, 23, 42, 0.25);
  transition: var(--transition);
}

.bundle-showcase-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -5px rgba(15, 23, 42, 0.35);
}

.bundle-showcase-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.bundle-showcase-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.bundle-header-info h3 {
  font-size: 1.65rem;
  color: #ffffff;
  margin-top: 8px;
  margin-bottom: 6px;
}

.bundle-header-info p {
  color: #94a3b8;
  font-size: 0.95rem;
  max-width: 640px;
  margin-bottom: 0;
}

.bundle-pricing-block {
  text-align: right;
  background: rgba(255, 255, 255, 0.08);
  padding: 14px 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  min-width: 190px;
}

.bundle-pricing-block .bundle-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fbbf24;
  line-height: 1;
}

.bundle-pricing-block .bundle-savings {
  font-size: 0.8rem;
  color: #34d399;
  font-weight: 700;
  margin-top: 4px;
}

.bundle-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.bundle-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: #e2e8f0;
}

.bundle-feature-item svg {
  color: #34d399;
  flex-shrink: 0;
  margin-top: 3px;
}

.bundle-footer-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  flex-wrap: wrap;
}

.bundle-guarantee-note {
  font-size: 0.85rem;
  color: #94a3b8;
}

@media (max-width: 900px) {
  .bundle-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bundle-pricing-block {
    text-align: left;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .bundle-features-grid {
    grid-template-columns: 1fr;
  }
  .bundle-showcase-card {
    padding: 24px 20px;
  }
}
.testimonials-section {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-stars {
  color: #f59e0b;
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 0.98rem;
  color: #334155;
  line-height: 1.65;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-info h4 {
  font-size: 0.95rem;
  margin: 0;
}

.author-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

/* ROI Financial Section */
.roi-card {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: var(--radius-lg);
  padding: 48px;
  color: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.roi-content h2 {
  color: white;
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.roi-content p {
  color: #94a3b8;
  font-size: 1.05rem;
  line-height: 1.6;
}

.roi-comparison-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 28px;
}

.roi-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
}

.roi-row:last-child {
  border-bottom: none;
}

.roi-cost {
  font-weight: 700;
  color: #f87171;
}

.roi-benefit {
  font-weight: 700;
  color: #34d399;
}

/* FAQ Accordion */
.faq-container {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  margin-bottom: 14px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-button {
  width: 100%;
  padding: 22px 24px;
  text-align: left;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
}

.faq-icon {
  transition: transform 0.2s ease;
  color: var(--primary);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-content {
  padding: 0 24px 22px;
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.65;
  display: none;
}

.faq-item.active .faq-content {
  display: block;
}

/* Final CTA Banner */
.final-cta {
  background: radial-gradient(circle at 50% 50%, #0369a1 0%, #0f172a 100%);
  color: white;
  text-align: center;
  padding: 90px 24px;
}

.final-cta h2 {
  color: white;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
}

.final-cta p {
  color: #bae6fd;
  font-size: 1.15rem;
  max-width: 650px;
  margin: 0 auto 36px;
}

/* Footer */
.site-footer {
  background: #0b1120;
  color: #94a3b8;
  padding: 60px 0 30px;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand h3 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.footer-brand p {
  max-width: 380px;
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-links h4 {
  color: white;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.82rem;
  color: #64748b;
}

/* Interactive Modal & Draft Box */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  padding: 16px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 640px;
  width: 100%;
  padding: 36px;
  position: relative;
  box-shadow: var(--shadow-xl);
  transform: translateY(20px);
  transition: transform 0.25s ease;
  max-height: 92vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #64748b;
}

.modal-card h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.modal-card p {
  color: #64748b;
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--navy);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

/* Dedicated Personal Statement Draft Box */
.draft-container {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 18px;
}

.draft-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.char-counter {
  font-size: 0.8rem;
  font-weight: 700;
  color: #64748b;
}

.char-counter.near-limit {
  color: #d97706;
}

.char-counter.over-limit {
  color: #dc2626;
}

.draft-textarea {
  width: 100%;
  min-height: 140px;
  font-family: inherit;
  font-size: 0.92rem;
  line-height: 1.55;
  padding: 12px;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  background: #ffffff;
  resize: vertical;
}

.draft-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

/* Success Message */
.form-success-message {
  display: none;
  text-align: center;
  padding: 30px 10px;
}

.form-success-icon {
  width: 60px;
  height: 60px;
  background: #dcfce7;
  color: #16a34a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 16px;
}

/* Responsive Media Queries */
@media (max-width: 1120px) {
  .blueprint-grid,
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .roi-card {
    grid-template-columns: 1fr;
  }
  .sim-lab-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .seminar-proof-banner {
    grid-template-columns: 1fr;
  }
  .seminar-photo-wrapper {
    height: 240px;
  }
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-featured-photo-wrapper {
    height: 400px;
  }
  .blueprint-grid,
  .packages-grid {
    grid-template-columns: 1fr;
  }
  .nav-menu {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-cta-group {
    flex-direction: column;
  }
  .hero-cta-group .btn {
    width: 100%;
  }
}
