:root {
    --bg-dark: #08090d;
    --card-bg: #0c0f17;
    --card-border: rgba(255, 255, 255, 0.08);
    --text-main: #ffffff;
    --text-muted: #828e9e;
    --neon-accent: #d2ff00;
    --font-heading: 'Space Grotesk', system-ui, -apple-system, sans-serif;
    --font-code: 'Fira Code', monospace;
  }

  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  html {
    scroll-behavior: smooth;
    overflow-x: hidden;
  }

  body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-heading);
    line-height: 1.5;
    overflow-x: hidden;
    padding-top: 90px; /* Offset for fixed header */
  }

  #bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
  }

  /* AMBIENT GLOW ON LEFT SIDE */
  .hero-ambient-glow {
    position: absolute;
    top: 80px;
    left: -120px;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(210, 255, 0, 0.12) 0%, rgba(210, 255, 0, 0.03) 45%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    filter: blur(40px);
  }

  .page-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
  }

  /* === STICKY HIDE-ON-SCROLL HEADER & NAV === */
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(8, 9, 13, 0.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 18px 0;
    z-index: 1000;
    transition: transform 0.35s ease-in-out;
  }

  header.header-hidden {
    transform: translateY(-100%);
  }

  .header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .brand-logo {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: -0.5px;
  }

  .brand-logo .neon-dot {
    color: var(--neon-accent); font-size: 30px;
  }

  .nav-links {
    display: flex;
    gap: 12px;
    list-style: none;
    align-items: center;
  }

  .nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 20px;
    position: relative;
    transition: all 0.25s ease-in-out;
    display: inline-block;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 14px;
    right: 14px;
    height: 2px;
    background-color: var(--neon-accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 8px var(--neon-accent);
  }

  .nav-links a:hover {
    color: var(--neon-accent);
    background: rgba(210, 255, 0, 0.08);
    box-shadow: 0 0 16px rgba(210, 255, 0, 0.15);
  }

  .nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  /* HAMBURGER BUTTON (ANIMATES TO CROSS) */
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
    position: relative;
  }

  .hamburger span {
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  /* === BUTTONS === */
  .btn-pill-neon {
    background: var(--neon-accent);
    color: #000000;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.8px;
    padding: 11px 9px;
    border-radius: 999px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
  }

  .btn-pill-neon:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(210, 255, 0, 0.35);
  }

  .btn-pill-outline {
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-main);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.8px;
    padding: 11px 24px;
    border-radius: 999px;
    text-decoration: none;
    transition: border-color 0.2s ease, background-color 0.2s ease;
  }

  .btn-pill-outline:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background-color: rgba(255, 255, 255, 0.03);
  }

  /* === SCROLL ANIMATION BASE CLASSES === */
  .reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
  }

  .reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* === HERO SECTION === */
  .hero {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    padding: 40px 0 40px;
    align-items: center;
  }

  .hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-code);
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
  }

  .hero-eyebrow .dot-green {
    color: var(--neon-accent);
    font-size: 0.9rem;
  }

  .hero-h1 {
    font-size: 4.1rem;
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 24px;
    color: #ffffff;
  }

  .hero-h1 .neon-text {
    color: var(--neon-accent);
    display: block;
  }

  .hero-p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 36px;
    max-width: 440px;
    line-height: 1.6;
  }

  .hero-btns {
    display: flex;
    gap: 10px;
    align-items: center;
  }

  /* === CODE CARD WINDOW === */
  .code-card-window {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.6);
    font-family: var(--font-code);
  }

  .window-header {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--card-border);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    position: relative;
  }

  .window-dots {
    display: flex;
    gap: 7px;
  }

  .window-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
  }

  .dot-red { background-color: #ff5f56; }
  .dot-yellow { background-color: #ffbd2e; }
  .dot-green-win { background-color: #27c93f; }

  .window-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: #5d6a7d;
    font-size: 0.72rem;
  }

  .code-body {
    padding: 24px;
    font-size: 0.78rem;
    line-height: 1.65;
    overflow-x: auto;
  }

  .kw { color: #c792ea; }
  .var { color: #82aaff; }
  .prop { color: #89ddff; }
  .str { color: #ecc48d; }
  .num { color: #f78c6c; }
  .bool { color: #ff5370; }
  .fn { color: #82aaff; }
  .param { color: #ffcb6b; }
  .method { color: #c3e88d; }

  /* === STATS BAR === */
  .stats-container {
    position: relative;
    padding: 36px 0 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    flex: 1;
  }

  .stat-number {
    font-size: 3.6rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -1.5px;
  }

  .stat-label {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.4;
    max-width: 180px;
  }

  .scroll-indicator {
    font-family: var(--font-code);
    font-size: 0.68rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
    padding-bottom: 6px;
  }

  /* === BRANDS SHOWCASE === */
  .brands-section {
    padding: 80px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .brands-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 52px;
    flex-wrap: wrap;
  }
  .brands-row a {color: rgba(255, 255, 255, 0.4);}
  .brand-name {
    font-size: 2.3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: -0.8px;
    transition: color 0.3s ease;
  }

  .brand-name:hover {
    color: #ffffff;
  }

  .star-divider {
    color: var(--neon-accent);
    font-size: 1.1rem;
    display: inline-block;
    text-shadow: 0 0 10px rgba(210, 255, 0, 0.4);
  }

  /* === GENERAL SECTION HEADERS === */
  .section {
    padding: 60px 0;
  }

  .section-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    font-family: var(--font-code);
  }

  .eyebrow-num {
    color: var(--neon-accent);
    font-size: 0.78rem;
    font-weight: 600;
  }

  .eyebrow-line {
    width: 28px;
    height: 1px;
    background: var(--neon-accent);
  }

  .eyebrow-text {
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  .section-title-large {
    font-size: 3.4rem;
    font-weight: 800;
    letter-spacing: -1.8px;
    margin-bottom: 48px;
    max-width: 820px;
    line-height: 1.08;
  }

  /* === SKILLS GRID CONTAINER === */
  .skills-grid-container {
    background: rgba(11, 14, 20, 0.5);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
  }

  .skill-block {
    padding: 36px 32px;
    border-right: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
  }

  .skill-block:nth-child(2n) {
    border-right: none;
  }

  .skill-block:nth-child(3),
  .skill-block:nth-child(4) {
    border-bottom: none;
  }

  .skill-neon-title {
    color: var(--neon-accent);
    font-family: var(--font-code);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.2px;
  }

  .skill-pills-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .skill-pill {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 7px 16px;
    border-radius: 20px;
    transition: border-color 0.25s ease, background-color 0.25s ease;
  }

  .skill-pill:hover {
    border-color: rgba(210, 255, 0, 0.4);
    background: rgba(210, 255, 0, 0.05);
  }

  /* === EXPERTISE CARDS === */
  .expertise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .expertise-card {
    background-color: #0c0e14;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.35s ease;
  }

  .expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 88% 12%, rgba(210, 255, 0, 0.07) 0%, rgba(210, 255, 0, 0) 50%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
  }

  .expertise-card:hover {
    transform: translateY(-6px);
    border-color: rgba(210, 255, 0, 0.18);
  }

  .expertise-card:hover::before {
    opacity: 1;
  }

  .exp-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
  }

  .exp-num {
    font-family: var(--font-code);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--neon-accent);
  }

  .exp-arrow-icon {
    width: 20px;
    height: 20px;
    color: #ffffff;
    transition: color 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .expertise-card:hover .exp-arrow-icon {
    color: var(--neon-accent);
    transform: translate(2px, -2px);
  }

  .exp-card-title {
    font-size: 1.55rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.6px;
    color: #ffffff;
    position: relative;
    z-index: 2;
  }

  .exp-card-desc {
    color: #8b97a8;
    font-size: 1rem;
    line-height: 1.65;
    position: relative;
    z-index: 2;
  }

  /* === PROCESS STEP LIST === */
  .step-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .step-row {
    display: grid;
    grid-template-columns: 120px 280px 1fr;
    align-items: center;
    padding: 44px 48px;
    border-radius: 12px;
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background-color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
  }

  .step-row.active,
  .step-row:hover {
    background-color: #0e1118;
    border-bottom-color: transparent;
  }

  .step-num {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -1.5px;
    transition: color 0.3s ease;
  }

  .step-row.active .step-num,
  .step-row:hover .step-num {
    color: var(--neon-accent);
  }

  .step-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.4px;
  }

  .step-desc {
    color: #808c9c;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 480px;
  }

  /* === WHY ME GRID === */
  .why-me-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }

  .why-me-col {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 28px;
  }

  .why-me-num {
    font-family: var(--font-code);
    color: var(--neon-accent);
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 20px;
  }

  .why-me-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.4px;
    margin-bottom: 16px;
    line-height: 1.3;
  }

  .why-me-desc {
    color: #808c9c;
    font-size: 1rem;
    line-height: 1.65;
  }

  /* === PAST SUCCESS STORIES === */
  .case-studies-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .case-card {
    background: #090b10;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s ease, transform 0.3s ease;
  }

  .case-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
  }

  .case-media-preview {
    height: 280px;
    background: #11141c;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
  }

  .case-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .case-badges-row {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
  }

  .case-badge-yellow {
    background-color: var(--neon-accent);
    color: #000000;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: -0.2px;
  }

  .case-title {
    font-size: 1.55rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    line-height: 1.25;
  }

  .case-desc {
    color: #8390a2;
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 28px;
  }

  .case-tech-tags {
    margin-top: auto;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }

  .case-tech-tag {
    font-family: var(--font-code);
    font-size: 0.72rem;
    color: #6a788a;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 16px;
    border-radius: 20px;
  }

  /* === CLIENT TESTIMONIALS === */
  .testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 20px;
    position: relative;
  }

  .quote-mark {
    color: var(--neon-accent);
    font-size: 6rem;
    display: inline-block;
    line-height: 0;
    font-family: serif;
    opacity: 0.8;
  }

  .testimonial-text {
    color: #d1d5db;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 18px;
    font-style: italic;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;margin-top: 28px;
  }

  .author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(210, 255, 0, 0.15);
    color: var(--neon-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.88rem;
    border: 1px solid rgba(210, 255, 0, 0.3);
  }

  .author-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
  }

  .author-role {
    font-size: 0.8rem;
    color: var(--text-muted);
  }

  /* === GLOBAL EXPERIENCE === */
  .global-container {
    background: #0a0c10;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
  }

  .global-col {
    padding: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
  }

  .global-col:last-child {
    border-right: none;
  }

  .global-tag {
    font-family: var(--font-code);
    color: var(--neon-accent);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
  }

  .global-region-title {
    font-size: 1.65rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 32px;
    letter-spacing: -0.5px;
    line-height: 1.2;
  }

  .global-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0;
    padding: 0;
  }

  .global-list li {
    color: #8b97a8;
    font-size: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.45;
  }

  .global-list li span.arrow {
    color: var(--neon-accent);
    font-family: var(--font-code);
    font-weight: 600;
    font-size: 0.85rem;
    line-height: 1;
    margin-top: 2px;
  }

  /* === CONTACT SECTION === */
  .contact-section {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .contact-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    margin-bottom: 24px;
  }

  .contact-title {
    font-size: 4.8rem;
    font-weight: 800;
    letter-spacing: -2.5px;
    line-height: 0.98;
    color: #ffffff;
    max-width: 700px;
  }

  .contact-title .dot-neon {
    color: var(--neon-accent);
  }

  .contact-desc {
    color: #8b97a8;
    font-size: 1rem;
    line-height: 1.65;
    max-width: 580px;
    margin-bottom: 40px;
  }

  .contact-link-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    transition: opacity 0.25s ease;
  }

  .contact-link-wrapper:hover {
    opacity: 0.85;
  }

  .linkedin-icon-svg {
    color: var(--neon-accent);
    width: 28px;
    height: 28px;
    flex-shrink: 0;
  }

  .linkedin-url {
    font-family: var(--font-code);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: -0.2px;
  }

  /* === FOOTER (3 COLUMNS / BACK TO TOP PUSHED RIGHT) === */
  footer {
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-family: var(--font-code);
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
  }

  .footer-desktop-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .footer-left {
    color: #ffffff;
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    letter-spacing: -0.4px;
    text-decoration: none;
    flex: 1;
  }

  .footer-left .neon-dot {
    color: var(--neon-accent);
  }

  .footer-middle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: var(--text-muted);
    flex: 2;
    text-align: center;
  }

  .footer-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
  }

  .footer-right button {
    color: var(--text-muted);
    text-decoration: none;
    background: none;
    border: none;
    font-family: inherit;
    font-size: inherit;
    letter-spacing: inherit;
    cursor: pointer;
    transition: color 0.2s ease;
  }

  .footer-right button:hover {
    color: var(--neon-accent);
  }

  /* Responsive Adjustments & Mobile Menu */
  @media (max-width: 960px) {
    .page-wrapper {
      padding: 0 20px;
    }
    .header-inner {
      padding: 0 20px;
    }
    .hamburger {
      display: flex;
    }
    .nav-links {
      position: fixed;
      top: 0;
      right: -100%;
      width: 100%;
      height: 100vh;
      background: rgba(8, 9, 13, 0.98);
      backdrop-filter: blur(12px);
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 20px;
      transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      z-index: 1000;
    }
    .nav-links.active {
      right: 0;
    }
    .nav-links a {
      font-size: 1rem;
      padding: 12px 24px;
    }

    .brands-section {
        padding: 50px 0 40px;
    }
    .section, .contact-section {
        padding: 40px 0 40px;
    }
    .hero {padding: 20px 0 40px;}

    /* HIDE CODE SECTION ON MOBILE */
    .code-card-window {
      display: none !important;
    }

    .hero, .expertise-grid, .skills-grid-container, .why-me-grid, .case-studies-grid, .testimonials-grid, .global-container {
      grid-template-columns: 1fr;
    }
    .global-col {
      border-right: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .global-col:last-child {
      border-bottom: none;
    }
    .hero-h1 { font-size: 2.8rem; letter-spacing: -1px; }
    .section-title-large { font-size: 2.1rem; letter-spacing: -1px; }
    .contact-title { font-size: 2.8rem; letter-spacing: -1px; }
    .contact-header-row { flex-direction: column; align-items: flex-start; }
    
    /* STATS BAR: MAKE 7+ YEARS ONE LINE ON MOBILE */
    .stats-container { 
      flex-direction: row; 
      justify-content: space-between; 
      align-items: center; 
      gap: 12px;
    }
    .stats-grid { 
      grid-template-columns: repeat(3, 1fr); 
      gap: 12px; 
    }
    .stat-number { 
      font-size: 2rem; 
      margin-bottom: 4px; 
    }
    .stat-label { 
      font-size: 0.65rem; 
      line-height: 1.2; 
    }
    .scroll-indicator {
      display: none;
    }

    .step-row { grid-template-columns: 1fr; gap: 12px; padding: 20px; }
    .step-num { font-size: 2.2rem; }
    .step-title { font-size: 1.15rem; }
    .skill-block { border-right: none !important; }
    .why-me-grid { gap: 32px; }
    header .btn-pill-neon { display: none; }

    .star-divider {font-size: 0.5rem;}
    .brand-name {font-size: 1.1rem;}
    .brands-row {gap: 16px;}

    /* FOOTER MOBILE STACKING SPEC */
    footer {
      padding: 40px 0;
    }
    .footer-desktop-wrap {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 28px;
    }
    .footer-left {
      font-size: 1.6rem;
      flex: unset;
    }
    .footer-right {
      width: 100%;
      justify-content: center;
      flex: unset;
    }
    .footer-middle {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px;
      font-size: 0.7rem;
      flex: unset;
    }
  }