/* ============================================================
   CUBERO CONSULTING — Shared Stylesheet
   Modern Minimalist Design System
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #FFFFFF;
  --bg-surface: #F8FAFC;
  --bg-dark: #0F172A;
  --bg-dark-2: #1E293B;
  --accent: #4F46E5;
  --accent-light: #818CF8;
  --accent-cyan: #06B6D4;
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #94A3B8;
  --border: #E2E8F0;
  --border-dark: #334155;
  --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 6px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 10px 15px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.10), 0 20px 40px rgba(0,0,0,0.06);
  --radius: 14px;
  --radius-sm: 8px;
  --t: 0.2s ease;
  --max: 1160px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

/* --- Typography --- */
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; line-height: 1.12; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.025em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 600; line-height: 1.3; }
h4 { font-size: 1rem; font-weight: 600; line-height: 1.4; }
p  { line-height: 1.78; color: var(--text-secondary); }
a  { color: var(--accent); }

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

/* --- Layout Helpers --- */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section-sm { padding: 56px 0; }

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

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

.nav-logo {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-mark {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
}

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

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: var(--t);
}

.nav-links a:hover { color: var(--text-primary); background: var(--bg-surface); }
.nav-links a.active { color: var(--accent); font-weight: 600; }

.nav-cta {
  background: var(--accent) !important;
  color: white !important;
  border-radius: var(--radius-sm) !important;
  padding: 9px 20px !important;
  font-weight: 600 !important;
}

.nav-cta:hover { opacity: 0.88; background: var(--accent) !important; transform: none; }

.nav-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 7px 10px;
  color: var(--text-primary);
  font-size: 1.1rem;
  line-height: 1;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--t);
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 2px 8px rgba(79,70,229,0.3);
}

.btn-primary:hover {
  background: #4338CA;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(79,70,229,0.38);
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(79,70,229,0.04);
}

.btn-white {
  background: white;
  color: var(--accent);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.btn-white:hover {
  background: #EEF2FF;
  color: var(--accent);
  transform: translateY(-2px);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 110px 0 88px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(79,70,229,0.08);
  border: 1px solid rgba(79,70,229,0.15);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 { margin-bottom: 24px; }

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 500px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-trust-divider {
  width: 1px;
  height: 16px;
  background: var(--border);
}

.hero-image-wrap {
  position: relative;
}

.hero-photo {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  margin: 0 auto;
}

.hero-photo-placeholder {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4/5;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  margin: 0 auto;
  background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.04em;
}

.hero-badge {
  position: absolute;
  bottom: 24px;
  right: -16px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  min-width: 180px;
}

.hero-badge-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero-badge-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats {
  background: var(--bg-dark);
  padding: 52px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--accent-cyan);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  line-height: 1.4;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.about-photo-wrap {
  position: sticky;
  top: 88px;
}

.about-photo {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
  object-fit: cover;
}

.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 20px;
  background: linear-gradient(135deg, #EEF2FF, #E0E7FF);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  font-weight: 900;
  color: var(--accent);
}

.about-content h2 { margin-bottom: 24px; }
.about-content p   { margin-bottom: 18px; }

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 36px;
}

.highlight {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bg-surface);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent);
  transition: var(--t);
}

.highlight:hover { background: rgba(79,70,229,0.05); }

.highlight-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }

.highlight-body { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; }

.highlight-body strong { color: var(--text-primary); display: block; margin-bottom: 2px; font-size: 0.9rem; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--bg-surface); }

.services-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.services-header h2 { margin-bottom: 14px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  background: white;
  border-radius: var(--radius);
  padding: 36px 30px;
  border: 1px solid var(--border);
  transition: var(--t);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-cyan));
  opacity: 0;
  transition: var(--t);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::after { opacity: 1; }

.service-icon { font-size: 2.2rem; margin-bottom: 20px; display: block; }

.service-card h3 { margin-bottom: 10px; }
.service-card p  { font-size: 0.875rem; margin-bottom: 24px; }

.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(79,70,229,0.08);
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

.service-card.featured-service {
  background: linear-gradient(135deg, rgba(79,70,229,0.05), rgba(6,182,212,0.04));
  border-color: rgba(79,70,229,0.18);
}

/* ============================================================
   SOCIAL PROOF / RECOGNITION
   ============================================================ */
.recognition {
  background: var(--bg-dark);
  padding: 80px 0;
}

.recognition-header {
  text-align: center;
  margin-bottom: 56px;
}

.recognition-header h2 { color: white; margin-bottom: 14px; }
.recognition-header p  { color: rgba(255,255,255,0.55); max-width: 480px; margin: 0 auto; }

.recognition-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 56px;
}

.recognition-logo-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  white-space: nowrap;
  transition: var(--t);
}

.recognition-logo-item:hover {
  background: rgba(79,70,229,0.2);
  border-color: rgba(79,70,229,0.4);
  color: white;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.quote-card {
  background: var(--bg-dark-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--t);
}

.quote-card:hover { border-color: rgba(79,70,229,0.4); }

.quote-mark {
  font-size: 3rem;
  line-height: 0.6;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 16px;
  font-family: Georgia, serif;
}

.quote-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.quote-author-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: white;
  margin-bottom: 2px;
}

.quote-author-title {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}

/* ============================================================
   EDUCATOR DISCOUNT
   ============================================================ */
.discount-section { background: var(--bg-surface); }

.discount-banner {
  background: linear-gradient(135deg, rgba(79,70,229,0.08), rgba(6,182,212,0.06));
  border: 1.5px solid rgba(79,70,229,0.18);
  border-radius: var(--radius);
  padding: 44px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.discount-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.discount-banner h3 { margin-bottom: 10px; font-size: 1.4rem; }
.discount-banner p  { font-size: 0.875rem; max-width: 500px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--bg-dark); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.contact-info { padding-top: 8px; }
.contact-info h2 { color: white; margin-bottom: 16px; }
.contact-info > p { color: rgba(255,255,255,0.6); margin-bottom: 36px; font-size: 0.95rem; }

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
}

.contact-detail-icon {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-detail a {
  color: var(--accent-light);
  text-decoration: none;
}

.contact-detail a:hover { color: white; }

.contact-availability {
  margin-top: 40px;
  padding: 20px;
  background: rgba(79,70,229,0.15);
  border: 1px solid rgba(79,70,229,0.3);
  border-radius: var(--radius-sm);
}

.contact-availability p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.contact-availability strong { color: var(--accent-light); }

.contact-form-wrap {
  background: white;
  border-radius: var(--radius);
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
}

.contact-form-wrap h3 { margin-bottom: 8px; }
.contact-form-wrap > p { font-size: 0.875rem; margin-bottom: 32px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 7px;
  letter-spacing: 0.01em;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  font-family: inherit;
  font-size: 0.875rem;
  color: var(--text-primary);
  background: var(--bg-surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  transition: var(--t);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent);
  background: white;
  box-shadow: 0 0 0 3px rgba(79,70,229,0.1);
}

.form-textarea { resize: vertical; min-height: 110px; }

.form-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 5px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #060A14;
  padding: 56px 0 28px;
}

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

.footer-brand-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin-top: 14px;
  max-width: 260px;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 10px; }

.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: var(--t);
}

.footer-col a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  transition: var(--t);
}

.social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--bg-dark);
  padding: 72px 0 64px;
  text-align: center;
}

.page-hero h1 { color: white; margin-bottom: 14px; font-size: clamp(1.8rem, 4vw, 2.8rem); }

.page-hero p {
  color: rgba(255,255,255,0.6);
  max-width: 540px;
  margin: 0 auto;
  font-size: 1rem;
}

/* ============================================================
   RESUME PAGE — TIMELINE
   ============================================================ */
.resume-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.resume-sidebar {
  position: sticky;
  top: 88px;
}

.resume-photo {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 3/4;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  margin-bottom: 28px;
}

.resume-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 20px;
  background: linear-gradient(135deg, #EEF2FF, #E0E7FF);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 28px;
}

.sidebar-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 16px;
}

.sidebar-card h4 {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.sidebar-card p,
.sidebar-card a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-decoration: none;
  line-height: 1.6;
}

.sidebar-card a:hover { color: var(--accent); }

.timeline {
  position: relative;
  padding-left: 28px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--border));
}

.timeline-item {
  position: relative;
  margin-bottom: 36px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 7px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 2.5px solid white;
  box-shadow: 0 0 0 3px rgba(79,70,229,0.15);
}

.timeline-period {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 5px;
}

.timeline-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3px;
  line-height: 1.3;
}

.timeline-org {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 10px;
}

.timeline-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.timeline-desc ul {
  margin-top: 6px;
  padding-left: 16px;
}

.timeline-desc li {
  margin-bottom: 4px;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.expertise-item {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.825rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--t);
  display: flex;
  align-items: center;
  gap: 8px;
}

.expertise-item:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(79,70,229,0.04);
}

.expertise-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  opacity: 0.6;
}

/* ============================================================
   SPOTLIGHT PAGE
   ============================================================ */
.spotlight-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: white;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--t);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.spotlight-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  transition: var(--t);
  position: relative;
}

.spotlight-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(79,70,229,0.18);
  transform: translateY(-3px);
}

.spotlight-card.featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(79,70,229,0.03), rgba(6,182,212,0.03));
  border-color: rgba(79,70,229,0.15);
}

.spotlight-type {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.type-podcast     { background: rgba(6,182,212,0.1);   color: #0891B2; }
.type-publication { background: rgba(79,70,229,0.1);   color: var(--accent); }
.type-presentation{ background: rgba(16,185,129,0.1);  color: #059669; }
.type-media       { background: rgba(245,158,11,0.1);  color: #B45309; }
.type-framework   { background: rgba(239,68,68,0.1);   color: #DC2626; }
.type-post        { background: rgba(168,85,247,0.1);  color: #7C3AED; }

.spotlight-date {
  font-size: 0.77rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 8px;
}

.spotlight-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  line-height: 1.4;
}

.spotlight-card p {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.spotlight-link {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--t);
}

.spotlight-link:hover { gap: 8px; }

.presentations-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.presentations-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 22px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: var(--t);
}

.presentations-list li:hover {
  border-color: rgba(79,70,229,0.2);
  background: rgba(79,70,229,0.02);
}

.pres-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.pres-body strong {
  display: block;
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 2px;
  font-size: 0.9rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero-inner   { grid-template-columns: 1fr; gap: 48px; }
  .hero-image-wrap { order: -1; text-align: center; }
  .hero-photo, .hero-photo-placeholder { max-width: 300px; margin: 0 auto; }
  .hero-badge { display: none; }
  .hero-sub, .hero-actions { max-width: 100%; }

  .about-inner  { grid-template-columns: 1fr; gap: 40px; }
  .about-photo-wrap { position: static; text-align: center; }
  .about-photo, .about-photo-placeholder { max-width: 280px; margin: 0 auto; display: block; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .quote-grid    { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner  { grid-template-columns: 1fr 1fr; gap: 40px; }
  .resume-grid   { grid-template-columns: 1fr; }
  .resume-sidebar { position: static; }
  .spotlight-grid { grid-template-columns: 1fr; }
  .spotlight-card.featured { grid-column: 1; }
}

@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .hero { padding: 72px 0 56px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid    { grid-template-columns: 1fr 1fr; gap: 24px; }
  .expertise-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .discount-banner { padding: 28px 24px; flex-direction: column; align-items: flex-start; gap: 24px; }
  .contact-form-wrap { padding: 28px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0; bottom: 0;
    background: white;
    flex-direction: column;
    padding: 24px 20px;
    gap: 4px;
    z-index: 199;
    border-top: 1px solid var(--border);
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 16px; font-size: 1rem; }
  .nav-cta { text-align: center; }
}
