/* ===================================================
   JAMES FEDERIPE — PORTFOLIO CSS
   Aesthetic: Editorial × Modern Tech — Dark & Refined
   Fonts: Syne (display) + DM Sans (body)
=================================================== */

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

:root {
  --bg:        #f5f3ef;
  --bg2:       #edeae4;
  --card:      #ffffff;
  --text:      #1a1814;
  --text-muted:#7a7570;
  --accent:    #c8722a;
  --accent2:   #2a4cc8;
  --border:    rgba(0,0,0,0.09);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.13);
  --radius:    16px;
  --nav-h:     68px;
}

[data-theme="dark"] {
  --bg:        #0e0d0b;
  --bg2:       #161512;
  --card:      #1c1a17;
  --text:      #f0ece4;
  --text-muted:#8a8278;
  --accent:    #e08a3c;
  --accent2:   #5a7de8;
  --border:    rgba(255,255,255,0.07);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);
}

/* ===== BASE ===== */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  transition: background 0.4s ease, color 0.4s ease;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, .nav-logo, .hero-name {
  font-family: 'Syne', sans-serif;
}
.section-tag {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--accent);
  border: none;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 10px;
}
.dot { color: var(--accent); }

/* ===== CONTAINER ===== */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 100px 0;
}
.section-header {
  margin-bottom: 56px;
}

/* ===== NAV ===== */
#navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  background: rgba(245,243,239,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.4s;
}
[data-theme="dark"] #navbar {
  background: rgba(14,13,11,0.85);
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links li a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
}
.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.25s ease;
}
.nav-links li a:hover { color: var(--text); }
.nav-links li a:hover::after { width: 100%; }

#theme-toggle {
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  padding: 0;
}
#theme-toggle:hover { background: var(--bg2); }
.theme-icon { width: 18px; height: 18px; stroke: var(--text); }
.hidden { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 80px 24px 60px;
  max-width: 1140px;
  margin: 0 auto;
}
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.4;
}
.shape-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,114,42,0.25), transparent 70%);
  top: -100px; right: -100px;
}
.shape-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(42,76,200,0.2), transparent 70%);
  bottom: 0; left: -80px;
}
.shape-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(200,114,42,0.15), transparent 70%);
  bottom: 100px; right: 200px;
}
.hero-inner {
  display: flex;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-img-wrap {
  position: relative;
  flex-shrink: 0;
}
.hero-img-ring {
  position: absolute;
  inset: -10px;
  border-radius: 24px;
  border: 2px dashed var(--accent);
  opacity: 0.5;
  animation: spin-slow 20s linear infinite;
}
@keyframes spin-slow {
  to { transform: rotate(360deg); }
}
.hero-img {
  width: 260px;
  height: 320px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}
.status-badge {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}
.hero-text {
  flex: 1;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero-name {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}
.outline-text {
  -webkit-text-stroke: 2px var(--text);
  color: transparent;
}
[data-theme="dark"] .outline-text {
  -webkit-text-stroke: 2px var(--text);
}
.hero-bio {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--bg2);
  border: 1.5px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  overflow: hidden;
}
.social-icons a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.social-icons img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-top: 56px;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: fit-content;
}
.stat {
  text-align: center;
  padding: 24px 40px;
}
.stat-num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  white-space: nowrap;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 13px 28px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 20px rgba(200,114,42,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,114,42,0.4);
}
.btn-ghost {
  border: 1.5px solid var(--border);
  color: var(--text);
  background: transparent;
}
.btn-ghost:hover {
  background: var(--bg2);
  border-color: var(--text-muted);
  transform: translateY(-2px);
}
.btn-lg {
  padding: 16px 40px;
  font-size: 1rem;
}

/* ===== EXPERIENCE ===== */
.experience-section { background: var(--card); }
.exp-card {
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 40px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s, transform 0.3s;
}
.exp-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.exp-card-header {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.exp-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 6px;
  padding: 4px 12px;
  margin-bottom: 10px;
}
.ai-badge { background: rgba(200,114,42,0.12); color: var(--accent); }
.va-badge { background: rgba(42,76,200,0.12); color: var(--accent2); }
.dev-badge { background: rgba(34,160,90,0.12); color: #22a05a; }
[data-theme="dark"] .dev-badge { background: rgba(34,160,90,0.18); color: #3dd68c; }

/* Dev Skills Grid */
.dev-skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 20px;
}
.dev-skill-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  transition: transform 0.2s, border-color 0.2s;
}
.dev-skill-item:hover {
  transform: translateY(-3px);
  border-color: #22a05a;
}
.dev-skill-icon {
  font-size: 1.7rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.dev-skill-item h4 {
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.dev-skill-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.exp-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.exp-company { color: var(--accent); font-size: 0.9rem; font-weight: 500; }
.exp-period { color: var(--text-muted); font-size: 0.85rem; margin-top: 4px; }
.exp-tools-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-left: auto;
}
.tool-pill {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
}
.exp-desc {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.exp-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.exp-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.exp-bullets li::before {
  content: '→';
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Video grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 8px;
}
.video-placeholder {
  position: relative;
  aspect-ratio: 9/16;
  background: var(--bg2);
  border-radius: 12px;
  border: 2px dashed var(--border);
  overflow: hidden;
  transition: border-color 0.2s;
  cursor: pointer;
}
.video-placeholder:hover { border-color: var(--accent); }
.video-placeholder::before {
  content: attr(data-label);
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--card);
  padding: 3px 10px;
  border-radius: 100px;
  z-index: 2;
}
.video-placeholder-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 16px;
}
.play-icon {
  width: 54px;
  height: 54px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  padding-left: 4px;
  box-shadow: 0 4px 20px rgba(200,114,42,0.4);
  transition: transform 0.2s;
}
.video-placeholder:hover .play-icon { transform: scale(1.1); }
.video-placeholder-inner p {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
}
.video-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-style: italic;
}
.video-placeholder video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* VA Services Grid */
.va-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 8px;
}
.va-service-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  transition: transform 0.2s, border-color 0.2s;
}
.va-service-item:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}
.va-service-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 10px;
}
.va-service-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.va-service-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== SERVICES ===== */
.services-section { background: var(--bg2); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  box-shadow: var(--shadow-sm);
  color: var(--text);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.service-icon-wrap {
  font-size: 2.4rem;
  margin-bottom: 16px;
  line-height: 1;
}
.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  color: var(--text);
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== TOOLS ===== */
.tools-section { background: var(--card); }
.carousel-wrapper {
  position: relative;
  padding: 0 52px;
}
.tools-carousel {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  padding: 12px 4px 20px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.tools-carousel::-webkit-scrollbar { height: 6px; }
.tools-carousel::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}
.tool-card {
  flex: 0 0 130px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 12px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.tool-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.tool-card img {
  width: 52px; height: 52px;
  margin: 0 auto 10px;
  object-fit: contain;
}
.tool-card span { font-size: 0.82rem; font-weight: 500; color: var(--text-muted); }
.tool-card-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.tc-emoji { font-size: 2.2rem; line-height: 1; }
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  width: 40px; height: 40px;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 10;
  color: var(--text);
  padding: 0;
}
.carousel-arrow:hover { background: var(--accent); color: white; border-color: var(--accent); }
.prev { left: 0; }
.next { right: 0; }

/* ===== EDUCATION ===== */
.edu-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
}
.edu-item {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 32px 0;
  position: relative;
}
.edu-item + .edu-item {
  border-top: 1px solid var(--border);
}
.edu-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
  margin-top: 4px;
  width: 52px;
  text-align: center;
}
.edu-period {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 6px;
}
.edu-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.edu-school { font-size: 0.9rem; color: var(--accent2); font-weight: 500; margin-bottom: 6px; }
.edu-detail { font-size: 0.88rem; color: var(--text-muted); }

/* ===== PROCESS ===== */
.process-section { background: var(--bg2); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}
.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  color: var(--text);
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.04em;
}
.step-card:hover .step-num { opacity: 0.7; }
.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  color: var(--text);
}
.step-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.process-cta {
  text-align: center;
}
.process-cta p {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.process-cta {
  text-align: center;
}
.process-cta p {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 32px 24px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.footer-copy { font-size: 0.82rem; color: var(--text-muted); }
.footer-socials { display: flex; gap: 14px; }
.footer-socials a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: var(--bg2);
  border: 1px solid var(--border);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: all 0.2s;
}
.footer-socials a:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner { gap: 40px; }
  .hero-img { width: 210px; height: 260px; }
}
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  #navbar { padding: 0 20px; }

  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    inset: 0 0 0 30%;
    background: var(--card);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 90px 32px 40px;
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    box-shadow: -8px 0 40px rgba(0,0,0,0.15);
    z-index: 1000;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li a { font-size: 1.1rem; }

  .hero {
    padding: 60px 20px 48px;
    min-height: auto;
  }
  .hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }
  .hero-img-wrap { margin: 0 auto; }
  .hero-img { width: 180px; height: 220px; }
  .hero-bio { margin: 0 auto 28px; }
  .hero-cta { justify-content: center; }
  .social-icons { justify-content: center; }
  .hero-stats {
    width: auto;
    align-self: center;
  }
  .stat { padding: 18px 24px; }
  .stat-num { font-size: 1.6rem; }

  .section { padding: 70px 0; }

  .exp-card { padding: 28px 20px; }
  .exp-card-header { flex-direction: column; }
  .exp-tools-list { margin-left: 0; }

  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid { grid-template-columns: 1fr; }
  .va-services-grid { grid-template-columns: repeat(2, 1fr); }

  .carousel-wrapper { padding: 0 44px; }

  .steps-grid { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .hero-name { font-size: 3rem; }
  .video-grid { grid-template-columns: 1fr; }
  .va-services-grid { grid-template-columns: 1fr; }
  .hero-stats {
    flex-direction: column;
    width: fit-content;
    align-self: center;
  }
  .stat { padding: 16px 32px; }
  .stat-divider { width: 60px; height: 1px; }
  .carousel-wrapper { padding: 0 36px; }
}
