/* ═══════════════════════════════════════════════════════
   PIXLURK PORTFOLIO — style.css
   Joel B. Gacho · joelgacho.com
   Brand accent: #F85E00 (orange)
   Reference design: reeni-wp.laralink.com
═══════════════════════════════════════════════════════ */


/* ─────────────────────────────────────────────────────
   1. ROOT TOKENS
   Dark mode default. [data-theme="light"] overrides.
───────────────────────────────────────────────────── */
:root {
  --accent:        #F85E00;
  --accent-hover:  #DC5400;
  --accent-light:  #FF7A2A;
  --accent-glow:   rgba(248, 94, 0, 0.18);
  --gradient:      linear-gradient(135deg, #F85E00 0%, #FF7A2A 100%);

  /* Deep graphite blue — same cool mood, deeper and moodier */
  --bg-primary:    #050810;
  --bg-surface:    #080d18;
  --bg-card:       #0c1220;
  --bg-elevated:   #121a2e;
  --text-primary:  #eef2ff;
  --text-secondary:#7a8a9e;
  --border:        rgba(148, 163, 184, 0.09);
  --border-hover:  rgba(248, 94, 0, 0.5);
  --nav-bg:        rgba(5, 8, 16, 0.82);
  --shadow:        0 4px 28px rgba(0, 0, 0, 0.72);
  --shadow-lg:     0 20px 60px rgba(0, 0, 0, 0.82);

  --radius:        14px;
  --radius-sm:     9px;
  --radius-xs:     6px;
  --transition:    0.28s ease;
  --container:     1440px;
}

[data-theme="light"] {
  --bg-primary:    #ffffff;
  --bg-surface:    #f7f7f7;
  --bg-card:       #ffffff;
  --bg-elevated:   #efefef;
  --text-primary:  #0c0c0c;
  --text-secondary:#666666;
  --border:        rgba(0, 0, 0, 0.09);
  --border-hover:  rgba(2, 1, 34, 0.4);
  --nav-bg:        rgba(255, 255, 255, 0.94);
  --shadow:        0 4px 28px rgba(0, 0, 0, 0.09);
  --shadow-lg:     0 16px 56px rgba(0, 0, 0, 0.12);
  --accent:        #020122;
  --accent-hover:  #010018;
  --accent-light:  #0d0a4a;
  --accent-glow:   rgba(2, 1, 34, 0.10);
  --gradient:      linear-gradient(135deg, #020122 0%, #0d0a4a 100%);
}


/* ─────────────────────────────────────────────────────
   2. RESET & BASE
───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  transition: background-color var(--transition), color var(--transition);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
input, textarea { font-family: inherit; }


/* ─────────────────────────────────────────────────────
   3. TYPOGRAPHY
───────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  line-height: 1.15;
  color: var(--text-primary);
  font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.8vw, 2.5rem); }
h3 { font-size: clamp(1rem, 2.4vw, 1.25rem); }
h4 { font-size: 0.95rem; }
p  { color: var(--text-secondary); line-height: 1.78; }
strong { color: var(--text-primary); font-weight: 600; }


/* ─────────────────────────────────────────────────────
   4. LAYOUT UTILITIES
───────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: 110px 0; }

.section__header {
  text-align: center;
  margin-bottom: 70px;
}

.section__label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent);
  margin-bottom: 14px;
}

.section__title { margin-bottom: 20px; }

.section__divider {
  width: 48px;
  height: 3px;
  background: var(--gradient);
  border-radius: 2px;
  margin: 0 auto 20px;
}

.section__subtitle {
  max-width: 540px;
  margin: 0 auto;
  font-size: 1.02rem;
}

.badge {
  display: inline-block;
  padding: 4px 13px;
  border-radius: 20px;
  font-size: 0.76rem;
  font-weight: 600;
}
.badge--green {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.28);
}


/* ─────────────────────────────────────────────────────
   5. SCROLL-REVEAL ANIMATIONS
   JS adds .is-visible to [data-animate] elements on scroll
───────────────────────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-animate="fade-up"]    { transform: translateY(32px); }
[data-animate="fade-right"] { transform: translateX(-32px); }
[data-animate="fade-left"]  { transform: translateX(32px); }
[data-animate="zoom-in"]    { transform: scale(0.92); }

[data-animate].is-visible {
  opacity: 1;
  transform: none;
}


/* ─────────────────────────────────────────────────────
   6. BUTTONS
───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--gradient);
  color: #fff;
}
.btn--primary:hover, .btn--primary:focus-visible {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(248, 94, 0, 0.38);
}
.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border);
}
.btn--outline:hover, .btn--outline:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn--full { width: 100%; justify-content: center; }


/* ─────────────────────────────────────────────────────
   7. LOGO SWITCHING
   CSS swaps the logo based on [data-theme] on <html>
───────────────────────────────────────────────────── */
.logo--dark  { display: block; }
.logo--light { display: none;  }
[data-theme="light"] .logo--dark  { display: none;  }
[data-theme="light"] .logo--light { display: block; }

/* Theme toggle icons */
.icon--sun  { display: block; }
.icon--moon { display: none;  }
[data-theme="light"] .icon--sun  { display: none;  }
[data-theme="light"] .icon--moon { display: block; }


/* ─────────────────────────────────────────────────────
   8. NAVIGATION
───────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.site-header.is-scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 20px;
}
.nav__logo img { height: auto; width: 320px; max-width: 65vw; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav__link {
  padding: 8px 16px;
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-xs);
  transition: color var(--transition), background var(--transition);
}
.nav__link:hover, .nav__link.is-active {
  color: var(--text-primary);
  background: var(--bg-elevated);
}
.nav__link--cta {
  background: rgba(248, 94, 0, 0.1);
  color: var(--accent);
  border: 1px solid rgba(248, 94, 0, 0.22);
  margin-left: 12px;
}
.nav__link--cta:hover {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
}

.nav__actions { display: flex; align-items: center; gap: 10px; }

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  color: var(--text-secondary);
  transition: all var(--transition);
}
.theme-toggle:hover { color: var(--text-primary); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
}
.hamburger__bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.is-open .hamburger__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open .hamburger__bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open .hamburger__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 199;
  padding: 12px 20px 22px;
  border-top: 1px solid var(--border);
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.mobile-menu.is-open { display: block; }
.mobile-menu__links { display: flex; flex-direction: column; gap: 2px; }
.mobile-menu__link {
  display: block;
  padding: 12px 14px;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-xs);
  transition: all var(--transition);
}
.mobile-menu__link:hover { color: var(--text-primary); background: var(--bg-elevated); }


/* ─────────────────────────────────────────────────────
   9. HERO SECTION
───────────────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - 74px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-primary);
}

/* Soft accent glow backdrop — ported from the 404 page */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 62% 52% at 50% 40%, var(--accent-glow) 0%, transparent 62%);
  pointer-events: none;
  z-index: 0;
}

/* Faint fading grid — ported from the 404 page */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 72% 64% at 50% 45%, #000 0%, transparent 76%);
  mask-image: radial-gradient(ellipse 72% 64% at 50% 45%, #000 0%, transparent 76%);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

/* Floating ambient orbs — ported from the 404 page */
.hero__bg-shapes { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero__shape {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient);
  opacity: 0.16;
  filter: blur(9px);
  will-change: transform;
  animation: hero-float 10s ease-in-out infinite;
}
.hero__shape--1 { width: 120px; height: 120px; top: 14%;   left: 9%;   animation-delay: 0s;   }
.hero__shape--2 { width: 82px;  height: 82px;  bottom: 18%; right: 11%; animation-delay: 1.6s; }
.hero__shape--3 { width: 48px;  height: 48px;  top: 24%;    right: 18%; animation-delay: 3.1s; }
.hero__shape--4 { width: 66px;  height: 66px;  bottom: 20%; left: 16%;  animation-delay: 2.2s; }
.hero__shape--5 { width: 38px;  height: 38px;  top: 56%;    right: 32%; animation-delay: 4s;   }

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

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.hero__content { min-width: 0; }

.hero__greeting {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.hero__name {
  margin-bottom: 12px;
  line-height: 1.3;
  color: var(--text-secondary);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 500;
}
.hero__name strong {
  color: var(--text-primary);
  font-weight: 700;
}
.hero__name-suffix {
  font-size: 0.75em;
  font-weight: 400;
  color: #ffffff;
  margin-left: 6px;
  vertical-align: baseline;
}

/* Typing animation line */
.hero__role-line {
  display: flex;
  align-items: baseline;
  flex-wrap: nowrap;
  gap: 0;
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(22px, 7vw, 58px);
  font-weight: 900;
  font-style: normal;
  letter-spacing: 0.01em;
  color: var(--text-secondary);
  margin-bottom: 12px;
  min-height: 1.2em;
  overflow: visible;
  line-height: 1.2;
}

.hero__typed-wrap {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  overflow: visible;
}

/* The cursor rides the right edge of this box. Animating its width wipes
   the text away to the right (erase) and reveals the next from the left. */
.hero__typed {
  color: var(--accent);
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  flex: 0 0 auto;
  transition: width 0.6s ease;
}

/* Blinking cursor — a thin bar, taller than the role text.
   White in dark mode, black in light mode (override below). */
.hero__cursor {
  display: inline-block;
  width: 2px;
  height: 1.3em;           /* taller than the letters, but stays thin */
  margin-left: 6px;
  background: #ffffff;     /* dark mode */
  color: transparent;      /* hide the "|" glyph; the bar is the box itself */
  border-radius: 2px;
  overflow: hidden;
}
[data-theme="light"] .hero__cursor { background: #000000; }
.hero__summary {
  font-size: 1.02rem;
  line-height: 1.82;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero__location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}
.hero__location svg { color: var(--accent); flex-shrink: 0; }

.hero__socials {
  display: flex;
  gap: 10px;
}
.hero__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: all var(--transition);
}
.hero__social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

/* Hero image area */
.hero__visual { position: relative; display: flex; justify-content: center; }

.hero__img-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
}

/* Organic blob shape behind image */
.hero__img-blob {
  position: absolute;
  inset: -12px -12px -12px -12px;
  background: var(--gradient);
  opacity: 0.12;
  border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
  animation: blobMorph 8s ease-in-out infinite;
  z-index: 0;
}
@keyframes blobMorph {
  0%, 100% { border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%; }
  33%       { border-radius: 50% 50% 35% 65% / 55% 40% 60% 45%; }
  66%       { border-radius: 40% 60% 60% 40% / 60% 50% 40% 50%; }
}

/* Orbiting dot around the portrait — ported from the 404 "0" planet */
.hero__orbit {
  position: absolute;
  top: 50%; left: 50%;
  width: 108%;
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
}
.hero__orbit-spin {
  position: absolute;
  inset: 0;
  animation: hero-orbit 7s linear infinite;
}
.hero__planet {
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -50%);
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--accent-light);
  box-shadow: 0 0 18px 2px var(--accent);
}
@keyframes hero-orbit { to { transform: rotate(360deg); } }

/* Second dot — wider ring, orbiting the opposite way and slower */
.hero__orbit--2 { width: 124%; }
.hero__orbit-spin--rev { animation-duration: 11s; animation-direction: reverse; }
.hero__planet--sm {
  width: 10px; height: 10px;
  box-shadow: 0 0 14px 1px var(--accent);
}

/* Orbiting dots are a dark-mode-only flourish */
[data-theme="light"] .hero__orbit { display: none; }

.hero__img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  object-position: top center;
  border-radius: 55% 45% 45% 55% / 45% 45% 55% 55%;
  border: 2px solid rgba(248, 94, 0, 0.2);
}

/* Floating stat badges */
@property --orbit-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@keyframes orbit-border { to { --orbit-angle: 360deg; } }
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.hero__badge {
  position: absolute;
  z-index: 2;
  border-radius: var(--radius);
  padding: 12px 18px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(248, 94, 0, 0.25);
  animation: floatBadge 4s ease-in-out infinite;
  overflow: hidden;
  isolation: isolate;
  background: transparent;
  border: none;
}

/* Spinning conic gradient — the orbiting orange light */
.hero__badge::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 250%; height: 250%;
  transform: translate(-50%, -50%);
  background: conic-gradient(
    from var(--orbit-angle),
    transparent 0deg,
    transparent 55deg,
    rgba(248, 94, 0, 0.85) 80deg,
    #FF7A2A 90deg,
    rgba(248, 94, 0, 0.85) 100deg,
    transparent 130deg,
    transparent 360deg
  );
  animation: orbit-border 6s linear infinite;
  z-index: -2;
}

/* Inner fill — masks the center so only the border glows */
.hero__badge::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: var(--bg-card);
  border-radius: calc(var(--radius) - 2px);
  z-index: -1;
}

.hero__badge--top    { top: 10%; left: -5%; animation-delay: 0s; }
.hero__badge--bottom { bottom: 12%; right: -5%; animation-delay: 2s; }

.hero__badge-num {
  display: block;
  position: relative;
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.hero__badge-text {
  position: relative;
  font-size: 0.72rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Scroll down indicator */
.hero__scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}
.hero__scroll-line {
  display: block;
  width: 2px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  border-radius: 1px;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50%       { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
}


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

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

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 28px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

/* Shimmer top-edge highlight */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Bottom ambient glow on hover */
.service-card::after {
  content: '';
  position: absolute;
  bottom: -60px; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(248, 94, 0, 0.28) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.45s ease, bottom 0.45s ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--border-hover);
  box-shadow: 0 24px 56px rgba(248, 94, 0, 0.16);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after   { opacity: 1; bottom: -20px; }

/* Ghost number — decorative background text */
.service-card__num {
  position: absolute;
  top: 10px; right: 16px;
  font-family: 'Syne', sans-serif;
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.055);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.service-card__icon {
  width: 76px;
  height: 76px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 8px 28px rgba(248, 94, 0, 0.32);
  transition: transform var(--transition), box-shadow var(--transition);
  z-index: 1;
}
.service-card:hover .service-card__icon {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 16px 40px rgba(248, 94, 0, 0.48);
}

.service-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.35;
  z-index: 1;
}

.service-card__desc {
  font-size: 0.845rem;
  line-height: 1.72;
  color: var(--text-secondary);
  flex: 1;
  z-index: 1;
}

/* Glassmorphism — dark mode */
[data-theme="dark"] .services {
  background:
    radial-gradient(ellipse 80% 100% at 0% 60%,  rgba(248, 94, 0, 0.45) 0%, transparent 60%),
    radial-gradient(ellipse 70% 80% at 100% 30%, rgba(99, 102, 241, 0.36) 0%, transparent 55%),
    radial-gradient(ellipse 60% 70% at 50% 100%, rgba(0, 180, 150, 0.20) 0%, transparent 60%),
    var(--bg-surface);
}
[data-theme="dark"] .service-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.16) 0%,
    rgba(255, 255, 255, 0.07) 100%
  );
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
[data-theme="dark"] .service-card:hover {
  border-color: rgba(248, 94, 0, 0.65);
  box-shadow:
    0 20px 52px rgba(248, 94, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
}


/* Stats strip below service cards */
.services__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 40px;
  flex-wrap: wrap;
}

.services__stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 180px;
  justify-content: center;
}

.services__stat-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.services__stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  display: block;
}

.services__stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-top: 3px;
}

.services__stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
  margin: 0 16px;
}

@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .services__stats { padding: 24px 28px; }
}

@media (max-width: 768px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .services__stats {
    padding: 12px 10px;
    gap: 6px;
    margin-top: 24px;
  }
  .services__stat-divider { display: none; }
  .services__stat-item {
    flex: 0 0 calc(50% - 3px);
    min-width: 0;
    justify-content: flex-start;
    background: var(--bg-elevated);
    border-radius: var(--radius-sm);
    padding: 8px 10px;
    gap: 8px;
  }
  .services__stat-icon { width: 30px; height: 30px; border-radius: 7px; flex-shrink: 0; }
  .services__stat-icon svg { width: 14px; height: 14px; }
  .services__stat-num { font-size: 0.9rem; }
  .services__stat-label { font-size: 0.58rem; letter-spacing: 0.2px; margin-top: 2px; }
}

@media (max-width: 480px) {
  .services__grid { grid-template-columns: 1fr; }
  .services__stats { padding: 8px; gap: 5px; }
  .services__stat-item { padding: 7px 8px; gap: 7px; }
  .services__stat-icon { width: 26px; height: 26px; border-radius: 6px; }
  .services__stat-icon svg { width: 12px; height: 12px; }
  .services__stat-num { font-size: 0.82rem; }
  .services__stat-label { font-size: 0.54rem; }
}


/* ─────────────────────────────────────────────────────
   11. ABOUT SECTION
───────────────────────────────────────────────────── */
.about { background: var(--bg-surface); }

.about__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: start;
}
.about__lead {
  font-size: 1.08rem;
  color: var(--text-primary) !important;
  margin-bottom: 20px;
  line-height: 1.8;
}
.about__text p:not(.about__lead) { margin-bottom: 18px; }

.about__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 44px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.stat {
  text-align: center;
  padding: 22px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), transform var(--transition);
}
.stat:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.stat__number {
  display: inline;
  font-family: 'Syne', sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.stat__suffix {
  font-family: 'Syne', sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.stat__label {
  display: block;
  margin-top: 6px;
  font-size: 0.73rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about__details-title { font-size: 1rem; margin-bottom: 22px; }
.about__info-list { border-top: 1px solid var(--border); }
.about__info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}
.about__info-label {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  flex-shrink: 0;
}
.about__info-value {
  font-size: 0.9rem;
  color: var(--text-primary);
  text-align: right;
}
.about__info-link { color: var(--accent); transition: opacity var(--transition); }
.about__info-link:hover { opacity: 0.75; }


/* ─────────────────────────────────────────────────────
   11. SKILLS SECTION — Feature Cards
───────────────────────────────────────────────────── */
.skills__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.skill-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px 44px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

/* Animated gradient top bar */
.skill-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.skill-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 64px rgba(248, 94, 0, 0.14);
  border-color: rgba(248, 94, 0, 0.35);
}

.skill-card:hover::before { transform: scaleX(1); }

.skill-card__icon-wrap {
  width: 72px;
  height: 72px;
  background: var(--accent-glow);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 28px;
  flex-shrink: 0;
  transition: background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}

.skill-card:hover .skill-card__icon-wrap {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 8px 28px rgba(248, 94, 0, 0.38);
}

.skill-card__title {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.3;
}

.skill-card__divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 26px;
}

.skill-card__list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  list-style: none;
}

.skill-card__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color 0.25s ease;
}

.skill-card:hover .skill-card__item { color: var(--text-primary); }

.skill-card__item::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--accent-glow);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F85E00' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid rgba(248, 94, 0, 0.28);
  transition: background-color 0.25s ease;
}

.skill-card:hover .skill-card__item::before {
  background-color: rgba(248, 94, 0, 0.22);
}

.skill-card__badge {
  margin-left: auto;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid rgba(248, 94, 0, 0.3);
  border-radius: 4px;
  padding: 2px 6px;
  flex-shrink: 0;
}


/* ─────────────────────────────────────────────────────
   12. EXPERIENCE / TIMELINE
───────────────────────────────────────────────────── */
.experience { background: var(--bg-surface); }

.timeline {
  position: relative;
  max-width: 840px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 10px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent) 0%, transparent 100%);
}
.timeline__item {
  position: relative;
  padding-left: 62px;
  margin-bottom: 36px;
}
.timeline__item:last-child { margin-bottom: 0; }

.timeline__dot {
  position: absolute;
  left: 11px;
  top: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg-surface);
  box-shadow: 0 0 0 3px rgba(248, 94, 0, 0.2);
  transition: box-shadow var(--transition);
}
.timeline__item:hover .timeline__dot {
  box-shadow: 0 0 0 6px rgba(248, 94, 0, 0.15);
}

.timeline__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 30px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.timeline__card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow);
}

.timeline__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.timeline__role { font-size: 1.05rem; }
.timeline__company { font-size: 0.84rem; font-weight: 600; color: var(--accent); margin-top: 3px; }
.timeline__period {
  display: inline-flex;
  align-items: center;
  background: var(--accent-glow);
  color: var(--accent);
  padding: 4px 13px;
  border-radius: 20px;
  font-size: 0.76rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.timeline__bullets { display: flex; flex-direction: column; gap: 8px; }
.timeline__bullets li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding-left: 18px;
  position: relative;
  line-height: 1.68;
}
.timeline__bullets li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.62rem;
  top: 5px;
}


/* ─────────────────────────────────────────────────────
   13. EDUCATION SECTION
───────────────────────────────────────────────────── */
.education__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.education__col-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.73rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.edu-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 28px;
}
.edu-card__year {
  display: inline-block;
  font-size: 0.73rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.edu-card__degree { font-size: 1rem; margin-bottom: 8px; }
.edu-card__school { font-size: 0.875rem; font-weight: 500; color: var(--text-secondary); margin-bottom: 4px; }
.edu-card__location { font-size: 0.82rem; color: var(--text-secondary); }

.certs__list { display: flex; flex-direction: column; gap: 14px; }
.cert-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  transition: border-color var(--transition), transform var(--transition);
}
.cert-card:hover { border-color: var(--border-hover); transform: translateX(4px); }
.cert-card__year { font-size: 0.7rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; }
.cert-card__title { font-size: 0.9rem; color: var(--text-primary); }
.cert-card__issuer { font-size: 0.8rem; color: var(--text-secondary); }


/* ─────────────────────────────────────────────────────
   14. PROJECTS SECTION
───────────────────────────────────────────────────── */
.projects { background: var(--bg-primary); }

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

.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.project-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: 0 20px 56px rgba(248, 94, 0, 0.12);
}

.project-card__img-link { display: block; }
.project-card__thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

/* Gradient placeholder thumbnails */
.project-thumb-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-thumb-bg svg { opacity: 0.25; }

.project-thumb-bg--1 { background: linear-gradient(135deg, #1c0e05 0%, #2d1608 100%); }
.project-thumb-bg--2 { background: linear-gradient(135deg, #1a1000 0%, #2a1c00 100%); }
.project-thumb-bg--3 { background: linear-gradient(135deg, #1a0800 0%, #2d1200 100%); }
.project-thumb-bg--4 { background: linear-gradient(135deg, #160a02 0%, #281402 100%); }
.project-thumb-bg--5 { background: linear-gradient(135deg, #0e0904 0%, #201508 100%); }
.project-thumb-bg--6 { background: linear-gradient(135deg, #141414 0%, #1f1f1f 100%); }

[data-theme="light"] .project-thumb-bg--1 { background: linear-gradient(135deg, #fff0e6 0%, #ffe0cc 100%); }
[data-theme="light"] .project-thumb-bg--2 { background: linear-gradient(135deg, #fff5e6 0%, #ffe8cc 100%); }
[data-theme="light"] .project-thumb-bg--3 { background: linear-gradient(135deg, #fff3e0 0%, #ffe8cc 100%); }
[data-theme="light"] .project-thumb-bg--4 { background: linear-gradient(135deg, #fff1e6 0%, #fde5d0 100%); }
[data-theme="light"] .project-thumb-bg--5 { background: linear-gradient(135deg, #fff4ed 0%, #fde9da 100%); }
[data-theme="light"] .project-thumb-bg--6 { background: linear-gradient(135deg, #f5f5f5 0%, #ebebeb 100%); }
[data-theme="light"] .project-thumb-bg svg { opacity: 0.15; }

.project-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(248, 94, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.project-card:hover .project-card__overlay { opacity: 1; }
.project-card__overlay span { color: #fff; font-weight: 700; font-size: 0.95rem; }

.project-card__body {
  padding: 22px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.project-card__title { font-size: 0.98rem; margin-bottom: 8px; }
.project-card__desc {
  font-size: 0.845rem;
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}
.project-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}
.project-card__tags li {
  padding: 3px 10px;
  background: var(--accent-glow);
  color: var(--accent);
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.projects__filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.project-card--hidden   { display: none; }
.project-card--collapsed { display: none; }

.projects__load-more-wrap {
  text-align: center;
  margin-top: 48px;
}

.projects__grid--solo .project-card {
  grid-column: 1 / -1;
  max-width: 380px;
  margin: 0 auto;
  width: 100%;
}

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


/* ─────────────────────────────────────────────────────
   15. CONTACT SECTION
───────────────────────────────────────────────────── */
.contact { background: var(--bg-surface); }

.contact__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}

.contact__map {
  margin-top: 60px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.contact__map iframe {
  display: block;
  width: 100%;
  height: 420px;
  filter: grayscale(20%);
}

.contact__info-title { font-size: 1.05rem; margin-bottom: 26px; }
.contact__details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 34px; }

.contact__detail { display: flex; align-items: flex-start; gap: 16px; }
.contact__icon {
  width: 44px;
  height: 44px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  transition: all var(--transition);
}
.contact__detail:hover .contact__icon {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.contact__detail-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-secondary);
  font-weight: 700;
  margin-bottom: 3px;
}
.contact__detail-value { font-size: 0.88rem; color: var(--text-primary); transition: color var(--transition); }
a.contact__detail-value:hover { color: var(--accent); }

.contact__social {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 4px;
}
.social-btn {
  height: 44px;
  padding: 0 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--transition);
}
.social-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

/* Form */
.contact__form { display: flex; flex-direction: column; gap: 20px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form__group { display: flex; flex-direction: column; gap: 7px; }
.form__label { font-size: 0.84rem; font-weight: 600; color: var(--text-primary); }
.form__req { color: var(--accent); }
.form__input, .form__textarea {
  padding: 13px 17px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form__input::placeholder, .form__textarea::placeholder { color: var(--text-secondary); opacity: 0.65; }
.form__input:focus, .form__textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(248, 94, 0, 0.12);
}
.form__textarea { resize: vertical; min-height: 148px; }

.form__result {
  display: none;
  padding: 13px 17px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.5;
}
.form__result:not(:empty) { display: block; }
.form__result--success {
  background: rgba(34, 197, 94, 0.10);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.22);
}
.form__result--error {
  background: rgba(239, 68, 68, 0.10);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.22);
}


/* ─────────────────────────────────────────────────────
   16. FOOTER
───────────────────────────────────────────────────── */
.footer {
  background: #0d0d0d;
  color: #e2e8f0;
  position: relative;
  overflow: hidden;
}

/* Orange gradient top accent bar */
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  z-index: 2;
}

/* Subtle dot-grid texture */
.footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

.footer__main {
  padding: 72px 0 56px;
  position: relative;
  z-index: 1;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 52px;
  align-items: start;
}

/* Brand column */
.footer__brand {}

.footer__logo-wrap {
  display: inline-block;
  margin-bottom: 20px;
  opacity: 0.95;
  transition: opacity 0.2s;
}
.footer__logo-wrap:hover { opacity: 1; }
.footer__logo-wrap img { height: 56px; width: auto; }

.footer__tagline {
  font-size: 0.875rem;
  line-height: 1.75;
  color: #94a3b8;
  margin-bottom: 28px;
  max-width: 270px;
}

/* Social icons */
.footer__social {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #94a3b8;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
}
.footer__social-link svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  flex-shrink: 0;
}
.footer__social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(249,115,22,0.38);
}

/* Available status badge */
.footer__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.22);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #4ade80;
  letter-spacing: 0.04em;
}
.footer__status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: footer-pulse 2s ease-in-out infinite;
}
@keyframes footer-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.45); }
  50%       { box-shadow: 0 0 0 7px rgba(34,197,94,0); }
}

/* Link columns */
.footer__col {}

.footer__col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}

.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer__list a {
  font-size: 0.875rem;
  color: #94a3b8;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0;
  transition: color 0.2s, padding-left 0.2s;
  position: relative;
}
.footer__list a::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  margin-right: 0;
  transition: width 0.2s, margin-right 0.2s;
  flex-shrink: 0;
}
.footer__list a:hover { color: #fff; }
.footer__list a:hover::before { width: 14px; margin-right: 8px; }

/* Contact list */
.footer__contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.6;
}
.footer__contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 1px;
}
.footer__contact-icon svg { width: 15px; height: 15px; fill: currentColor; }
.footer__email {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s;
  word-break: break-all;
}
.footer__email:hover { color: var(--accent); }

/* Divider */
.footer__divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  position: relative;
  z-index: 1;
}

/* Bottom bar */
.footer__bottom-wrap {
  position: relative;
  z-index: 1;
}
.footer__bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__copy {
  font-size: 0.8rem;
  color: #475569;
}
.footer__made {
  font-size: 0.8rem;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer__heart {
  color: #F85E00;
  font-size: 1rem;
  line-height: 1;
}

/* Back-to-top button */
.footer__back-top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.28);
  color: var(--accent);
  text-decoration: none;
  transition: background 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s;
  flex-shrink: 0;
}
.footer__back-top svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}
.footer__back-top:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(249,115,22,0.38);
}


/* ─────────────────────────────────────────────────────
   17. TESTIMONIALS SECTION
───────────────────────────────────────────────────── */
.testimonials { background: var(--bg-primary); }

.testimonials__carousel { position: relative; }

.testimonials__outer {
  overflow: hidden;
  border-radius: var(--radius);
}

.testimonials__track {
  display: flex;
  gap: 24px;
  will-change: transform;
  /* transition set by JS */
}

.testi-card {
  flex: 0 0 calc((100% - 48px) / 3);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color var(--transition), transform var(--transition);
}
.testi-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.testi-stars {
  display: flex;
  gap: 4px;
}
.testi-star {
  color: #F85E00;
}

.testi-quote {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-secondary);
  flex: 1;
  font-style: italic;
  position: relative;
}
.testi-quote::before {
  content: '\201C';
  font-size: 4rem;
  line-height: 0;
  vertical-align: -1.4rem;
  color: var(--accent);
  opacity: 0.25;
  font-style: normal;
  margin-right: 4px;
}

.testi-person {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: auto;
}
.testi-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 2px solid var(--accent);
  flex-shrink: 0;
}
.testi-name {
  font-family: 'Syne', sans-serif;
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 2px;
}
.testi-role {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 500;
  margin: 0;
}

/* Carousel controls */
.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 36px;
}
.testi-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
}
.testi-arrow:hover {
  border-color: var(--accent);
  background: var(--accent-glow);
  color: var(--accent);
}
.testi-dots {
  display: flex;
  gap: 8px;
}
.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: var(--border);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: all 0.35s ease;
}
.testi-dot.is-active {
  background: var(--accent);
  width: 26px;
}

/* Testimonials responsive */
@media (max-width: 900px) {
  .testi-card { flex: 0 0 calc((100% - 24px) / 2); }
}

@media (max-width: 768px) {
  .testi-card {
    padding: 24px 20px;
    gap: 16px;
  }
  .testi-quote { font-size: 0.875rem; }
  .testi-quote::before { font-size: 3.2rem; }
  .testi-arrow { width: 42px; height: 42px; }
  .testimonials__controls { margin-top: 28px; gap: 14px; }
}

@media (max-width: 580px) {
  /* Must be 100% — JS cardWidth() at n=1 = outerWidth exactly */
  .testi-card { flex: 0 0 100%; }
  .testimonials__controls { gap: 10px; }
}

@media (max-width: 480px) {
  .testi-card { padding: 20px 16px; gap: 14px; }
  .testi-quote { font-size: 0.84rem; line-height: 1.7; }
  .testi-quote::before { font-size: 2.8rem; top: -2px; }
  .testi-avatar { width: 42px; height: 42px; }
  .testi-name { font-size: 0.87rem; }
  .testi-role { font-size: 0.73rem; }
  .testi-arrow { width: 40px; height: 40px; }
  .testi-arrow svg { width: 16px; height: 16px; }
  .testimonials__controls { margin-top: 22px; }
}


/* ─────────────────────────────────────────────────────
   18. PRICING SECTION
───────────────────────────────────────────────────── */
.pricing { background: var(--bg-surface); }

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

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px 44px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

/* Gradient top bar */
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Bottom ambient glow */
.pricing-card::after {
  content: '';
  position: absolute;
  bottom: -60px; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(248, 94, 0, 0.28) 0%, transparent 70%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease, bottom 0.45s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
}
.pricing-card:hover::before { transform: scaleX(1); }
.pricing-card:hover::after  { opacity: 1; bottom: -20px; }

/* Ghost number */
.pricing-card__num {
  position: absolute;
  top: 10px; right: 16px;
  font-family: 'Syne', sans-serif;
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.055);
  pointer-events: none;
  user-select: none;
}

/* "Most Popular" badge */
.pricing-card__badge {
  display: inline-block;
  background: rgba(248, 94, 0, 0.18);
  color: var(--accent);
  border: 1px solid rgba(248, 94, 0, 0.28);
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 13px;
  margin-bottom: 16px;
  align-self: flex-start;
}

/* Icon circle */
.pricing-card__icon-wrap {
  width: 76px;
  height: 76px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 18px;
  box-shadow: 0 8px 28px rgba(248, 94, 0, 0.32);
  transition: transform var(--transition), box-shadow var(--transition);
  flex-shrink: 0;
}
.pricing-card:hover .pricing-card__icon-wrap {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 16px 40px rgba(248, 94, 0, 0.48);
}

/* Card title */
.pricing-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.35;
  margin-bottom: 16px;
}

/* Horizontal divider below title */
.pricing-card__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 20px;
}

/* Tier list */
.pricing-card__tiers {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.pricing-tier {
  padding: 12px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.pricing-tier--last { border-bottom: none; }

/* Checkmark bullet */
.pricing-tier__bullet {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  background-color: rgba(248, 94, 0, 0.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F85E00' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid rgba(248, 94, 0, 0.28);
  margin-top: 3px;
}

.pricing-tier__body { display: flex; flex-direction: column; }

.pricing-tier__label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 2px;
}

.pricing-tier__price {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 3px;
}

.pricing-tier__per {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 400;
}

.pricing-tier__desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* CTA button area */
.pricing-card__cta {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.pricing-card__cta .btn {
  width: 100%;
  justify-content: center;
}

/* Footer note */
.pricing__note {
  text-align: center;
  margin-top: 48px;
  font-size: 0.84rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.pricing__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .pricing__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .pricing__grid { grid-template-columns: 1fr; }
  .pricing-card  { padding: 32px 24px 36px; }
}


/* ─────────────────────────────────────────────────────
   19. FAQ SECTION
───────────────────────────────────────────────────── */
.faq { background: #070B13; }

.section__divider--glow {
  box-shadow: 0 0 14px 3px rgba(248, 94, 0, 0.42);
}

.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #0E1522;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.28s ease;
}

.faq-item:hover {
  border-color: rgba(248, 94, 0, 0.35);
}

.faq-item__question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(248, 94, 0, 0.18);
  color: var(--accent);
  font-size: 1.15rem;
  font-weight: 400;
  flex-shrink: 0;
  line-height: 1;
  transition: background 0.28s ease, color 0.28s ease, transform 0.28s ease;
}

.faq-item.is-open .faq-item__icon {
  background: var(--accent);
  color: #fff;
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  transition: max-height 0.35s ease, padding 0.28s ease;
}

.faq-item.is-open .faq-item__answer {
  padding: 0 24px 20px;
}

.faq-item__answer p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0;
}

[data-theme="light"] .faq { background: var(--bg-surface); }
[data-theme="light"] .faq-item { background: #ffffff; border-color: rgba(0, 0, 0, 0.09); }
[data-theme="light"] .faq-item:hover { border-color: rgba(2, 1, 34, 0.25); }
[data-theme="light"] .faq-item__icon { background: rgba(2, 1, 34, 0.10); color: var(--accent); }
[data-theme="light"] .faq-item.is-open .faq-item__icon { background: var(--accent); color: #fff; }

@media (max-width: 768px) {
  .faq__grid { grid-template-columns: 1fr; }
}


/* ─────────────────────────────────────────────────────
   19. RESPONSIVE — TABLET (≤ 1024px)
───────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 52px;
  }
  .hero__content { max-width: 100%; order: 2; }
  .hero__visual  { order: 1; max-width: 280px; margin: 0 auto; }
  .hero__role-line { justify-content: center; }
  .hero__ctas, .hero__meta { justify-content: center; }
  .hero__summary { margin-left: auto; margin-right: auto; }

  .hero__badge--top    { left: 0; }
  .hero__badge--bottom { right: 0; }

  .hero__scroll-down { display: none; }

  .about__inner { grid-template-columns: 1fr; gap: 52px; }
  .skills__cards { grid-template-columns: 1fr; gap: 20px; }
  .education__inner { grid-template-columns: 1fr; gap: 52px; }
  .projects__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__inner { grid-template-columns: 1fr; gap: 52px; }
  .footer__grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
  .footer__brand { grid-column: 1 / -1; }
}


/* ─────────────────────────────────────────────────────
   18. RESPONSIVE — MOBILE (≤ 768px)
───────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero__role-line { font-weight: 900; }
  .section { padding: 80px 0; }
  .section__header { margin-bottom: 50px; }
  .nav__links { display: none; }
  .hamburger  { display: flex; }

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

  .timeline::before { left: 9px; }
  .timeline__item   { padding-left: 40px; }
  .timeline__dot    { left: 1px; }
  .timeline__header { flex-direction: column; align-items: flex-start; }

  .projects__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__bottom { flex-direction: column; text-align: center; gap: 12px; }
}


/* ─────────────────────────────────────────────────────
   19. RESPONSIVE — SMALL MOBILE (≤ 480px)
───────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__name { white-space: normal; }
  .hero__role-line { font-weight: 900; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; justify-content: center; }
  .about__stats { grid-template-columns: 1fr 1fr; gap: 10px; }
  .timeline__card { padding: 18px; }
  .hero__badge { display: block; padding: 8px 12px; }
  .hero__badge--top    { top: 5%; left: -20px; }
  .hero__badge--bottom { bottom: 5%; right: -2%; }
  .hero__badge-num  { font-size: 1.1rem; }
  .hero__badge-text { font-size: 0.65rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__main { padding: 52px 0 40px; }
  .footer__tagline { max-width: 100%; }
}


/* ─────────────────────────────────────────────────────
   20. ACCESSIBILITY
───────────────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-animate] { opacity: 1 !important; transform: none !important; }
  .skill-card, .skill-card::before, .skill-card__icon-wrap { transition: none !important; }
}


/* ═══════════════════════════════════════════════════════
   BLOG — shared component styles
   Used on: index.html (blog preview), blog.html, blog/post.html
═══════════════════════════════════════════════════════ */

/* ─── Blog category colour tokens ─── */
.blog-cat--wp     { --cat-color: #F85E00; --cat-bg: rgba(248, 94, 0,0.12); }
.blog-cat--seo    { --cat-color: #22c55e; --cat-bg: rgba(34,197,94,0.12);  }
.blog-cat--design { --cat-color: #a78bfa; --cat-bg: rgba(167,139,250,0.12);}

/* ─── Blog card ─── */
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.blog-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: 0 24px 60px rgba(248, 94, 0,0.13);
}

/* Thumbnail */
.blog-card__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.blog-thumb-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}
.blog-card:hover .blog-thumb-bg { transform: scale(1.04); }
.blog-thumb-bg--wp     { background: linear-gradient(135deg, #1c0e05 0%, #3d1e00 100%); }
.blog-thumb-bg--seo    { background: linear-gradient(135deg, #021a0e 0%, #063d1c 100%); }
.blog-thumb-bg--design { background: linear-gradient(135deg, #100820 0%, #1e0f3c 100%); }

[data-theme="light"] .blog-thumb-bg--wp     { background: linear-gradient(135deg, #fff0e6 0%, #ffd9b5 100%); }
[data-theme="light"] .blog-thumb-bg--seo    { background: linear-gradient(135deg, #e8fff3 0%, #b5ffd8 100%); }
[data-theme="light"] .blog-thumb-bg--design { background: linear-gradient(135deg, #f3eeff 0%, #ddd0ff 100%); }

.blog-thumb-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.blog-thumb-decor::before,
.blog-thumb-decor::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
}
.blog-thumb-decor::before {
  width: 200px; height: 200px;
  top: -60px; right: -60px;
  background: var(--cat-color, var(--accent));
  filter: blur(40px);
}
.blog-thumb-decor::after {
  width: 130px; height: 130px;
  bottom: -40px; left: -30px;
  background: var(--cat-color, var(--accent));
  filter: blur(30px);
}
.blog-thumb-icon {
  position: relative;
  z-index: 1;
  opacity: 0.22;
}

.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}
.blog-card:hover .blog-card__img { transform: scale(1.04); }

/* Post featured image (inside blog post pages) */
.post-featured-img {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin-bottom: 2.5rem;
}
.post-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-card__cat {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--cat-bg);
  color: var(--cat-color);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
}
[data-theme="light"] .blog-card__cat {
  border-color: rgba(0,0,0,0.06);
}

/* Body */
.blog-card__body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.76rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.blog-card__meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
}
.blog-card__title {
  font-size: 1.05rem;
  margin-bottom: 10px;
  line-height: 1.4;
  transition: color var(--transition);
}
.blog-card:hover .blog-card__title { color: var(--accent); }
.blog-card__excerpt {
  font-size: 0.86rem;
  line-height: 1.7;
  margin-bottom: 18px;
  flex: 1;
}
.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--accent);
  transition: gap var(--transition);
  margin-top: auto;
}
.blog-card:hover .blog-card__link { gap: 10px; }


/* ─────────────────────────────────────────────────────
   BLOG PREVIEW — homepage section
───────────────────────────────────────────────────── */
#blog { background: var(--bg-surface); }

.blog-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-preview__footer {
  text-align: center;
  margin-top: 52px;
}

@media (max-width: 1024px) {
  .blog-preview__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .blog-preview__grid { grid-template-columns: 1fr; }
}


/* ─────────────────────────────────────────────────────
   BLOG LISTING PAGE (blog.html)
───────────────────────────────────────────────────── */
.blog-page-hero {
  padding: 100px 0 80px;
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.blog-page-hero::before {
  content: '';
  position: absolute;
  top: -30%; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(248, 94, 0,0.09) 0%, transparent 70%);
  pointer-events: none;
}
.blog-page-hero h1 { margin-bottom: 14px; }
.blog-page-hero p  { max-width: 520px; margin: 0 auto; font-size: 1.04rem; }

/* Filter pills */
.blog-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 24px;
  font-size: 0.84rem;
  font-weight: 600;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover,
.filter-btn.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* Blog grid */
.blog-listing {
  padding: 80px 0 110px;
}
.blog-listing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}
.blog-listing__more {
  text-align: center;
}

@media (max-width: 1024px) {
  .blog-listing__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .blog-listing__grid { grid-template-columns: 1fr; }
}


/* ─────────────────────────────────────────────────────
   SINGLE POST PAGE
───────────────────────────────────────────────────── */

/* Reading progress bar */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  height: 3px;
  width: 0%;
  background: var(--gradient);
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* Post hero */
.post-hero {
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.post-hero--wp     { background: linear-gradient(135deg, #120800 0%, #1e0f00 100%); }
.post-hero--seo    { background: linear-gradient(135deg, #020f08 0%, #041a0e 100%); }
.post-hero--design { background: linear-gradient(135deg, #080412 0%, #10071e 100%); }

[data-theme="light"] .post-hero--wp     { background: linear-gradient(135deg, #fff5ec 0%, #ffeacc 100%); }
[data-theme="light"] .post-hero--seo    { background: linear-gradient(135deg, #f0fff6 0%, #dcffec 100%); }
[data-theme="light"] .post-hero--design { background: linear-gradient(135deg, #f8f4ff 0%, #ede4ff 100%); }

.post-hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.post-hero__glow::before {
  content: '';
  position: absolute;
  top: -40%; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--cat-glow) 0%, transparent 65%);
}
.post-hero--wp     { --cat-glow: rgba(248, 94, 0,0.12); }
.post-hero--seo    { --cat-glow: rgba(34,197,94,0.12);  }
.post-hero--design { --cat-glow: rgba(167,139,250,0.12);}

.post-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}
.post-hero__cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.post-hero--wp     .post-hero__cat { background: rgba(248, 94, 0,0.15); color: #F85E00; border: 1px solid rgba(248, 94, 0,0.3); }
.post-hero--seo    .post-hero__cat { background: rgba(34,197,94,0.15);  color: #22c55e; border: 1px solid rgba(34,197,94,0.3); }
.post-hero--design .post-hero__cat { background: rgba(167,139,250,0.15);color: #a78bfa; border: 1px solid rgba(167,139,250,0.3); }

.post-hero__title {
  font-size: clamp(1.7rem, 4.5vw, 3rem);
  margin-bottom: 24px;
  line-height: 1.2;
}
.post-hero__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--text-secondary);
}
.post-hero__meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Post layout: article + sidebar */
.post-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 60px;
  align-items: start;
  padding: 70px 0 100px;
}

/* Article body */
.post-body {
  min-width: 0;
}
.post-body h2 {
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  margin: 48px 0 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.post-body h3 {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  margin: 32px 0 14px;
  color: var(--text-primary);
}
.post-body p {
  font-size: 1.02rem;
  line-height: 1.85;
  margin-bottom: 22px;
  color: var(--text-secondary);
}
.post-body p:first-of-type { font-size: 1.1rem; color: var(--text-primary); }
.post-body strong { color: var(--text-primary); }
.post-body a { color: var(--accent); border-bottom: 1px solid var(--accent-glow); transition: border-color var(--transition); }
.post-body a:hover { border-color: var(--accent); }

.post-body ul,
.post-body ol {
  margin: 0 0 22px 0;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.post-body ul li,
.post-body ol li {
  font-size: 1rem;
  color: var(--text-secondary);
  padding-left: 22px;
  position: relative;
  line-height: 1.72;
  list-style: none;
}
.post-body ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.65rem;
  top: 6px;
}
.post-body ol { counter-reset: ol-counter; }
.post-body ol li { counter-increment: ol-counter; }
.post-body ol li::before {
  content: counter(ol-counter) '.';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  top: 1px;
}

/* Blockquote */
.post-body blockquote {
  margin: 32px 0;
  padding: 22px 26px;
  background: var(--bg-elevated);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.post-body blockquote p {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 0;
}

/* Tip box */
.post-tip {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  background: var(--accent-glow);
  border: 1px solid rgba(248, 94, 0,0.2);
  border-radius: var(--radius);
  margin: 28px 0;
}
.post-tip__icon { font-size: 1.2rem; flex-shrink: 0; line-height: 1.6; }
.post-tip__text { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.75; }
.post-tip__text strong { color: var(--text-primary); }

/* Number step */
.post-steps { display: flex; flex-direction: column; gap: 24px; margin: 28px 0; }
.post-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.post-step__num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.post-step__content h4 { margin-bottom: 6px; font-size: 1rem; }
.post-step__content p  { font-size: 0.9rem; margin-bottom: 0; }

/* Divider */
.post-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 40px 0;
}

/* Tags */
.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.post-tag {
  padding: 5px 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  transition: all var(--transition);
}
.post-tag:hover { border-color: var(--accent); color: var(--accent); }

/* Author card */
.post-author {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-top: 48px;
}
.post-author__avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  overflow: hidden;
}
.post-author__avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.post-author__name { font-size: 1rem; margin-bottom: 4px; }
.post-author__role { font-size: 0.78rem; color: var(--accent); font-weight: 600; margin-bottom: 10px; }
.post-author__bio  { font-size: 0.875rem; line-height: 1.7; }

/* Sidebar TOC */
.post-sidebar {
  position: sticky;
  top: 100px;
}
.post-toc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}
.post-toc__title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.post-toc__list { display: flex; flex-direction: column; gap: 0; }
.post-toc__link {
  display: block;
  padding: 7px 10px;
  font-size: 0.84rem;
  color: var(--text-secondary);
  border-radius: var(--radius-xs);
  border-left: 2px solid transparent;
  transition: all var(--transition);
  line-height: 1.4;
}
.post-toc__link:hover,
.post-toc__link.is-active {
  color: var(--accent);
  border-left-color: var(--accent);
  background: var(--accent-glow);
}
.post-toc__link--sub {
  padding-left: 22px;
  font-size: 0.8rem;
}

/* Share buttons */
.post-share {
  margin-top: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.post-share__title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}
.post-share__btns { display: flex; flex-direction: column; gap: 8px; }
.share-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  transition: all var(--transition);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text-secondary);
}
.share-btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* Related posts */
.related-posts {
  padding: 80px 0 110px;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}
.related-posts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Post layout responsive */
@media (max-width: 1024px) {
  .post-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .post-sidebar { position: static; }
  .post-toc { display: none; }
  .related-posts__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .post-hero { padding: 70px 0 50px; }
  .post-layout { padding: 48px 0 80px; }
  .related-posts__grid { grid-template-columns: 1fr; }
  .post-author { flex-direction: column; align-items: flex-start; }
}


/* ═══════════════════════════════════════════════════════
   21. DARK MODE ENHANCEMENTS
   Cinematic deep-space feel — warm orange + cool indigo accent lighting
═══════════════════════════════════════════════════════ */

/* Ambient radial gradients on body background */
[data-theme="dark"] body {
  background-image:
    radial-gradient(ellipse 80% 38% at 50% 0%,   rgba(248, 94, 0, 0.055) 0%, transparent 65%),
    radial-gradient(ellipse 55% 35% at 92% 55%,  rgba(99, 102, 241, 0.048) 0%, transparent 58%),
    radial-gradient(ellipse 42% 28% at 6%  80%,  rgba(248, 94, 0, 0.030) 0%, transparent 55%);
}

/* Film grain noise — subtle cinematic texture */
[data-theme="dark"] body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.026;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
}

/* Hero image — orange glow border */
[data-theme="dark"] .hero__img {
  border-color: rgba(248, 94, 0, 0.38);
  box-shadow: 0 0 40px rgba(248, 94, 0, 0.12), 0 0 80px rgba(248, 94, 0, 0.06);
}
[data-theme="dark"] .hero__img-blob { opacity: 0.22; }

/* Floating stat badges — deep shadow + orange rim */
[data-theme="dark"] .hero__badge {
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.60), 0 0 0 1px rgba(248, 94, 0, 0.12);
}

/* Scroll-down line glow */
[data-theme="dark"] .hero__scroll-line {
  box-shadow: 0 0 10px rgba(248, 94, 0, 0.55);
}

/* Section divider bar glow */
[data-theme="dark"] .section__divider {
  box-shadow: 0 0 10px rgba(248, 94, 0, 0.60), 0 0 40px rgba(248, 94, 0, 0.22);
}

/* Section label letter glow */
[data-theme="dark"] .section__label {
  text-shadow: 0 0 18px rgba(248, 94, 0, 0.50);
}

/* Header — deeper glow when scrolled */
[data-theme="dark"] .site-header.is-scrolled {
  box-shadow: 0 2px 28px rgba(0, 0, 0, 0.72), 0 1px 0 rgba(248, 94, 0, 0.10);
}

/* Primary button — resting + hover glow */
[data-theme="dark"] .btn--primary {
  box-shadow: 0 4px 18px rgba(248, 94, 0, 0.28);
}
[data-theme="dark"] .btn--primary:hover,
[data-theme="dark"] .btn--primary:focus-visible {
  box-shadow: 0 8px 36px rgba(248, 94, 0, 0.52);
}

/* Skill cards — boosted hover glow */
[data-theme="dark"] .skill-card:hover {
  box-shadow: 0 24px 64px rgba(248, 94, 0, 0.20), 0 0 0 1px rgba(248, 94, 0, 0.42);
}

/* Project cards — boosted hover glow */
[data-theme="dark"] .project-card:hover {
  box-shadow: 0 24px 64px rgba(248, 94, 0, 0.16), 0 0 0 1px rgba(248, 94, 0, 0.36);
}

/* Timeline vertical line glow */
[data-theme="dark"] .timeline::before {
  background: linear-gradient(to bottom, rgba(248, 94, 0, 0.75) 0%, transparent 100%);
}
[data-theme="dark"] .timeline__dot {
  box-shadow: 0 0 0 3px rgba(248, 94, 0, 0.28), 0 0 14px rgba(248, 94, 0, 0.35);
}

/* Testimonial cards — hover glow */
[data-theme="dark"] .testi-card:hover {
  box-shadow: 0 12px 44px rgba(248, 94, 0, 0.13);
}

/* About section stat cards */
[data-theme="dark"] .stat:hover {
  box-shadow: 0 8px 32px rgba(248, 94, 0, 0.14);
}

/* Cert cards */
[data-theme="dark"] .cert-card:hover {
  box-shadow: 4px 0 20px rgba(248, 94, 0, 0.12);
}

/* Section ambient radial lighting */
[data-theme="dark"] .about {
  background-image: radial-gradient(ellipse 55% 40% at 0% 50%,   rgba(248, 94, 0, 0.042) 0%, transparent 60%);
}
[data-theme="dark"] .skills {
  background-image: radial-gradient(ellipse 60% 45% at 100% 50%, rgba(99, 102, 241, 0.042) 0%, transparent 60%);
}
[data-theme="dark"] .experience {
  background-image: radial-gradient(ellipse 50% 38% at 25% 65%,  rgba(248, 94, 0, 0.035) 0%, transparent 55%);
}
[data-theme="dark"] .testimonials {
  background-image: radial-gradient(ellipse 55% 45% at 75% 40%,  rgba(99, 102, 241, 0.038) 0%, transparent 58%);
}

/* Pricing section — ambient radial lighting */
[data-theme="dark"] .pricing {
  background:
    radial-gradient(ellipse 80% 100% at 0% 60%,  rgba(248, 94, 0, 0.45) 0%, transparent 60%),
    radial-gradient(ellipse 70% 80% at 100% 30%, rgba(99, 102, 241, 0.36) 0%, transparent 55%),
    radial-gradient(ellipse 60% 70% at 50% 100%, rgba(0, 180, 150, 0.20) 0%, transparent 60%),
    var(--bg-surface);
}

/* Pricing cards — glassmorphism */
[data-theme="dark"] .pricing-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.16) 0%,
    rgba(255, 255, 255, 0.07) 100%
  );
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
[data-theme="dark"] .pricing-card:hover {
  border-color: rgba(248, 94, 0, 0.65);
  box-shadow:
    0 20px 52px rgba(248, 94, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
}
[data-theme="dark"] .pricing-card--featured {
  border-color: rgba(248, 94, 0, 0.65);
  box-shadow:
    0 8px 40px rgba(248, 94, 0, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
[data-theme="dark"] .pricing-card__num {
  color: rgba(255, 255, 255, 0.055);
}
[data-theme="dark"] .contact {
  background-image: radial-gradient(ellipse 60% 42% at 50% 0%,   rgba(248, 94, 0, 0.038) 0%, transparent 58%);
}
[data-theme="dark"] #blog {
  background-image: radial-gradient(ellipse 55% 40% at 50% 100%, rgba(99, 102, 241, 0.038) 0%, transparent 60%);
}


/* ─────────────────────────────────────────────────────
   LIGHT MODE — DARK BACKGROUND BEHIND HERO PORTRAIT
   Only the blob circle behind the person photo goes dark.
───────────────────────────────────────────────────── */

[data-theme="light"] .hero__img-blob {
  background: #FA650B;
  opacity: 0.92;
  inset: 0;
}

[data-theme="light"] .hero__img {
  border-color: rgba(0, 0, 0, 0.85);
}

[data-theme="light"] .hero__img-blob {
  background: #020122;
  opacity: 0.85;
}


/* ─────────────────────────────────────────────────────
   LIGHT MODE — Replace all hardcoded orange with #020122
───────────────────────────────────────────────────── */

/* Buttons */
[data-theme="light"] .btn--primary:hover,
[data-theme="light"] .btn--primary:focus-visible {
  box-shadow: 0 8px 28px rgba(2, 1, 34, 0.25);
}

/* Nav CTA pill */
[data-theme="light"] .nav__link--cta {
  background: rgba(2, 1, 34, 0.07);
  border-color: rgba(2, 1, 34, 0.18);
}
[data-theme="light"] .nav__link--cta:hover {
  background: var(--gradient);
  border-color: transparent;
  color: #fff;
}

/* Hero badge shadow */
[data-theme="light"] .hero__badge {
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.22);
}
/* Orbiting glow → indigo in light mode (orange reads wrong on white) */
[data-theme="light"] .hero__badge::before {
  background: conic-gradient(
    from var(--orbit-angle),
    transparent 0deg,
    transparent 55deg,
    rgba(99, 102, 241, 0.85) 80deg,
    #818cf8 90deg,
    rgba(99, 102, 241, 0.85) 100deg,
    transparent 130deg,
    transparent 360deg
  );
}

/* Service cards */
[data-theme="light"] .service-card:hover {
  box-shadow: 0 20px 48px rgba(2, 1, 34, 0.10);
}
/* Remove circular ambient glow behind card content */
[data-theme="light"] .service-card::after {
  display: none;
}
/* Remove circular shadow behind the round icon */
[data-theme="light"] .service-card__icon,
[data-theme="light"] .service-card:hover .service-card__icon {
  box-shadow: none;
}

/* Skill cards */
[data-theme="light"] .skill-card:hover {
  box-shadow: 0 28px 64px rgba(2, 1, 34, 0.10);
  border-color: rgba(2, 1, 34, 0.25);
}
[data-theme="light"] .skill-card:hover .skill-card__icon-wrap {
  box-shadow: 0 8px 28px rgba(2, 1, 34, 0.22);
}
[data-theme="light"] .skill-card__item::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23020122' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  border-color: rgba(2, 1, 34, 0.22);
}
[data-theme="light"] .skill-card:hover .skill-card__item::before {
  background-color: rgba(2, 1, 34, 0.08);
}
[data-theme="light"] .skill-card__badge {
  border-color: rgba(2, 1, 34, 0.18);
}

/* Timeline dots */
[data-theme="light"] .timeline__dot {
  box-shadow: 0 0 0 3px rgba(2, 1, 34, 0.15);
}
[data-theme="light"] .timeline__item:hover .timeline__dot {
  box-shadow: 0 0 0 6px rgba(2, 1, 34, 0.10);
}

/* Project cards */
[data-theme="light"] .project-card:hover {
  box-shadow: 0 20px 56px rgba(2, 1, 34, 0.10);
}
[data-theme="light"] .project-card__overlay {
  background: rgba(2, 1, 34, 0.90);
}

/* Project thumb backgrounds — navy tint */
[data-theme="light"] .project-thumb-bg--1 { background: linear-gradient(135deg, #eeeef8 0%, #ddddf0 100%); }
[data-theme="light"] .project-thumb-bg--2 { background: linear-gradient(135deg, #f0f0f9 0%, #e0dff5 100%); }
[data-theme="light"] .project-thumb-bg--3 { background: linear-gradient(135deg, #ededf7 0%, #ddddf0 100%); }
[data-theme="light"] .project-thumb-bg--4 { background: linear-gradient(135deg, #eeeef8 0%, #e0dff5 100%); }
[data-theme="light"] .project-thumb-bg--5 { background: linear-gradient(135deg, #f2f2fa 0%, #e5e4f5 100%); }

/* Form focus ring */
[data-theme="light"] .form__input:focus,
[data-theme="light"] .form__textarea:focus {
  box-shadow: 0 0 0 3px rgba(2, 1, 34, 0.10);
}

/* Blog card hover shadow */
[data-theme="light"] .blog-card:hover {
  box-shadow: 0 24px 60px rgba(2, 1, 34, 0.10);
}

/* Blog page hero glow */
[data-theme="light"] .blog-page-hero::before {
  background: radial-gradient(circle, rgba(2, 1, 34, 0.06) 0%, transparent 70%);
}

/* Blog WP category colour token */
[data-theme="light"] .blog-cat--wp {
  --cat-color: #020122;
  --cat-bg: rgba(2, 1, 34, 0.10);
}


/* ─── Footer — light mode ───
   Light background; text, icons and logo flip to the navy accent
   (#020122) — the same colour as the typed role text in the hero. */
[data-theme="light"] .footer {
  background: #ffffff;
  color: #020122;
}
/* No top accent bar in light mode */
[data-theme="light"] .footer::before {
  display: none;
}
/* Dot-grid texture: dark dots so it reads on a light background */
[data-theme="light"] .footer::after {
  background-image: radial-gradient(circle, rgba(2, 1, 34, 0.05) 1px, transparent 1px);
}
/* Muted secondary text */
[data-theme="light"] .footer__tagline,
[data-theme="light"] .footer__contact-item,
[data-theme="light"] .footer__copy,
[data-theme="light"] .footer__made {
  color: rgba(2, 1, 34, 0.6);
}
/* Nav-style links */
[data-theme="light"] .footer__list a,
[data-theme="light"] .footer__email {
  color: rgba(2, 1, 34, 0.7);
}
[data-theme="light"] .footer__list a:hover,
[data-theme="light"] .footer__email:hover {
  color: #020122;
}
/* Social icons */
[data-theme="light"] .footer__social-link {
  background: rgba(2, 1, 34, 0.05);
  border-color: rgba(2, 1, 34, 0.12);
  color: #020122;
}
[data-theme="light"] .footer__social-link:hover {
  background: #020122;
  border-color: #020122;
  color: #fff;
  box-shadow: 0 10px 24px rgba(2, 1, 34, 0.28);
}
/* Contact icons */
[data-theme="light"] .footer__contact-icon {
  background: rgba(2, 1, 34, 0.07);
  border-color: rgba(2, 1, 34, 0.18);
  color: #020122;
}
/* Back-to-top */
[data-theme="light"] .footer__back-top {
  background: rgba(2, 1, 34, 0.07);
  border-color: rgba(2, 1, 34, 0.18);
  color: #020122;
}
[data-theme="light"] .footer__back-top:hover {
  background: #020122;
  border-color: #020122;
  color: #fff;
  box-shadow: 0 10px 24px rgba(2, 1, 34, 0.28);
}
/* Divider */
[data-theme="light"] .footer__divider {
  background: rgba(2, 1, 34, 0.1);
}
/* "Made with" heart matches the navy accent */
[data-theme="light"] .footer__heart {
  color: #020122 !important;
}

/* Pricing cards — light mode */
[data-theme="light"] .pricing-card {
  background: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
[data-theme="light"] .pricing-card:hover {
  border-color: rgba(2, 1, 34, 0.4);
  box-shadow: var(--shadow-lg);
}
[data-theme="light"] .pricing-card--featured {
  border-color: rgba(2, 1, 34, 0.25);
}
[data-theme="light"] .pricing-card__divider {
  background: var(--border);
}
[data-theme="light"] .pricing-tier {
  border-bottom-color: var(--border);
}
[data-theme="light"] .pricing-card__cta {
  border-top-color: var(--border);
}
[data-theme="light"] .pricing-card__num {
  color: rgba(0, 0, 0, 0.04);
}
[data-theme="light"] .pricing-card::after {
  display: none;
}
[data-theme="light"] .pricing-card__icon-wrap,
[data-theme="light"] .pricing-card:hover .pricing-card__icon-wrap {
  box-shadow: none;
}

