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

  :root {
    --bg: #080b12;
    --bg2: #0d1220;
    --bg3: #111826;
    --cyan: #00e5c8;
    --violet: #9b6dff;
    --cyan-dim: rgba(0,229,200,0.12);
    --violet-dim: rgba(155,109,255,0.12);
    --text: #e8eaf0;
    --muted: #7a8499;
    --border: rgba(255,255,255,0.07);
    --border-glow: rgba(0,229,200,0.25);
    --mono: 'Space Mono', monospace;
    --sans: 'DM Sans', sans-serif;
    --radius: 12px;
    --nav-h: 68px;
  }

  html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
  }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100%;
  }

  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
  }

  body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
      linear-gradient(rgba(0,229,200,0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,229,200,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    max-width: 100%;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
    background: rgba(8,11,18,0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
  }

  .logo-img {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
  }

  .nav-logo {
    height: 36px;
    width: auto;
    /* logo is white on dark — invert to cyan tint on hover */
    filter: brightness(1);
    transition: filter 0.2s, opacity 0.2s;
  }

  .logo-img:hover .nav-logo {
    filter: brightness(1) sepia(1) saturate(4) hue-rotate(140deg);
    opacity: 0.9;
  }

  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
  }

  .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }

  .nav-links a {
    font-family: var(--mono);
    font-size: 0.78rem;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--cyan); }

  .nav-cta {
    font-family: var(--mono);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    padding: 8px 20px;
    border: 1px solid var(--cyan);
    color: var(--cyan);
    background: transparent;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
  }

  .nav-cta:hover { background: var(--cyan); color: var(--bg); }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
  }

  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cyan);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
  }

  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-menu {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(8,11,18,0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 2rem;
    z-index: 99;
    flex-direction: column;
    gap: 1.5rem;
  }

  .mobile-menu.open { display: flex; }

  .mobile-menu a {
    font-family: var(--mono);
    font-size: 0.9rem;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s;
  }

  .mobile-menu a:hover { color: var(--cyan); }

  /* ── SECTIONS ── */
  section { position: relative; z-index: 1; }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--nav-h) + 3rem) clamp(1.5rem, 6vw, 5rem) 5rem;
  }

  .hero-inner { max-width: 800px; margin: 0 auto; }

  .hero-logo {
    height: clamp(64px, 10vw, 100px);
    width: auto;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeUp 0.6s 0.1s forwards;
    /* white logo — give it a subtle cyan glow on dark bg */
    filter: drop-shadow(0 0 18px rgba(0,229,200,0.25));
  }

  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--mono);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cyan);
    background: var(--cyan-dim);
    border: 1px solid rgba(0,229,200,0.2);
    padding: 6px 14px;
    border-radius: 4px;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 0.6s 0.2s forwards;
  }

  .hero-tag::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--cyan);
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }

  h1 {
    font-family: var(--sans);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 600;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.7s 0.4s forwards;
  }

  h1 .glow-cyan  { color: var(--cyan);   text-shadow: 0 0 40px rgba(0,229,200,0.4); }
  h1 .glow-violet { color: var(--violet); text-shadow: 0 0 40px rgba(155,109,255,0.4); }

  .hero-desc {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 540px;
    margin-bottom: 2.5rem;
    line-height: 1.75;
    opacity: 0;
    animation: fadeUp 0.7s 0.6s forwards;
  }

  .hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.7s 0.8s forwards;
  }

  .btn-primary {
    font-family: var(--mono);
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    padding: 14px 32px;
    background: var(--cyan);
    color: var(--bg);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 700;
    transition: box-shadow 0.2s, transform 0.15s;
    display: inline-block;
  }

  .btn-primary:hover {
    box-shadow: 0 0 30px rgba(0,229,200,0.4);
    transform: translateY(-1px);
  }

  .btn-outline {
    font-family: var(--mono);
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    padding: 14px 32px;
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
    display: inline-block;
  }

  .btn-outline:hover { border-color: var(--violet); color: var(--violet); }

  .hero-orb {
    position: absolute;
    width: 500px; height: 500px;
    right: -100px; top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(155,109,255,0.15) 0%, transparent 70%);
    pointer-events: none;
    overflow: hidden;
  }

  .hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.7s 1s forwards;
  }

  .stat-item { display: flex; flex-direction: column; gap: 4px; }

  .stat-num {
    font-family: var(--mono);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--cyan);
  }

  .stat-label {
    font-size: 0.78rem;
    color: var(--muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ── SECTION HEADERS ── */
  .section-header { margin-bottom: 3.5rem; max-width: 1100px; margin-left: auto; margin-right: auto; }

  .section-tag {
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--violet);
    margin-bottom: 0.75rem;
  }

  h2 {
    font-family: var(--sans);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--text);
  }

  h2 em { font-style: normal; color: var(--cyan); }

  .section-sub {
    margin-top: 0.75rem;
    font-size: 1rem;
    color: var(--muted);
    max-width: 480px;
  }

  /* ── ABOUT ── */
  #about {
    padding: 7rem clamp(1.5rem, 6vw, 5rem);
    border-top: 1px solid var(--border);
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
  }

  .about-text p {
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 1.25rem;
    font-size: 1.02rem;
  }

  .about-text p strong { color: var(--text); }

  .about-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    position: relative;
    overflow: hidden;
  }

  .about-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--violet));
  }

  .terminal-line {
    font-family: var(--mono);
    font-size: 0.82rem;
    line-height: 2;
    color: var(--muted);
  }

  .terminal-line .prompt  { color: var(--cyan); }
  .terminal-line .cmd     { color: var(--text); }
  .terminal-line .output  { color: var(--violet); }
  .terminal-line .comment { color: #3d4a61; }

  .skills-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 1.5rem;
  }

  .skill-tag {
    font-family: var(--mono);
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    padding: 5px 12px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--muted);
    transition: border-color 0.2s, color 0.2s;
  }

  .skill-tag:hover { border-color: var(--cyan); color: var(--cyan); }

  /* ── SERVICES ── */
  #services {
    padding: 7rem clamp(1.5rem, 6vw, 5rem);
    border-top: 1px solid var(--border);
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
  }

  .service-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.25s;
    cursor: default;
  }

  .service-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-4px);
  }

  .service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, var(--cyan-dim), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
  }

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

  .service-card.violet-hover:hover { border-color: rgba(155,109,255,0.35); }
  .service-card.violet-hover::after {
    background: radial-gradient(circle at top left, var(--violet-dim), transparent 60%);
  }

  .service-icon {
    width: 48px; height: 48px;
    background: var(--cyan-dim);
    border: 1px solid rgba(0,229,200,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.4rem;
  }

  .service-card.violet-hover .service-icon {
    background: var(--violet-dim);
    border-color: rgba(155,109,255,0.15);
  }

  h3 {
    font-family: var(--sans);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.6rem;
  }

  .service-card p {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
  }

  .service-tags { display: flex; flex-wrap: wrap; gap: 6px; }

  .service-tag {
    font-family: var(--mono);
    font-size: 0.68rem;
    letter-spacing: 0.04em;
    padding: 4px 10px;
    border-radius: 4px;
    background: rgba(0,229,200,0.06);
    color: var(--cyan);
    border: 1px solid rgba(0,229,200,0.12);
  }

  .service-card.violet-hover .service-tag {
    background: rgba(155,109,255,0.06);
    color: var(--violet);
    border-color: rgba(155,109,255,0.12);
  }

  /* ── PROCESS ── */
  #process {
    padding: 7rem clamp(1.5rem, 6vw, 5rem);
    border-top: 1px solid var(--border);
  }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
  }

  .process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), var(--cyan), var(--border), transparent);
  }

  .process-step {
    padding: 0 1.5rem 2rem;
    text-align: center;
    position: relative;
  }

  .step-num {
    width: 56px; height: 56px;
    border-radius: 50%;
    border: 1px solid var(--border-glow);
    background: var(--bg2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-family: var(--mono);
    font-size: 0.82rem;
    color: var(--cyan);
    position: relative;
    z-index: 1;
  }

  .step-title {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: var(--text);
  }

  .step-desc {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.65;
  }

  /* ── CONTACT ── */
  #contact {
    padding: 7rem clamp(1.5rem, 6vw, 5rem);
    border-top: 1px solid var(--border);
  }

  .contact-inner { max-width: 640px; margin: 0 auto; }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2.5rem;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  label {
    font-family: var(--mono);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
  }

  input, textarea, select {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text);
    font-family: var(--sans);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
  }

  input:focus, textarea:focus, select:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(0,229,200,0.08);
  }

  textarea { resize: vertical; min-height: 130px; }
  select option { background: var(--bg2); }

  /* reCAPTCHA dark theme wrapper */
  .captcha-wrap {
    display: flex;
    align-items: center;
    gap: 0;
  }

  /* Force reCAPTCHA to dark theme via iframe filter */
  .g-recaptcha iframe {
    filter: invert(0.9) hue-rotate(180deg);
    border-radius: 6px;
  }

  .form-feedback {
    font-family: var(--mono);
    font-size: 0.82rem;
    padding: 12px 16px;
    border-radius: 8px;
    display: none;
  }

  .form-feedback.success {
    color: var(--cyan);
    background: var(--cyan-dim);
    border: 1px solid rgba(0,229,200,0.2);
  }

  .form-feedback.error {
    color: #ff6b6b;
    background: rgba(255,107,107,0.08);
    border: 1px solid rgba(255,107,107,0.2);
  }

  /* ── FOOTER ── */
  footer {
    padding: 3rem clamp(1.5rem, 6vw, 5rem);
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 1;
  }

  .footer-logo {
    font-family: var(--mono);
    font-size: 0.9rem;
    color: var(--cyan);
    text-decoration: none;
  }

  .footer-logo-img {
    height: 28px;
    width: auto;
    filter: brightness(1);
    opacity: 0.7;
    transition: opacity 0.2s;
  }

  .logo-img:hover .footer-logo-img { opacity: 1; }

  .footer-copy {
    font-size: 0.82rem;
    color: var(--muted);
    font-family: var(--mono);
  }

  .footer-links { display: flex; gap: 1.5rem; }

  .footer-links a {
    font-family: var(--mono);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--cyan); }

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

  .reveal.visible { opacity: 1; transform: none; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .process-steps::before { display: none; }
    .process-steps { gap: 1.5rem; }
    .process-step { text-align: left; display: flex; align-items: flex-start; gap: 1rem; padding: 0; }
    .step-num { flex-shrink: 0; margin: 0; }
  }

  @media (max-width: 700px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .form-row { grid-template-columns: 1fr; }
    .hero-stats { gap: 2rem; }
    h1 { font-size: 2.4rem; }
  }
  /* ── PROJECTS ── */
  #projects {
    padding: 7rem clamp(1.5rem, 6vw, 5rem);
    border-top: 1px solid var(--border);
  }

  .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
  }

  .project-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.25s;
  }

  .project-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--violet));
  }

  .project-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, var(--cyan-dim), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
  }

  .project-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-4px);
  }

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

  .project-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
  }

  .project-icon {
    width: 48px; height: 48px;
    background: var(--cyan-dim);
    border: 1px solid rgba(0,229,200,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
  }

  .project-meta {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .project-platform {
    font-family: var(--mono);
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    padding: 4px 10px;
    border-radius: 4px;
    background: var(--violet-dim);
    color: var(--violet);
    border: 1px solid rgba(155,109,255,0.15);
  }

  .project-status {
    font-family: var(--mono);
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    padding: 4px 10px;
    border-radius: 4px;
    background: rgba(0,229,200,0.08);
    color: var(--cyan);
    border: 1px solid rgba(0,229,200,0.15);
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .project-status::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 5px var(--cyan);
    animation: pulse 2s infinite;
  }

  .project-tagline {
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 500;
    margin-bottom: 0.75rem;
  }

  .project-desc {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 1.25rem;
  }

  .project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 1.5rem;
  }

  .project-tag {
    font-family: var(--mono);
    font-size: 0.68rem;
    letter-spacing: 0.04em;
    padding: 4px 10px;
    border-radius: 4px;
    background: rgba(0,229,200,0.06);
    color: var(--cyan);
    border: 1px solid rgba(0,229,200,0.12);
  }

  .project-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
  }

  .project-link-primary {
    font-family: var(--mono);
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    color: var(--cyan);
    text-decoration: none;
    transition: opacity 0.2s;
  }

  .project-link-primary:hover { opacity: 0.7; }

  .project-link-secondary {
    font-family: var(--mono);
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
  }

  .project-link-secondary:hover { color: var(--violet); }

  .project-app-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
  }

  /* ── PROJECT SCREENSHOTS ── */
  .screenshot-placeholder {
    border: 1px dashed rgba(0,229,200,0.2);
    border-radius: var(--radius);
    padding: 1.25rem;
    text-align: center;
    margin-bottom: 1.25rem;
    background: rgba(0,229,200,0.03);
  }

  .screenshot-placeholder span {
    font-family: var(--mono);
    font-size: 0.78rem;
    color: var(--muted);
    letter-spacing: 0.06em;
  }

  .project-screenshots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
    margin-bottom: 1.25rem;
  }

  .project-screenshots img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--border);
    object-fit: cover;
  }

  /* ── PREVENT HORIZONTAL SCROLL ON MOBILE ── */
  @media (max-width: 768px) {
    .hero-orb { display: none; }
    section, footer, nav { max-width: 100%; overflow-x: hidden; }
    .services-grid, .projects-grid, .process-steps, .about-grid { width: 100%; }
    .g-recaptcha { transform: scale(0.9); transform-origin: left center; }
  }
