*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
:root {
  /* Deep matte black base with a subtle dark red/burgundy glow and warm
     orange-red accents. Old variable names kept so every existing
     reference cascades cleanly into the new system. */
  --black: #000000;      /* primary base — deep matte black */
  --dark: #0A0505;       /* elevated section surface — near-black, warm */
  --dark2: #120808;      /* glass / card surface */
  --dark3: #1A0D0D;      /* interactive / featured surface */
  --white: #F5F1EE;      /* warm soft white text, not pure white */
  --grey: #A89892;       /* muted warm-grey text */
  --light-grey: #E8DDD8; /* secondary light text */
  --card-dark: #0D0606;
  --card-border: rgba(255,90,54,0.14);

  --red: #FF5A36;        /* primary accent — warm orange-red */
  --red-dark: #8B1E1E;   /* deep burgundy */
  --red-light: #FF8A5C;  /* soft/highlight orange-red */

  --teal: #FF5A36;       /* primary accent (var name kept for compatibility) */
  --teal-glow: rgba(139,20,20,0.35); /* burgundy glow */

  --purple: #C2452F;     /* supporting warm burgundy-red */
  --purple-glow: rgba(194,69,47,0.20);

  --pink: #FF7A47;       /* warm coral-orange, used sparingly */
  --gold: #D9822B;
  --gold-glow: rgba(217,130,43,0.22);

  --burgundy-glow: 0 0 40px rgba(139,20,20,0.35), 0 0 80px rgba(255,90,54,0.08);
}
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scrollbar-gutter: stable; }
html, body { scroll-padding-top: 80px; }
body { font-family: 'Inter', sans-serif; background: var(--black); color: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }

/* ── LOADING SCREEN ── */
#loading-screen {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  background: var(--black);
  opacity: 1; transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
#loading-screen.hide { opacity: 0; transform: translateY(-40px); pointer-events: none; }
#loading-inner {
  display: flex; flex-direction: column; align-items: center; gap: 32px;
  width: 100%; max-width: 440px; padding: 0 24px;
}
#loading-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  font-weight: 700; letter-spacing: 0.02em;
  color: var(--white); white-space: nowrap;
  display: flex; justify-content: center;
}
#loading-name span {
  display: inline-block;
  opacity: 0; transform: translateY(12px);
  animation: loadingLetterIn 0.5s ease forwards;
}
@keyframes loadingLetterIn { to { opacity: 1; transform: translateY(0); } }
#loading-bar-wrap { width: 100%; }
#loading-bar-track {
  width: 100%; height: 3px; border-radius: 2px;
  background: rgba(255,255,255,0.08); overflow: hidden;
}
#loading-bar-fill {
  height: 100%; width: 0%; border-radius: 2px;
  background: linear-gradient(90deg, var(--teal), var(--pink));
  box-shadow: 0 0 12px var(--teal-glow);
}
#loading-percent {
  margin-top: 10px; text-align: right;
  font-family: 'Space Grotesk', monospace; font-size: 0.8rem;
  color: var(--grey); letter-spacing: 0.05em;
}

/* ── HERO GLOBE (real wireframe sphere, rendered via three-scene.js) ── */
#hero-glob {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden; pointer-events: none;
}
#hero-glob canvas { display: block; width: 100% !important; height: 100% !important; }
/* On phones the globe was rendered edge-to-edge across the whole hero
   section, which reads as a messy stretched smear behind the text.
   Shrink it into a centered, well-proportioned circle instead. */
@media (max-width: 768px) {
  #hero-glob {
    inset: auto;
    top: 50%; left: 50%;
    width: min(78vw, 320px);
    height: min(78vw, 320px);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    opacity: 0.55;
  }
}
@media (max-width: 480px) {
  #hero-glob {
    width: min(70vw, 260px);
    height: min(70vw, 260px);
    opacity: 0.45;
  }
}
.hero-star {
  position: absolute; width: 2px; height: 2px; border-radius: 50%;
  background: #fff; opacity: 0.6;
}

/* ── ABOUT PHOTO FRAME (glow border + corner accents) ── */
.about-img-frame {
  position: relative; border-radius: 20px; overflow: hidden;
  order: 1; width: 100%;
}
.about-img-glow {
  position: absolute; inset: -1px; z-index: 2; border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,90,54,0.65), rgba(255,90,54,0.15) 55%, transparent 80%);
  pointer-events: none;
}
.about-img-frame .about-img {
  position: relative; z-index: 1;
  border: none;
  filter: grayscale(70%);
  transition: filter 0.6s ease;
}
.about-img-frame:hover .about-img,
.about-img-frame:active .about-img { filter: grayscale(0%); }
.about-img-corner {
  position: absolute; z-index: 3; width: 30px; height: 30px;
  transition: width 0.3s ease, height 0.3s ease;
  pointer-events: none;
}
.about-img-corner-tl { top: 10px; left: 10px; border-top: 2px solid var(--teal); border-left: 2px solid var(--teal); }
.about-img-corner-br { bottom: 10px; right: 10px; border-bottom: 2px solid var(--teal); border-right: 2px solid var(--teal); }
.about-img-frame:hover .about-img-corner { width: 46px; height: 46px; }

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 40px;
  background: rgba(10,10,10,0.85); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05); transition: all 0.3s;
}
.nav-logo { font-family: 'Space Grotesk', sans-serif; font-size: 1.2rem; font-weight: 700; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { font-size: 0.88rem; color: var(--light-grey); transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-social-links { display: flex; gap: 14px; }
.nav-social-links a { color: var(--grey); font-size: 1rem; transition: color 0.2s; }
.nav-social-links a:hover { color: var(--white); }
.btn-hire {
  background: var(--white); color: var(--black);
  padding: 9px 22px; border-radius: 50px; font-size: 0.85rem; font-weight: 600;
  transition: all 0.2s;
}
.btn-hire:hover { background: var(--red); color: var(--white); }

/* ── LEFT ICONS ── */
.left-icons {
  position: fixed; left: 20px; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 18px; z-index: 100;
}
.left-icons a { color: var(--grey); font-size: 1rem; transition: color 0.2s; }
.left-icons a:hover { color: var(--white); }

/* ── HERO ── */
#home {
  min-height: 100vh; background: #000000;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-bg-text {
  position: absolute; top: 50%; left: 0; right: 0; transform: translateY(-50%);
  width: 100%; text-align: center; margin: 0 auto;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(70px, 18vw, 240px); font-weight: 900;
  color: rgba(255,255,255,0.05);
  white-space: nowrap;
  user-select: none; pointer-events: none; letter-spacing: 2px;
  z-index: 1; line-height: 1;
}
.hero-inner {
  display: flex; align-items: flex-end; justify-content: flex-start;
  padding: 120px 60px 0; position: relative; z-index: 2; gap: 32px;
  flex-wrap: wrap;
}
.hero-inner-centered {
  align-items: center; justify-content: center;
  padding: 140px 24px 60px; text-align: center;
}
.hero-content { flex: 0 0 auto; max-width: 480px; padding-bottom: 60px; }
.hero-content-centered { max-width: 720px; padding-bottom: 0; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,90,54,0.1); border: 1px solid rgba(255,90,54,0.3);
  border-radius: 50px;
  padding: 6px 14px; font-size: 0.78rem; color: rgba(255,255,255,0.85); margin-bottom: 24px;
  animation: fadeInDown 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  opacity: 0;
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-tag span { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero-title { 
  font-family: 'Space Grotesk', sans-serif; 
  font-size: clamp(2rem,5vw,3.2rem); 
  font-weight: 700; 
  line-height: 1.1; 
  margin-bottom: 8px;
  animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s forwards;
  opacity: 0;
}
.hero-subtitle { 
  font-size: clamp(1.4rem,3vw,2rem); 
  color: rgba(255,255,255,0.9); 
  font-weight: 400; 
  margin-bottom: 16px; 
  min-height: 48px;
  animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
  opacity: 0;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.typed-cursor { color: var(--white); animation: blink 0.7s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
.hero-open-to {
  display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: center;
  background: rgba(217,130,43,0.1); border: 1px solid rgba(217,130,43,0.35);
  color: var(--gold); border-radius: 50px; padding: 8px 18px; font-size: 0.82rem; font-weight: 600;
  margin-bottom: 18px; max-width: 640px;
}
.hero-open-to i { font-size: 0.9rem; }

/* ── CV DOWNLOAD DROPDOWN ── */
.cv-dropdown { position: relative; display: inline-block; }
.cv-dropdown-btn { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; font-family: inherit; }
.cv-caret { font-size: 0.7rem; margin-left: 2px; transition: transform 0.2s; }
.cv-dropdown.open .cv-caret { transform: rotate(180deg); }
.cv-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: #1a1210; border: 1px solid rgba(255,255,255,0.12); border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4); overflow: hidden; min-width: 160px; z-index: 40;
}
.cv-dropdown.open .cv-dropdown-menu { display: block; animation: slideUp 0.2s ease; }
.cv-dropdown-menu a {
  display: flex; align-items: center; gap: 10px; padding: 12px 16px;
  color: rgba(255,255,255,0.85); text-decoration: none; font-size: 0.85rem; font-weight: 600;
  transition: background 0.15s, color 0.15s;
}
.cv-dropdown-menu a:hover { background: rgba(255,90,54,0.12); color: var(--red); }
.cv-dropdown-menu a i.fa-file-pdf { color: #ff5252; }
.cv-dropdown-menu a i.fa-file-word { color: #4285f4; }
.hero-desc { 
  font-size: 0.95rem; 
  color: rgba(255,255,255,0.8); 
  line-height: 1.65; 
  margin-bottom: 32px; 
  max-width: 400px;
  animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
  opacity: 0;
}
.hero-desc-centered { 
  max-width: 560px; 
  margin-left: auto; 
  margin-right: auto; 
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-btns-centered { justify-content: center; }
.btn-primary { 
  background: var(--black); 
  color: var(--white); 
  padding: 12px 28px; 
  border-radius: 50px; 
  font-size: 0.88rem; 
  font-weight: 600; 
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s forwards;
  opacity: 0;
}
.btn-primary:hover { 
  background: var(--dark3); 
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(255,90,54,0.2);
}
.btn-outline { 
  background: transparent; 
  color: var(--white); 
  border: 1.5px solid rgba(255,255,255,0.5); 
  padding: 12px 28px; 
  border-radius: 50px; 
  font-size: 0.88rem; 
  font-weight: 600; 
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.45s forwards;
  opacity: 0;
}
.btn-outline:hover { 
  border-color: var(--white); 
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(255,255,255,0.1);
}
.btn-ghost { background: transparent; color: rgba(255,255,255,0.75); padding: 12px 24px; border-radius: 50px; font-size: 0.85rem; font-weight: 500; display: flex; align-items: center; gap: 8px; transition: all 0.2s; }
.btn-ghost:hover { color: var(--white); }
.hero-skills-row-centered { justify-content: center; }
.hero-skill-badge {
  animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
  opacity: 0;
}
.sparkle { position: absolute; pointer-events: none; user-select: none; color: rgba(255,255,255,0.4); animation: spin 8s linear infinite; }
@keyframes spin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
.sparkle-1 { top: 15%; left: 5%; font-size: 1.8rem; }
.sparkle-2 { bottom: 20%; right: 8%; font-size: 2.5rem; animation-duration: 12s; animation-direction: reverse; }
.scroll-down {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.6); font-size: 0.75rem; animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* Premium Scroll Reveal Animations */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.reveal-up.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-letters .rl-char {
  opacity: 0;
  transform: translateY(20px);
  display: inline-block;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.reveal-letters.in-view .rl-char {
  opacity: 1;
  transform: translateY(0);
}
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ── ABOUT ── */
#about {
  padding: clamp(60px, 10vw, 100px) clamp(20px, 6vw, 60px);
  background: var(--dark);
  display: flex; flex-wrap: wrap; gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.about-img-wrap {
  flex: 0 1 320px;
  width: 100%;
  max-width: 320px;
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  gap: 16px;
  padding-bottom: 8px;
  will-change: opacity;
}
.about-img {
  width: 100%; border-radius: 20px; object-fit: cover; object-position: center;
  aspect-ratio: 4 / 3;
  height: auto;
  border: 3px solid var(--card-border);
  transform: translateY(0) !important;
  will-change: filter;
}

/* Animated tagline box — sits in normal flow directly under the photo,
   never absolutely positioned so it can never sit on top of the image. */
.about-animated-tag {
  position: static;
  order: 2;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 320px;
  box-sizing: border-box;
  margin: 0 auto;
  text-align: center;
  padding: clamp(10px, 2vw, 14px) clamp(12px, 3vw, 18px);
  border-radius: 12px;
  border: 1px solid rgba(255,90,54,0.35);
  background: linear-gradient(180deg, rgba(255,90,54,0.08), rgba(255,90,54,0.02));
  box-shadow: 0 6px 20px rgba(255,90,54,0.12);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: clamp(0.7rem, 2vw, 0.88rem);
  text-transform: uppercase;
  animation: about-tag-border 3.5s ease-in-out infinite;
}
.about-animated-tag-text {
  display: inline-block;
  background: linear-gradient(90deg, var(--teal), var(--red), var(--teal));
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: about-tag-shine 3.5s linear infinite, about-tag-in 0.8s ease both;
}
@keyframes about-tag-shine {
  0% { background-position: 0% center; }
  100% { background-position: 220% center; }
}
@keyframes about-tag-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes about-tag-border {
  0%, 100% { border-color: rgba(255,90,54,0.35); box-shadow: 0 6px 20px rgba(255,90,54,0.12); }
  50% { border-color: rgba(255,90,54,0.7); box-shadow: 0 6px 24px rgba(255,90,54,0.25); }
}
@media (prefers-reduced-motion: reduce) {
  .about-animated-tag { animation: none; }
  .about-animated-tag-text { animation: about-tag-in 0.8s ease both; }
}

/* Redesigned badge — sits fully inside the flow, never clipped/cut off */
.about-badge {
  position: relative;
  order: 3;
  inset: auto;
  width: 100%;
  max-width: 280px;
  background: linear-gradient(135deg, var(--red-dark), var(--black));
  border: 1px solid rgba(255,90,54,0.25);
  color: var(--white);
  padding: clamp(12px, 2.4vw, 16px) clamp(14px, 3vw, 20px);
  border-radius: 14px;
  font-size: clamp(0.72rem, 1.8vw, 0.82rem);
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.about-content { flex: 1 1 420px; min-width: 0; }
.section-tag { display: inline-block; background: rgba(255,90,54,0.12); color: var(--red-light); border: 1px solid rgba(255,90,54,0.35); padding: 6px 16px; border-radius: 50px; font-size: 0.82rem; font-weight: 800; margin-bottom: 20px; letter-spacing: 1.4px; text-transform: uppercase; box-shadow: 0 0 20px rgba(139,20,20,0.15); }
.section-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2rem,3.6vw,3rem); font-weight: 800; line-height: 1.2; margin-bottom: 20px; letter-spacing: -0.01em; }
.section-title span { color: var(--red); text-shadow: 0 0 24px rgba(255,90,54,0.35); }
.about-text { color: var(--grey); font-size: 0.95rem; line-height: 1.75; margin-bottom: 16px; }
.about-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.pill { background: var(--dark3); border: 1px solid var(--card-border); padding: 8px 18px; border-radius: 50px; font-size: 0.82rem; color: var(--light-grey); transition: all 0.2s; }
.pill:hover { border-color: var(--red); color: var(--red); }
.case-study-stats { list-style: none; margin: 14px 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.case-study-stats li { font-size: 0.86rem; color: var(--grey); line-height: 1.5; display: flex; gap: 8px; align-items: flex-start; }
.case-study-stats li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }

/* ── RESULTS / ANALYTICS PROOF ── */
.results-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; max-width: 900px; margin: 40px auto; }
.results-stat { background: var(--dark3); border: 1px solid var(--card-border); border-radius: 16px; padding: 24px 16px; text-align: center; }
.results-num { font-family: 'Space Grotesk', sans-serif; font-size: 2.2rem; font-weight: 700; color: var(--red); }
.results-label { font-size: 0.8rem; color: var(--grey); margin-top: 6px; line-height: 1.4; }
.results-images { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 1100px; margin: 0 auto; }
.results-img-card { background: var(--dark3); border: 1px solid var(--card-border); border-radius: 16px; overflow: hidden; }
.results-img-card img { width: 100%; display: block; }
.results-caption { padding: 16px 18px; font-size: 0.85rem; color: var(--grey); line-height: 1.55; }
@media (max-width: 900px) {
  .results-grid { grid-template-columns: repeat(2,1fr); }
  .results-images { grid-template-columns: 1fr; }
}
.about-tools { display: flex; flex-wrap: wrap; gap: 8px; margin: 6px 0 8px; }
.tool-chip { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,90,54,0.08); border: 1px solid rgba(255,90,54,0.25); color: var(--red); padding: 6px 14px; border-radius: 50px; font-size: 0.76rem; font-weight: 600; }

/* ── SKILLS ── */
#skills { padding: 100px 60px; background: var(--black); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header p { color: var(--grey); font-size: 0.95rem; max-width: 500px; margin: 0 auto; }
.skills-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.skill-card { background: var(--card-dark); border: 1px solid var(--card-border); border-radius: 20px; padding: 28px; transition: all 0.3s; }
.skill-card:hover { border-color: var(--red); transform: translateY(-4px); }
.skill-icon { width: 50px; height: 50px; border-radius: 14px; background: var(--red); color: var(--black); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 16px; }
.skill-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.skill-card p { font-size: 0.85rem; color: var(--grey); line-height: 1.6; }
.skill-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.skill-tag { background: var(--dark3); padding: 4px 10px; border-radius: 6px; font-size: 0.75rem; color: var(--light-grey); }

/* ── PROCESS ── */
#process {
  padding: 100px 60px;
  background:
    radial-gradient(ellipse 800px 450px at 15% 10%, rgba(139,20,20,0.25), transparent 70%),
    var(--black);
}
.process-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1100px; margin: 0 auto; }
.process-left h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.8rem,3vw,2.5rem); font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 16px; }
.process-left p { color: var(--grey); font-size: 0.95rem; line-height: 1.7; }
.process-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.process-card { border-radius: 20px; padding: 28px; transition: all 0.3s; }
.process-card.red { background: linear-gradient(150deg, rgba(139,20,20,0.55), rgba(255,90,54,0.18)); color: var(--white); border: 1px solid rgba(255,90,54,0.3); box-shadow: 0 8px 30px rgba(139,20,20,0.3); }
.process-card.light { background: var(--card-dark); color: var(--white); border: 1px solid var(--card-border); }
.process-num { font-size: 0.75rem; font-weight: 700; opacity: 0.5; margin-bottom: 10px; letter-spacing: 2px; }
.process-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.process-card p { font-size: 0.85rem; line-height: 1.65; opacity: 0.8; }

/* ── PROJECTS ── */
#projects { padding: 100px 60px; background: var(--dark); }
.projects-list { display: flex; flex-direction: column; gap: 16px; }
.project-card { background: var(--card-dark); border: 1px solid var(--card-border); border-radius: 20px; padding: 28px 32px; transition: all 0.3s; }
.project-card:hover { border-color: rgba(255,90,54,0.4); }
.project-num { font-size: 0.75rem; color: var(--red); font-weight: 700; letter-spacing: 2px; margin-bottom: 8px; }
.project-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.project-card p { font-size: 0.88rem; color: var(--grey); line-height: 1.65; margin-bottom: 16px; }
.project-techs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.tech-tag { background: var(--dark3); border: 1px solid var(--card-border); padding: 4px 12px; border-radius: 6px; font-size: 0.78rem; color: var(--light-grey); }
.project-links { display: flex; gap: 10px; }
.btn-sm { padding: 8px 18px; border-radius: 50px; font-size: 0.8rem; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; transition: all 0.2s; }
.btn-sm.dark { background: var(--dark3); color: var(--white); border: 1px solid var(--card-border); }
.btn-sm.dark:hover { border-color: var(--white); }
.btn-sm.accent { background: var(--red); color: var(--white); }
.btn-sm.accent:hover { background: var(--red-dark); }

/* ── EXPERIENCE ── */
#experience {
  padding: 100px 60px;
  background:
    radial-gradient(ellipse 900px 500px at 85% 20%, rgba(139,20,20,0.35), transparent 70%),
    radial-gradient(ellipse 700px 400px at 10% 90%, rgba(255,90,54,0.08), transparent 70%),
    var(--black);
  position: relative; overflow: hidden;
}
#experience::before, #experience::after { content: ''; position: absolute; left: 0; right: 0; height: 60px; background: var(--dark); }
#experience::before { top: -1px; clip-path: ellipse(55% 100% at 50% 0%); }
#experience::after { bottom: -1px; clip-path: ellipse(55% 100% at 50% 100%); }
.exp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 50px; }
.exp-card { background: rgba(255,90,54,0.05); backdrop-filter: blur(10px); border: 1px solid rgba(255,90,54,0.18); border-radius: 20px; padding: 28px; transition: all 0.3s; }
.exp-card:hover { background: rgba(255,90,54,0.1); border-color: rgba(255,90,54,0.4); box-shadow: 0 8px 30px rgba(139,20,20,0.35); transform: translateY(-4px); }
.exp-icon { font-size: 2rem; margin-bottom: 14px; color: var(--red); }
.exp-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; color: var(--white); }
.exp-company { font-size: 0.82rem; color: rgba(245,241,238,0.6); margin-bottom: 14px; }
.exp-card p { font-size: 0.85rem; color: rgba(245,241,238,0.8); line-height: 1.65; }

/* ── CERTIFICATIONS ── */
#certifications {
  padding: 100px 60px;
  background:
    radial-gradient(ellipse 900px 500px at 50% 0%, rgba(139,20,20,0.30), transparent 70%),
    radial-gradient(ellipse 700px 400px at 100% 100%, rgba(255,90,54,0.08), transparent 70%),
    var(--black);
  position: relative;
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}
#certifications .section-tag { background: rgba(255,90,54,0.12); color: var(--red-light); border-color: rgba(255,90,54,0.35); font-weight: 800; letter-spacing: 1.4px; }
#certifications .section-title { color: var(--white); font-weight: 800; font-size: clamp(2rem, 3.6vw, 3rem); text-shadow: 0 0 30px rgba(139,20,20,0.4); }
#certifications .section-header p { color: rgba(245,241,238,0.7); }
.cert-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin-top: 50px; }
.cert-card { background: rgba(255,90,54,0.05); border: 1px solid rgba(255,90,54,0.18); border-radius: 16px; padding: 20px; display: flex; align-items: center; gap: 14px; transition: all 0.3s; }
.cert-card:hover { background: rgba(255,90,54,0.1); border-color: rgba(255,90,54,0.4); box-shadow: 0 8px 30px rgba(139,20,20,0.35); transform: translateY(-2px); }
.cert-icon { font-size: 1.5rem; flex-shrink: 0; color: var(--red); }
.cert-card h4 { font-size: 0.88rem; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.cert-issuer { font-size: 0.75rem; color: rgba(245,241,238,0.55); }
.cert-verified-badge { position: absolute; top: -10px; right: 16px; background: var(--gold); color: #2A1D08; font-size: 0.68rem; font-weight: 800; padding: 4px 12px; border-radius: 50px; display: inline-flex; align-items: center; gap: 5px; box-shadow: 0 4px 14px var(--gold-glow); }
.supervisor-quote { max-width: 640px; margin: 32px auto 0; text-align: center; padding: 24px 28px; background: rgba(0,0,0,0.2); border: 1px solid rgba(255,255,255,0.15); border-radius: 16px; }
.supervisor-quote i { color: rgba(255,255,255,0.3); font-size: 1.3rem; }
.supervisor-quote p { color: rgba(255,255,255,0.85); font-size: 0.92rem; line-height: 1.6; margin: 10px 0; font-style: italic; }
.supervisor-quote span { display: block; color: rgba(255,255,255,0.45); font-size: 0.72rem; }

/* ── CONTACT ── */
#contact { padding: 100px 60px; background: var(--dark); }
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; max-width: 1100px; margin: 0 auto; }
.contact-left h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.8rem,3vw,2.5rem); font-weight: 700; line-height: 1.2; margin-bottom: 16px; }
.contact-left p { color: var(--grey); font-size: 0.95rem; line-height: 1.7; margin-bottom: 32px; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-availability { display: inline-flex; align-items: center; gap: 8px; background: rgba(217,130,43,0.1); border: 1px solid rgba(217,130,43,0.35); color: var(--gold); padding: 6px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 600; margin-bottom: 10px; }
.contact-item { display: flex; align-items: center; gap: 14px; color: var(--light-grey); font-size: 0.9rem; }
.contact-item i { color: var(--red); font-size: 1rem; width: 20px; }
.reach-label { font-size: 0.75rem; letter-spacing: 2px; color: var(--grey); text-transform: uppercase; margin-bottom: 20px; }
.dm-btn { display: inline-flex; align-items: center; gap: 8px; background: transparent; border: 1px solid rgba(255,255,255,0.2); color: var(--white); padding: 10px 20px; border-radius: 50px; font-size: 0.82rem; margin-bottom: 28px; transition: all 0.2s; }
.dm-btn:hover { border-color: var(--white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.8rem; color: var(--grey); margin-bottom: 8px; }
.form-group input, .form-group textarea { width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--card-border); color: var(--white); font-family: inherit; font-size: 0.9rem; padding: 10px 0; outline: none; resize: none; transition: border-color 0.2s; }
.form-group input:focus, .form-group textarea:focus { border-bottom-color: var(--red); }
.form-group textarea { height: 120px; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--grey); }
.checkbox-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 24px; font-size: 0.82rem; color: var(--grey); }
.checkbox-row input[type=checkbox] { margin-top: 2px; accent-color: var(--red); }
.btn-send { background: var(--red); color: var(--white); padding: 13px 32px; border-radius: 50px; font-size: 0.88rem; font-weight: 700; border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; transition: all 0.2s; font-family: inherit; }
.btn-send:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-send:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.success-msg { display: none; margin-top: 16px; background: rgba(217,130,43,0.12); border: 1px solid rgba(217,130,43,0.35); color: var(--gold); padding: 12px 20px; border-radius: 12px; font-size: 0.88rem; }

/* ── FOOTER ── */
.footer-name { font-family: 'Space Grotesk', sans-serif; font-size: clamp(3rem,10vw,8rem); font-weight: 900; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.1); letter-spacing: -3px; text-align: center; padding: 20px 60px 0; user-select: none; overflow: hidden; white-space: nowrap; }
footer { background: var(--black); padding: 40px 60px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--card-border); flex-wrap: wrap; gap: 20px; }
.footer-col p { font-size: 0.82rem; color: var(--grey); line-height: 1.7; }
.footer-col h4 { font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; margin-bottom: 8px; }

/* ── FADE UP ── */
.fade-up { opacity: 0; transform: translateY(40px); transition: all 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── HAMBURGER MENU BUTTON ── */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 4px; z-index: 1100;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── MOBILE DRAWER MENU ── */
.mobile-drawer {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1050;
  background: rgba(0,0,0,0.97);
  backdrop-filter: blur(8px);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 0;
  opacity: 0; transition: opacity 0.3s ease;
}
.mobile-drawer.open { display: flex; opacity: 1; }
/* staggered slide-up entrance for each link when the drawer opens */
.mobile-drawer a {
  opacity: 0; transform: translateY(14px);
  transition: color 0.2s, opacity 0.35s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
}
.mobile-drawer.open a { opacity: 1; transform: translateY(0); }
.mobile-drawer.open a:nth-child(1) { transition-delay: 0.05s; }
.mobile-drawer.open a:nth-child(2) { transition-delay: 0.10s; }
.mobile-drawer.open a:nth-child(3) { transition-delay: 0.15s; }
.mobile-drawer.open a:nth-child(4) { transition-delay: 0.20s; }
.mobile-drawer.open a:nth-child(5) { transition-delay: 0.25s; }
.mobile-drawer.open a:nth-child(6) { transition-delay: 0.30s; }
.mobile-drawer.open a:nth-child(7) { transition-delay: 0.35s; }
@media (prefers-reduced-motion: reduce) {
  .mobile-drawer a { opacity: 1; transform: none; transition: color 0.2s; }
}
.mobile-drawer a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem; font-weight: 700; color: var(--white);
  padding: 16px 40px; text-decoration: none;
  letter-spacing: -0.5px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  width: 100%; text-align: center;
}
.mobile-drawer a:hover { color: var(--red); }
.mobile-drawer-social {
  display: flex; gap: 24px; margin-top: 32px;
}
.mobile-drawer-social a {
  font-size: 1.4rem !important; width: auto !important;
  border: none !important; padding: 8px !important;
  color: var(--grey) !important;
}
.mobile-drawer-social a:hover { color: var(--white) !important; }
.mobile-hire-btn {
  margin-top: 24px;
  background: var(--red) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: 14px 40px !important;
  font-size: 1.1rem !important;
  border: none !important;
  width: auto !important;
}

/* ════════════════════════════════════
   TABLET  (max 900px)
════════════════════════════════════ */
@media(max-width: 900px) {
  /* NAV */
  nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .nav-social-links { display: none; }
  .hamburger { display: flex; }

  /* LEFT ICONS */
  .left-icons { display: none; }

  /* HERO */
  .hero-inner {
    flex-direction: column-reverse;
    padding: 90px 20px 0;
    gap: 0;
    align-items: center;
  }
  .hero-inner-centered { flex-direction: column; padding: 110px 20px 40px; }
  .hero-content { padding-bottom: 40px; max-width: 100%; }
  .hero-title { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .hero-subtitle { font-size: clamp(1rem, 4vw, 1.4rem); min-height: 36px; }
  .hero-desc { font-size: 0.88rem; }
  .hero-btns { gap: 8px; }
  .btn-primary, .btn-outline { padding: 10px 20px; font-size: 0.82rem; }
  .btn-ghost { padding: 10px 16px; font-size: 0.82rem; }
  .hero-bg-text { font-size: clamp(60px, 22vw, 120px); }

  /* ABOUT */
  #about { flex-direction: column; padding: 60px 20px; gap: 40px; }
  .about-img-wrap { flex: none; width: 100%; max-width: 340px; margin: 0 auto; }
  /* about-img aspect-ratio handles sizing — no fixed height needed */
  .about-badge { max-width: 240px; padding: 10px 14px; font-size: 0.72rem; }

  /* SKILLS */
  #skills { padding: 60px 20px; }
  .skills-grid { grid-template-columns: 1fr; gap: 16px; }

  /* PROCESS */
  #process { padding: 60px 20px; }
  .process-wrap { grid-template-columns: 1fr; gap: 32px; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .process-card { padding: 20px; }

  /* PROJECTS */
  #projects { padding: 60px 20px; }
  .project-card { padding: 20px; }

  /* EXPERIENCE */
  #experience { padding: 60px 20px; }
  #experience::before, #experience::after { height: 40px; }
  .exp-grid { grid-template-columns: 1fr; gap: 16px; }

  /* CERTIFICATIONS */
  #certifications { padding: 60px 20px; }
  .cert-grid { grid-template-columns: 1fr; gap: 12px; }

  /* CONTACT */
  #contact { padding: 60px 20px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .dm-btn { font-size: 0.78rem; padding: 9px 16px; }

  /* HIRE MODAL */
  #hire-left { display: none; }
  #hire-modal-inner { flex-direction: column; }
  #hire-right { padding: 24px 20px; }
  .hire-row { grid-template-columns: 1fr; gap: 0; }
  #hire-title { font-size: 1.3rem; }

  /* FOOTER */
  .footer-name { font-size: clamp(2rem, 15vw, 5rem); padding: 20px 20px 0; }
  footer { padding: 28px 20px; flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-col { text-align: left !important; }

  /* WHATSAPP BUBBLE */
  #wa-bubble { bottom: 16px; right: 16px; }
  #wa-fab { width: 52px; height: 52px; }
  #wa-tooltip { width: 260px; }

  /* ABOUT PHOTO FRAME — slightly smaller corner accents on touch screens */
  .about-img-corner { width: 22px; height: 22px; }
  .about-img-frame:hover .about-img-corner,
  .about-img-frame:active .about-img-corner { width: 32px; height: 32px; }

  /* LOADING SCREEN */
  #loading-inner { gap: 22px; }
  #loading-name { font-size: clamp(1.3rem, 6.5vw, 2rem); }
}

/* ════════════════════════════════════
   MOBILE  (max 480px)
═══════════════════════════���════════ */
@media(max-width: 480px) {
  /* HERO */
  .hero-inner { padding: 80px 16px 0; }
  .hero-content { padding-bottom: 28px; }
  .hero-title { font-size: clamp(1.4rem, 7vw, 2rem); }
  .hero-subtitle { font-size: 1rem; min-height: 30px; }
  .hero-tag { font-size: 0.7rem; padding: 5px 10px; }
  .hero-btns { flex-direction: column; gap: 8px; }
  .btn-primary, .btn-outline, .btn-ghost {
    width: 100%; justify-content: center; text-align: center;
    padding: 12px 20px;
  }
  .cv-dropdown { width: 100%; }
  .cv-dropdown-btn { width: 100%; }
  .cv-dropdown-menu { left: 0; right: 0; transform: none; width: 100%; min-width: 0; }
  .hero-open-to { font-size: 0.74rem; padding: 7px 14px; }

  /* LOADING SCREEN */
  #loading-name { letter-spacing: 0; white-space: normal; text-align: center; }

  /* ABOUT */
  #about { padding: 50px 16px; }
  /* about-img aspect-ratio handles sizing — no fixed height needed */
  .section-title { font-size: 1.5rem; }
  .about-pills { gap: 6px; }
  .pill { font-size: 0.75rem; padding: 6px 12px; }

  /* SKILLS */
  #skills { padding: 50px 16px; }
  .skill-card { padding: 20px; }
  .skill-card h3 { font-size: 0.95rem; }
  .skill-card p { font-size: 0.82rem; }

  /* PROCESS */
  #process { padding: 50px 16px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-card { padding: 20px; }

  /* PROJECTS */
  #projects { padding: 50px 16px; }
  .project-card { padding: 18px 16px; }
  .project-card h3 { font-size: 0.95rem; }
  .project-card p { font-size: 0.83rem; }
  .project-links { flex-wrap: wrap; gap: 8px; }
  .btn-sm { font-size: 0.75rem; padding: 7px 14px; }

  /* EXPERIENCE */
  #experience { padding: 50px 16px; }
  .exp-card { padding: 20px; }

  /* CERTIFICATIONS */
  #certifications { padding: 50px 16px; }
  .cert-card { padding: 14px; gap: 10px; }
  .cert-card h4 { font-size: 0.82rem; }

  /* CONTACT */
  #contact { padding: 50px 16px; }
  .contact-left h2 { font-size: 1.5rem; }
  .contact-left p { font-size: 0.88rem; }
  .contact-info { gap: 12px; }
  .contact-item { font-size: 0.82rem; }
  .reach-label { font-size: 0.7rem; }
  .dm-btn { font-size: 0.75rem; width: 100%; justify-content: center; }
  .form-group label { font-size: 0.75rem; }
  .form-group input, .form-group textarea { font-size: 0.85rem; }
  .btn-send { width: 100%; justify-content: center; font-size: 0.85rem; }

  /* SECTION HEADERS */
  .section-header { margin-bottom: 36px; }
  .section-header p { font-size: 0.85rem; }

  /* FOOTER */
  .footer-name { font-size: 3rem; letter-spacing: -2px; }
  footer { padding: 24px 16px; gap: 16px; }
  .footer-col p { font-size: 0.78rem; }

  /* LOADING SCREEN */
  #loading-name span { animation-duration: 0.4s; }

  /* WHATSAPP */
  #wa-bubble { bottom: 12px; right: 12px; }
  #wa-tooltip { width: calc(100vw - 32px); right: 0; }
}

/* ══════════════════════════════════════════
   LINKEDIN BRAND ENHANCEMENTS
══════════════════════════════════════════ */

/* Hero background — dark navy + teal glow */
#home {
  background: linear-gradient(135deg, #150808 0%, #2A140E 40%, #150808 100%) !important;
  position: relative;
}
#home::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(255,90,54,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(255,90,54,0.07) 0%, transparent 50%);
  pointer-events: none;
}
/* Subtle professional grid accent — replaces abstract image layer */
#home::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,90,54,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,90,54,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 75% 40%, #000 0%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 60% at 75% 40%, #000 0%, transparent 75%);
  pointer-events: none;
}
@media (max-width: 768px) {
  #home::after { background-size: 36px 36px; }
}

/* Hero skill badges */
.hero-skills-row {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 24px;
}
.hero-skill-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,90,54,0.08);
  border: 1px solid rgba(255,90,54,0.25);
  color: var(--light-grey);
  padding: 7px 14px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 500;
  transition: all 0.2s;
}
.hero-skill-badge i { color: var(--teal); font-size: 0.75rem; }
.hero-skill-badge:hover {
  background: rgba(255,90,54,0.15);
  border-color: var(--teal);
  color: var(--white);
}

/* Services strip */
.services-strip {
  background: #23120D;
  border-top: 1px solid rgba(255,90,54,0.15);
  border-bottom: 1px solid rgba(255,90,54,0.15);
  padding: 28px 60px;
}
.services-strip-inner {
  max-width: 900px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: center; gap: 0;
}
.service-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 10px; padding: 0 48px; text-align: center;
  transition: all 0.2s;
}
.service-item:hover { transform: translateY(-3px); }
.service-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,90,54,0.1);
  border: 1.5px solid rgba(255,90,54,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--teal);
  transition: all 0.2s;
}
.service-item:hover .service-icon {
  background: rgba(255,90,54,0.2);
  border-color: var(--teal);
  box-shadow: 0 0 20px rgba(255,90,54,0.3);
}
.service-label {
  font-size: 0.75rem; color: var(--light-grey);
  font-weight: 600; line-height: 1.35;
  letter-spacing: 0.3px;
}
.service-divider {
  width: 1px; height: 48px;
  background: rgba(255,90,54,0.15);
  flex-shrink: 0;
}

/* Card dark backgrounds match brand */
.card-dark, .skill-card, .project-card, .exp-card, .cert-card {
  background: var(--card-dark) !important;
  border-color: var(--card-border) !important;
}

/* Scrollbar teal */
::-webkit-scrollbar-thumb { background: var(--teal) !important; }

/* Mobile responsive */
@media(max-width: 900px) {
  .services-strip { padding: 20px; }
  .services-strip-inner { flex-wrap: wrap; gap: 20px; }
  .service-item { padding: 0 20px; }
  .service-divider { display: none; }
  .hero-skills-row { gap: 8px; }
  .hero-skill-badge { font-size: 0.72rem; padding: 6px 10px; }
}
@media(max-width: 480px) {
  .services-strip-inner { gap: 16px; }
  .service-item { padding: 0 10px; }
  .service-icon { width: 44px; height: 44px; font-size: 1rem; }
  .service-label { font-size: 0.7rem; }
}
