/* ═══════════════════════════════════════════════════════════
   PEM MALAYSIA — RECRUITMENT WEBSITE
   Paediatric Emergency Medicine Subspecialty Training
   ═══════════════════════════════════════════════════════════ */

/* ─── IMPORTS ─── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ─── RESET & BASE ─── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --purple-deep: #2E1065;
  --purple-royal: #5B21B6;
  --purple-electric: #7C3AED;
  --purple-light: #C4B5FD;
  --purple-50: #FAF5FF;
  --purple-100: #F3E8FF;
  --dark: #0F0F0F;
  --offwhite: #F5F5F5;
  --white: #FFFFFF;
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--offwhite);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

::selection {
  background: var(--purple-electric);
  color: var(--white);
}

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

ul, ol {
  list-style: none;
}

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

/* ─── UTILITIES ─── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-bg {
  background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple-royal) 50%, var(--purple-electric) 100%);
}

.gradient-bg-subtle {
  background: linear-gradient(135deg, var(--purple-100) 0%, var(--purple-50) 100%);
}

.gradient-text {
  background: linear-gradient(135deg, var(--purple-royal) 0%, var(--purple-electric) 50%, var(--purple-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.5s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(124, 58, 237, 0.06);
  padding: 12px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-electric));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: -0.02em;
  transition: transform 0.3s ease;
}

.nav-logo:hover .nav-logo-icon {
  transform: scale(1.1);
}

.nav-logo-text {
  font-weight: 700;
  font-size: 13px;
  color: var(--dark);
  letter-spacing: -0.02em;
  line-height: 1.3;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(15, 15, 15, 0.65);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: var(--purple-electric);
  background: var(--purple-50);
}

.nav-cta {
  padding: 10px 24px !important;
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-royal), var(--purple-electric)) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  border-radius: 100px !important;
  transition: all 0.3s ease !important;
}

.nav-cta:hover {
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.25) !important;
  transform: translateY(-2px) !important;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.nav-toggle:hover {
  background: var(--purple-50);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  margin: 6px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.mobile-menu a {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--purple-electric);
}

.mobile-menu .nav-cta {
  margin-top: 24px;
  padding: 16px 40px !important;
  font-size: 18px !important;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--offwhite);
}

.hero-compact {
  min-height: 70vh;
}

/* Background decorations */
.hero-bg-circle-1 {
  position: absolute;
  top: -30%;
  right: -20%;
  width: 70vw;
  height: 70vw;
  border-radius: 50%;
  background: radial-gradient(circle, var(--purple-electric) 0%, transparent 70%);
  opacity: 0.04;
  pointer-events: none;
  transition: transform 0.3s ease-out;
}

.hero-bg-circle-2 {
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  background: radial-gradient(circle, var(--purple-royal) 0%, transparent 70%);
  opacity: 0.03;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.02;
  background-image:
    linear-gradient(rgba(124,58,237,0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,0.3) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 24px 60px;
  width: 100%;
}

/* Angled text block */
.hero-angled {
  transform: rotate(-8deg);
  margin-bottom: 120px;
  transition: transform 0.3s ease-out;
}

.hero-compact .hero-angled {
  margin-bottom: 100px;
}

.hero-line {
  overflow: hidden;
  display: block;
}

.hero-line span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.85;
  font-size: clamp(3rem, 8vw, 8rem);
  animation: heroSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transform: translateY(100%);
}

.hero-compact .hero-line span {
  font-size: clamp(2rem, 5vw, 4.5rem);
}

.hero-line:nth-child(2) span { animation-delay: 0.15s; }
.hero-line:nth-child(3) span { animation-delay: 0.3s; }

@keyframes heroSlideUp {
  to { transform: translateY(0); }
}

.hero-line-purple span { color: var(--purple-electric); }
.hero-line-dark span { color: var(--dark); }
.hero-line-gradient span {
  background: linear-gradient(135deg, var(--purple-royal), var(--purple-electric), var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero subheadline + CTA */
.hero-sub {
  max-width: 640px;
}

.hero-sub p {
  color: rgba(15, 15, 15, 0.55);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeInUp 0.8s 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  opacity: 0;
  animation: fadeInUp 0.8s 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-royal), var(--purple-electric));
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.25);
  transform: translateY(-3px);
}

.btn-primary svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border: 2px solid rgba(15, 15, 15, 0.1);
  color: var(--dark);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border-radius: 100px;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--purple-electric);
  color: var(--purple-electric);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  background: var(--white);
  color: var(--purple-deep);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-white:hover {
  box-shadow: 0 20px 60px rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.btn-white svg {
  width: 20px;
  height: 20px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  animation: float 6s ease-in-out infinite;
}

.scroll-indicator-pill {
  width: 24px;
  height: 40px;
  border-radius: 100px;
  border: 2px solid rgba(15, 15, 15, 0.2);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
}

.scroll-indicator-dot {
  width: 6px;
  height: 12px;
  border-radius: 100px;
  background: var(--purple-electric);
  animation: bounce 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.4; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── SECTIONS ─── */
.section {
  padding: 56px 0;
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-purple {
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-royal), var(--purple-electric));
  color: var(--white);
}

.section-gradient {
  background: linear-gradient(135deg, var(--purple-100) 0%, var(--purple-50) 100%);
}

.section-angled {
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
  padding: 80px 0;
}

/* Section Header */
.section-header {
  margin-bottom: 32px;
  max-width: 768px;
}

.section-header.centered {
  text-align: center;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--purple-electric);
  margin-bottom: 16px;
}

.section-dark .section-eyebrow,
.section-purple .section-eyebrow {
  color: var(--purple-light);
}

.section-title {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(1.875rem, 4vw, 3.75rem);
  letter-spacing: -0.04em;
  line-height: 0.9;
  margin-bottom: 24px;
  color: var(--dark);
}

.section-dark .section-title,
.section-purple .section-title {
  color: var(--white);
}

.section-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(15, 15, 15, 0.55);
}

.section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.65);
}

/* ─── GRID LAYOUTS ─── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.grid-2-col-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

/* ─── CARDS ─── */
.card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(15, 15, 15, 0.05);
  transition: all 0.5s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.1);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-electric));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}

.card:hover .card-icon {
  transform: scale(1.1);
}

.card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.card-label {
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--purple-electric);
  margin-bottom: 8px;
}

.card-value {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--dark);
  line-height: 1.3;
}

/* Reason Card */
.reason-card {
  position: relative;
  overflow: hidden;
}

.reason-card .card-bg-number {
  position: absolute;
  top: -16px;
  right: -8px;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 128px;
  line-height: 1;
  color: var(--purple-50);
  pointer-events: none;
  user-select: none;
  transition: color 0.5s ease;
}

.reason-card:hover .card-bg-number {
  color: var(--purple-100);
}

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

.card-title {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.card-desc {
  color: rgba(15, 15, 15, 0.55);
  line-height: 1.7;
  font-size: 15px;
}

/* Dark card */
.card-dark {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-dark:hover {
  border-color: rgba(196, 181, 253, 0.3);
  box-shadow: none;
  transform: translateY(-4px);
}

.card-dark .card-number {
  color: var(--purple-light);
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 30px;
  margin-bottom: 16px;
}

.card-dark .card-title {
  color: var(--white);
}

.card-dark .card-desc {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}

/* Rotation card */
.rotation-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-electric));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 16px;
}

/* Check item */
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid rgba(15, 15, 15, 0.05);
  transition: all 0.5s ease;
}

.check-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.08);
}

.check-item-dark {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.check-item-dark:hover {
  box-shadow: none;
}

.check-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--purple-electric);
}

.check-item-dark .check-icon {
  color: var(--purple-light);
}

.check-text {
  color: rgba(15, 15, 15, 0.75);
  line-height: 1.6;
}

.check-item-dark .check-text {
  color: rgba(255, 255, 255, 0.75);
}

/* ─── STATS ─── */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.stat-card {
  text-align: center;
  padding: 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-value {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--purple-light);
  margin-bottom: 8px;
}

.stat-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 1.4;
}

.stat-tag {
  display: inline-block;
  margin-top: 8px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(196, 181, 253, 0.5);
}

/* ─── TIMELINE ─── */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--purple-electric), var(--purple-light), transparent);
}

.timeline-step {
  position: relative;
  padding-left: 64px;
  padding-bottom: 48px;
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 17px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--purple-electric);
  box-shadow: 0 0 0 4px var(--offwhite), 0 0 20px rgba(124, 58, 237, 0.3);
}

.section-gradient .timeline-dot {
  box-shadow: 0 0 0 4px var(--purple-50), 0 0 20px rgba(124, 58, 237, 0.3);
}

.timeline-phase {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--purple-50);
  color: var(--purple-electric);
  margin-bottom: 12px;
}

.timeline-step:first-child .timeline-phase {
  background: var(--purple-electric);
  color: var(--white);
}

.timeline-title {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 24px;
  color: var(--dark);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.timeline-desc {
  color: rgba(15, 15, 15, 0.55);
  line-height: 1.7;
}

/* ─── CTA BANNER ─── */
.cta-banner {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-royal), var(--purple-electric));
}

.cta-banner-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw;
  height: 80vw;
  border-radius: 50%;
  background: radial-gradient(circle, var(--purple-light) 0%, transparent 60%);
  opacity: 0.1;
  pointer-events: none;
}

.cta-banner-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}

.cta-banner-title {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(1.875rem, 5vw, 4.5rem);
  letter-spacing: -0.04em;
  line-height: 0.85;
  color: var(--white);
  margin-bottom: 24px;
}

.cta-banner-sub {
  color: rgba(255, 255, 255, 0.65);
  font-size: 18px;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 40px;
}

/* ─── FAQ ACCORDION ─── */
.faq-list {
  max-width: 768px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(15, 15, 15, 0.05);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq-item.active {
  border-color: rgba(124, 58, 237, 0.2);
  background: var(--white);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.05);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--dark);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--purple-electric);
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
}

.faq-answer-inner {
  padding: 0 24px 24px;
  color: rgba(15, 15, 15, 0.55);
  line-height: 1.7;
}

/* ─── DAY IN LIFE ─── */
.day-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid rgba(15, 15, 15, 0.05);
  margin-bottom: 16px;
  transition: all 0.5s ease;
}

.day-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.08);
}

.day-time {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  min-width: 100px;
}

.day-time svg {
  width: 16px;
  height: 16px;
  color: var(--purple-electric);
}

.day-time span {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: var(--purple-electric);
}

.day-activity {
  color: rgba(15, 15, 15, 0.65);
  line-height: 1.6;
}

/* ─── TESTIMONIAL ─── */
.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
}

.testimonial-icon {
  width: 32px;
  height: 32px;
  color: var(--purple-light);
  margin-bottom: 16px;
}

.testimonial-quote {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-name {
  font-weight: 700;
  color: var(--white);
}

.testimonial-role {
  color: var(--purple-light);
  font-size: 14px;
}

/* ─── CONTACT ─── */
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid rgba(15, 15, 15, 0.05);
  margin-bottom: 24px;
  transition: all 0.5s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.08);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-electric));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.contact-label {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.contact-value {
  color: rgba(15, 15, 15, 0.55);
}

/* Quick links */
.quick-link {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid rgba(15, 15, 15, 0.05);
  margin-bottom: 16px;
  transition: all 0.5s ease;
}

.quick-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.08);
}

.quick-link:hover .quick-link-title {
  color: var(--purple-electric);
}

.quick-link:hover .quick-link-arrow {
  color: var(--purple-electric);
  transform: translateX(4px);
}

.quick-link-content { flex: 1; }

.quick-link-title {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
  transition: color 0.3s ease;
}

.quick-link-desc {
  font-size: 14px;
  color: rgba(15, 15, 15, 0.45);
}

.quick-link-arrow {
  width: 20px;
  height: 20px;
  color: rgba(15, 15, 15, 0.25);
  flex-shrink: 0;
  margin-top: 4px;
  transition: all 0.3s ease;
}

/* ─── COMPARISON COLUMNS ─── */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.compare-col {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
}

.compare-col-title {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--purple-light);
  margin-bottom: 24px;
}

.compare-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 12px;
}

.compare-item:last-child { margin-bottom: 0; }

.compare-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.compare-dot-light { background: var(--purple-light); }
.compare-dot-electric { background: var(--purple-electric); }

/* ─── APPLICATION STEP ─── */
.app-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
}

.app-step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-electric));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 900;
  font-size: 14px;
  flex-shrink: 0;
}

.app-step-title {
  font-weight: 700;
  color: var(--white);
  font-size: 18px;
  margin-bottom: 8px;
}

.app-step-desc {
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

/* ─── COMPETENCY CARD ─── */
.competency-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
}

.competency-number {
  color: var(--purple-light);
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}

.competency-title {
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 12px;
}

.competency-desc {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.7;
}

/* ─── EXPERIENCE CARD ─── */
.exp-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(15, 15, 15, 0.05);
  text-align: center;
  transition: all 0.5s ease;
}

.exp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.1);
}

.exp-card-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-electric));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--white);
  font-weight: 900;
  font-size: 14px;
}

.exp-card-title {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 12px;
}

.exp-card-desc {
  color: rgba(15, 15, 15, 0.55);
  font-size: 14px;
  line-height: 1.7;
}

/* ─── INTAKE BOX ─── */
.intake-box {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(15, 15, 15, 0.05);
  box-shadow: 0 0 60px rgba(124, 58, 237, 0.1);
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.intake-box p {
  color: rgba(15, 15, 15, 0.65);
  font-size: 18px;
  line-height: 1.7;
}

/* ─── IMPACT SECTION ─── */
.impact-title .gradient-text {
  display: inline;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--dark);
  color: var(--white);
}

.footer-main {
  padding: 64px 0;
}

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

.footer-brand p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
  line-height: 1.7;
  margin-top: 24px;
}

.footer-note {
  color: rgba(255, 255, 255, 0.25);
  font-size: 12px;
  line-height: 1.7;
  margin-top: 24px;
}

.footer-heading {
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--purple-light);
  margin-bottom: 24px;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--purple-light);
}

.footer-links a.footer-apply {
  color: var(--purple-light);
  font-weight: 600;
}

.footer-links a.footer-apply:hover {
  color: var(--white);
}

.footer-contact-label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 4px;
}

.footer-contact-value {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  margin-bottom: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
}

.footer-bottom .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

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

.footer-disclaimer {
  color: rgba(255, 255, 255, 0.15);
  font-size: 12px;
  text-align: center;
  max-width: 480px;
}

/* ─── ARTWORK ─── */

/* Artwork alongside section header content */
.artwork-beside {
  display: flex;
  align-items: center;
  gap: 40px;
}

.artwork-beside-content {
  flex: 1;
  min-width: 0;
}

.artwork-beside-img {
  flex-shrink: 0;
}

.artwork-beside-img img {
  height: 340px;
  width: auto;
  opacity: 0.9;
}


/* ─── RESPONSIVE ─── */
@media (min-width: 640px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .compare-grid { grid-template-columns: repeat(2, 1fr); }

  .hero-sub p { font-size: 20px; }
  .section { padding: 72px 0; }
  .section-angled { padding: 100px 0; }
}

@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2-col-content { grid-template-columns: 1fr 1fr; gap: 64px; }

  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom .container { flex-direction: row; justify-content: space-between; }

  .artwork-beside-img img { height: 340px; }
}

@media (min-width: 1024px) {
  .container { padding: 0 48px; }
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }

  .section { padding: 88px 0; }
  .section-angled { padding: 120px 0; }

  /* Timeline desktop */
  .timeline-line { left: 50%; }
  .timeline-step { padding-left: 0; padding-bottom: 64px; }
  .timeline-step:last-child { padding-bottom: 0; }
  .timeline-dot { left: 50%; transform: translateX(-50%); }

  .timeline-step:nth-child(odd) {
    padding-right: calc(50% + 48px);
    text-align: right;
  }
  .timeline-step:nth-child(even) {
    padding-left: calc(50% + 48px);
  }
}

@media (max-width: 1023px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }

  .nav-logo-text { display: none; }
}

@media (max-width: 639px) {
  .hero-angled { margin-bottom: 80px; }
  .hero-compact .hero-angled { margin-bottom: 70px; }
  .hero-content { padding: 100px 24px 40px; }

  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary { width: 100%; justify-content: center; }
  .btn-white { width: 100%; justify-content: center; }

  .day-item { flex-direction: column; gap: 8px; }
  .app-step { flex-direction: column; }

  .artwork-beside { flex-direction: column; text-align: center; }
  .artwork-beside-img img { height: 240px; }
}
