/* ProRes India — css/home.css */

:root {
    --ink: #0f0f0f;
    --paper: #f8f6f1;
    --paper-2: #eeece6;
    --paper-3: #e4e1d8;
    --amber: #F5A623;
    --amber-dark: #D4851A;
    --amber-light: #FFC85C;
    --charcoal: #1a1a1a;
    --muted: #7a7a7a;
    --muted-2: #aaaaaa;
    --card-bg: #ffffff;
    --border: rgba(0,0,0,0.08);
    --border-strong: rgba(0,0,0,0.15);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--paper);
    color: var(--ink);
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
    cursor: none;
  }

  /* CURSOR */
  .cursor {
    position: fixed; width: 10px; height: 10px;
    background: var(--amber); border-radius: 50%;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s;
    mix-blend-mode: multiply;
  }
  .cursor-ring {
    position: fixed; width: 36px; height: 36px;
    border: 1.5px solid rgba(245,166,35,0.5); border-radius: 50%;
    pointer-events: none; z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.12s ease, width 0.3s, height 0.3s;
  }
  body:has(a:hover) .cursor, body:has(button:hover) .cursor {
    width: 18px; height: 18px; background: var(--ink);
  }
  body:has(a:hover) .cursor-ring, body:has(button:hover) .cursor-ring {
    width: 54px; height: 54px; border-color: rgba(15,15,15,0.3);
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.2rem 4rem;
    background: rgba(248,246,241,0.88);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s, box-shadow 0.3s;
  }
  .nav-logo img { height: 38px; width: auto; display: block; }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a {
    color: var(--muted); text-decoration: none; font-size: 0.8rem;
    font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
    transition: color 0.3s; position: relative;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1.5px; background: var(--amber);
    transition: width 0.3s;
  }
  .nav-links a:hover { color: var(--ink); }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta {
    background: var(--ink); color: #fff;
    padding: 0.65rem 1.4rem; border-radius: 2px;
    font-family: 'Syne', sans-serif; font-weight: 700;
    font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
    text-decoration: none; transition: background 0.3s, transform 0.2s;
  }
  .nav-cta:hover { background: var(--amber); color: var(--ink); transform: translateY(-1px); }

  /* HERO */
  .hero {
    min-height: 100vh; display: flex; flex-direction: column; justify-content: flex-end;
    padding: 0 4rem 6rem; position: relative; overflow: hidden;
    background: var(--paper);
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 50% 60% at 85% 15%, rgba(245,166,35,0.12) 0%, transparent 60%),
      radial-gradient(ellipse 40% 50% at 10% 85%, rgba(245,166,35,0.06) 0%, transparent 50%);
  }
  .hero-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(var(--border) 1px, transparent 1px),
      linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
  }
  .hero-shutter {
    position: absolute; top: 15%; right: 8%;
    width: 340px; height: 340px; opacity: 0.06;
    animation: slowSpin 30s linear infinite;
  }

  .hero-eyebrow {
    font-family: 'Space Mono', monospace; font-size: 0.7rem;
    letter-spacing: 0.22em; text-transform: uppercase; color: var(--amber-dark);
    margin-bottom: 1.5rem; display: flex; align-items: center; gap: 1rem;
    opacity: 0; animation: fadeUp 0.8s 0.3s forwards;
  }
  .hero-eyebrow::before { content: ''; flex: none; width: 36px; height: 1.5px; background: var(--amber); }

  .hero-headline {
    font-family: 'Syne', sans-serif; font-weight: 800;
    font-size: clamp(3.5rem, 8vw, 8rem); line-height: 0.93;
    letter-spacing: -0.04em; margin-bottom: 3rem;
    opacity: 0; animation: fadeUp 0.8s 0.5s forwards;
    color: var(--ink);
  }
  .hero-headline .accent { color: var(--amber); display: block; }
  .hero-headline .outline {
    -webkit-text-stroke: 2px var(--ink); color: transparent; display: block;
  }

  .hero-bottom {
    display: flex; align-items: flex-end; justify-content: space-between;
    opacity: 0; animation: fadeUp 0.8s 0.7s forwards;
  }
  .hero-desc {
    max-width: 420px; font-size: 1.05rem; line-height: 1.7;
    color: var(--muted); font-weight: 300;
  }
  .hero-desc strong { color: var(--ink); font-weight: 500; }
  .hero-actions { display: flex; gap: 1rem; flex-direction: column; align-items: flex-end; }

  .btn-primary {
    display: inline-flex; align-items: center; gap: 0.75rem;
    background: var(--ink); color: #fff;
    padding: 1rem 2rem; border-radius: 2px;
    font-family: 'Syne', sans-serif; font-weight: 700;
    font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase;
    text-decoration: none; border: none; cursor: none;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  }
  .btn-primary:hover { background: var(--amber); color: var(--ink); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(245,166,35,0.3); }
  .btn-amber {
    display: inline-flex; align-items: center; gap: 0.75rem;
    background: var(--amber); color: var(--ink);
    padding: 1rem 2rem; border-radius: 2px;
    font-family: 'Syne', sans-serif; font-weight: 700;
    font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase;
    text-decoration: none; border: none; cursor: none;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  }
  .btn-amber:hover { background: var(--amber-dark); color: #fff; transform: translateY(-2px); }
  .btn-ghost {
    display: inline-flex; align-items: center; gap: 0.75rem;
    background: transparent; color: var(--ink);
    padding: 1rem 2rem; border-radius: 2px;
    border: 1.5px solid var(--border-strong);
    font-family: 'Syne', sans-serif; font-weight: 600;
    font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase;
    text-decoration: none; cursor: none;
    transition: border-color 0.3s, transform 0.2s, background 0.3s;
  }
  .btn-ghost:hover { border-color: var(--ink); background: var(--ink); color: #fff; transform: translateY(-2px); }

  .hero-scroll {
    font-family: 'Space Mono', monospace; font-size: 0.6rem;
    letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-2);
    display: flex; align-items: center; gap: 0.75rem;
    position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
    opacity: 0; animation: fadeUp 0.8s 1.1s forwards;
  }
  .scroll-line { width: 36px; height: 1px; background: var(--muted-2); }

  /* MARQUEE */
  .marquee-section {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden; padding: 1.1rem 0;
    background: var(--amber); 
  }
  .marquee-track {
    display: flex; gap: 3rem; width: max-content;
    animation: marquee 22s linear infinite;
  }
  .marquee-item {
    font-family: 'Syne', sans-serif; font-weight: 700;
    font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--ink); white-space: nowrap;
    display: flex; align-items: center; gap: 3rem;
  }
  .marquee-item .dot { color: rgba(0,0,0,0.4); font-size: 1rem; }

  /* SECTION BASE */
  section { padding: 8rem 4rem; position: relative; }
  .section-label {
    font-family: 'Space Mono', monospace; font-size: 0.68rem;
    letter-spacing: 0.25em; text-transform: uppercase; color: var(--amber-dark);
    margin-bottom: 1.5rem; display: flex; align-items: center; gap: 1rem;
  }
  .section-label::before { content: ''; flex: none; width: 28px; height: 1.5px; background: var(--amber); }
  .section-title {
    font-family: 'Syne', sans-serif; font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.0;
    letter-spacing: -0.03em; margin-bottom: 1.5rem; color: var(--ink);
  }

  /* SERVICES */
  .services { background: var(--paper-2); }
  .services-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 4.5rem;
  }
  .services-desc { max-width: 320px; color: var(--muted); line-height: 1.75; font-weight: 300; }
  .services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
    background: var(--border); border: 1px solid var(--border);
  }
  .service-card {
    background: var(--card-bg); padding: 2.5rem; position: relative;
    overflow: hidden; transition: background 0.4s; cursor: none;
  }
  .service-card::before {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 100%; height: 3px; background: var(--amber);
    transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
  }
  .service-card:hover { background: #fffbf3; }
  .service-card:hover::before { transform: scaleX(1); }
  .service-num {
    font-family: 'Space Mono', monospace; font-size: 0.68rem;
    color: var(--amber-dark); letter-spacing: 0.1em; margin-bottom: 2rem;
  }
  .service-icon { font-size: 2rem; margin-bottom: 1.5rem; display: block; transition: transform 0.3s; }
  .service-card:hover .service-icon { transform: scale(1.15) rotate(-5deg); }
  .service-name {
    font-family: 'Syne', sans-serif; font-weight: 700;
    font-size: 1.15rem; margin-bottom: 0.75rem; color: var(--ink);
  }
  .service-text { color: var(--muted); font-size: 0.875rem; line-height: 1.7; font-weight: 300; }
  .service-arrow {
    position: absolute; bottom: 2rem; right: 2rem; color: var(--amber);
    font-size: 1.2rem; opacity: 0; transform: translateX(-10px);
    transition: opacity 0.3s, transform 0.3s;
  }
  .service-card:hover .service-arrow { opacity: 1; transform: translateX(0); }

  /* WORK */
  .work { background: var(--ink); }
  .work .section-label { color: var(--amber); }
  .work .section-label::before { background: var(--amber); }
  .work .section-title { color: var(--paper); }
  .work-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 4rem; }
  .work-ghost {
    display: inline-flex; align-items: center; gap: 0.75rem;
    background: transparent; color: var(--paper);
    padding: 0.85rem 1.75rem; border-radius: 2px;
    border: 1.5px solid rgba(255,255,255,0.2);
    font-family: 'Syne', sans-serif; font-weight: 600;
    font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase;
    text-decoration: none; cursor: none;
    transition: border-color 0.3s, background 0.3s;
  }
  .work-ghost:hover { border-color: var(--amber); color: var(--amber); }
  .work-grid { display: grid; grid-template-columns: 1.4fr 1fr; grid-template-rows: auto auto; gap: 1.5rem; }
  .work-item {
    position: relative; overflow: hidden; border-radius: 2px;
    aspect-ratio: 4/3; cursor: none; background: #1a1a1a;
  }
  .work-item:first-child { grid-row: 1 / 3; aspect-ratio: unset; }
  .work-bg { position: absolute; inset: 0; transition: transform 0.6s ease; }
  .work-item:hover .work-bg { transform: scale(1.05); }
  .work-bg-1 { background: linear-gradient(135deg, #1a0f00 0%, #F5A623 70%, #FFC85C 100%); }
  .work-bg-2 { background: linear-gradient(135deg, #0f0f1a 0%, #6B5CE7 80%); }
  .work-bg-3 { background: linear-gradient(135deg, #0f1a0f 0%, #2ECC71 80%); }
  .work-pattern {
    position: absolute; inset: 0; opacity: 0.1;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,0.15) 20px, rgba(255,255,255,0.15) 21px);
  }
  .work-info {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    transform: translateY(100%); transition: transform 0.4s;
  }
  .work-item:hover .work-info { transform: translateY(0); }
  .work-tag {
    font-family: 'Space Mono', monospace; font-size: 0.62rem;
    letter-spacing: 0.15em; text-transform: uppercase; color: var(--amber); margin-bottom: 0.5rem;
  }
  .work-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.05rem; color: #fff; }
  .work-label {
    position: absolute; top: 1.5rem; left: 1.5rem;
    background: rgba(255,255,255,0.15); backdrop-filter: blur(10px);
    padding: 0.35rem 0.75rem; border-radius: 2px;
    font-family: 'Space Mono', monospace; font-size: 0.6rem;
    letter-spacing: 0.1em; text-transform: uppercase; color: #fff;
  }
  .work-large-text {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    font-family: 'Syne', sans-serif; font-weight: 800; font-size: 5rem;
    color: rgba(255,255,255,0.1); letter-spacing: -0.05em; pointer-events: none;
  }

  /* STATS */
  .stats {
    padding: 5rem 4rem;
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
    background: var(--card-bg);
  }
  .stat-item { text-align: center; }
  .stat-num {
    font-family: 'Syne', sans-serif; font-weight: 800;
    font-size: 3.5rem; letter-spacing: -0.04em; color: var(--ink);
    line-height: 1; display: block; margin-bottom: 0.5rem;
  }
  .stat-num .accent { color: var(--amber); }
  .stat-label {
    font-family: 'Space Mono', monospace; font-size: 0.68rem;
    letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
  }

  /* PROCESS */
  .process { background: var(--paper); }
  .process-list {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
    margin-top: 4rem; position: relative;
  }
  .process-list::before {
    content: ''; position: absolute; top: 2rem; left: 2rem; right: 2rem;
    height: 1px; background: linear-gradient(90deg, var(--amber), var(--amber-dark));
    opacity: 0.3;
  }
  .process-step { padding: 4.5rem 2rem 2rem; position: relative; }
  .process-num {
    position: absolute; top: 0; left: 2rem;
    width: 4rem; height: 4rem;
    background: var(--card-bg); border: 1.5px solid var(--amber);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Space Mono', monospace; font-size: 0.75rem; font-weight: 700;
    color: var(--amber-dark); transition: background 0.3s, border-color 0.3s, color 0.3s;
  }
  .process-step:hover .process-num { background: var(--amber); color: var(--ink); border-color: var(--amber); }
  .process-step-title {
    font-family: 'Syne', sans-serif; font-weight: 700;
    font-size: 1.05rem; margin-bottom: 0.75rem; color: var(--ink);
  }
  .process-step-text { color: var(--muted); font-size: 0.875rem; line-height: 1.75; font-weight: 300; }

  /* AI SECTION */
  .ai-section { background: var(--paper-2); }
  .ai-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-top: 4rem; }
  .ai-visual {
    position: relative; height: 480px;
    background: var(--card-bg); border-radius: 4px;
    overflow: hidden; border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(0,0,0,0.07);
  }
  .ai-orb {
    position: absolute; width: 200px; height: 200px; border-radius: 50%;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(245,166,35,0.7), rgba(212,133,26,0.3), transparent);
    animation: orbPulse 3s ease-in-out infinite; filter: blur(30px);
  }
  .ai-orb-2 {
    position: absolute; width: 100px; height: 100px; border-radius: 50%;
    top: 25%; left: 68%;
    background: radial-gradient(circle, rgba(245,166,35,0.4), transparent);
    animation: orbPulse 4s 1s ease-in-out infinite; filter: blur(20px);
  }
  .ai-rings { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
  .ai-ring {
    position: absolute; border-radius: 50%;
    border: 1px solid rgba(245,166,35,0.2);
    animation: ringExpand 4s linear infinite;
  }
  .ai-ring:nth-child(1) { width: 110px; height: 110px; animation-delay: 0s; }
  .ai-ring:nth-child(2) { width: 210px; height: 210px; animation-delay: 1s; }
  .ai-ring:nth-child(3) { width: 310px; height: 310px; animation-delay: 2s; }
  .ai-ring:nth-child(4) { width: 410px; height: 410px; animation-delay: 3s; }
  .ai-center-text {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.4rem;
    text-align: center; letter-spacing: -0.03em; z-index: 2; color: var(--ink);
  }
  .ai-center-text small {
    display: block; font-family: 'Space Mono', monospace; font-size: 0.58rem;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--amber-dark); margin-top: 0.25rem;
  }
  .ai-chips {
    position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
    display: flex; flex-wrap: wrap; gap: 0.4rem;
  }
  .ai-chip {
    background: rgba(245,166,35,0.1); border: 1px solid rgba(245,166,35,0.35);
    padding: 0.3rem 0.7rem; border-radius: 20px;
    font-family: 'Space Mono', monospace; font-size: 0.58rem;
    letter-spacing: 0.08em; color: var(--amber-dark);
  }
  .ai-content p { color: var(--muted); line-height: 1.8; font-weight: 300; margin-bottom: 1.5rem; }
  .ai-features {
    list-style: none; display: grid; grid-template-columns: 1fr 1fr;
    gap: 0.85rem; margin-bottom: 2.5rem;
  }
  .ai-features li {
    display: flex; align-items: center; gap: 0.65rem;
    font-size: 0.875rem; color: var(--ink);
  }
  .ai-features li::before { content: '→'; color: var(--amber-dark); font-family: monospace; font-weight: bold; }

  /* TESTIMONIAL */
  .testimonial-section {
    background: var(--ink); padding: 6rem 4rem;
    overflow: hidden; position: relative;
  }
  .testimonial-section::before {
    content: '"'; position: absolute; top: -3rem; left: 3rem;
    font-family: 'Syne', sans-serif; font-weight: 800; font-size: 20rem;
    color: rgba(245,166,35,0.07); line-height: 1; pointer-events: none;
  }
  .testimonial-inner { max-width: 900px; margin: 0 auto; text-align: center; }
  .t-section-label { font-family: 'Space Mono', monospace; font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--amber); margin-bottom: 2.5rem; justify-content: center; display: flex; }
  .testimonial-quote {
    font-family: 'Syne', sans-serif; font-weight: 600;
    font-size: clamp(1.3rem, 2.5vw, 2rem); line-height: 1.45;
    letter-spacing: -0.02em; margin-bottom: 2.5rem; color: var(--paper);
  }
  .testimonial-quote em { color: var(--amber); font-style: normal; }
  .testimonial-author { display: flex; align-items: center; justify-content: center; gap: 1rem; }
  .author-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    border: 2px solid var(--amber);
    background: linear-gradient(135deg, var(--amber), var(--amber-dark));
    display: flex; align-items: center; justify-content: center;
    font-family: 'Syne', sans-serif; font-weight: 700; color: var(--ink); font-size: 0.85rem;
  }
  .author-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.9rem; color: var(--paper); }
  .author-role { font-family: 'Space Mono', monospace; font-size: 0.62rem; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); }
  .testimonial-dots { display: flex; gap: 0.5rem; justify-content: center; margin-top: 2rem; }
  .t-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.15); cursor: none; transition: background 0.3s, width 0.3s;
  }
  .t-dot.active { background: var(--amber); width: 24px; border-radius: 4px; }

  /* TEAM */
  .team { background: var(--paper-3); }
  .team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 4rem; max-width: 680px; text-align: left; }
  .team-card {
    position: relative; overflow: hidden; border-radius: 2px;
    background: var(--card-bg); cursor: none; transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border);
  }
  .team-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
  .team-avatar {
    height: 220px; position: relative;
    display: flex; align-items: center; justify-content: center; overflow: hidden;
  }
  .team-avatar-bg { position: absolute; inset: 0; }
  .team-avatar-bg-1 { background: linear-gradient(135deg, #fff8ee, #F5A623 150%); }
  .team-avatar-bg-2 { background: linear-gradient(135deg, #f0f4ff, #6B5CE7 150%); }
  .team-avatar-bg-3 { background: linear-gradient(135deg, #f0fff4, #2ECC71 150%); }
  .team-avatar-bg-4 { background: linear-gradient(135deg, #fff0f0, #E74C3C 150%); }
  .team-avatar-letter {
    position: relative; z-index: 1;
    font-family: 'Syne', sans-serif; font-weight: 800; font-size: 5rem;
    color: rgba(0,0,0,0.1); letter-spacing: -0.05em;
  }

  .team-photo {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
    display: block;
  }
  .team-card-info { padding: 1.5rem; border-top: 1px solid var(--border); }
  .team-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 0.25rem; color: var(--ink); }
  .team-role { font-family: 'Space Mono', monospace; font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber-dark); }

  /* CTA */
  .cta-section {
    text-align: center; padding: 10rem 4rem;
    position: relative; overflow: hidden;
    background: var(--paper);
  }
  .cta-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 50% 70% at 50% 50%, rgba(245,166,35,0.1) 0%, transparent 70%);
  }
  .cta-section .section-label { justify-content: center; }
  .cta-section .section-label::before { display: none; }
  .cta-title {
    font-family: 'Syne', sans-serif; font-weight: 800;
    font-size: clamp(3rem, 6vw, 6rem); line-height: 0.95;
    letter-spacing: -0.04em; margin-bottom: 1.5rem; color: var(--ink);
  }
  .cta-title span { color: var(--amber); }
  .cta-sub { color: var(--muted); max-width: 480px; margin: 0 auto 3rem; line-height: 1.75; font-weight: 300; }
  .cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
  .contact-chips { display: flex; gap: 1.5rem; justify-content: center; margin-top: 2.5rem; flex-wrap: wrap; }
  .contact-chip {
    display: flex; align-items: center; gap: 0.5rem;
    color: var(--muted); font-size: 0.875rem; text-decoration: none; transition: color 0.3s;
  }
  .contact-chip:hover { color: var(--amber-dark); }
  .contact-chip .icon { color: var(--amber); }

  /* FOOTER */
  footer {
    border-top: 1px solid var(--border);
    padding: 3rem 4rem; background: var(--ink);
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 2rem;
  }
  .footer-logo img { height: 32px; width: auto; filter: brightness(0) invert(1); }
  .footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-top: 0.4rem; }
  .footer-links { display: flex; gap: 2rem; }
  .footer-links a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.78rem; transition: color 0.3s; }
  .footer-links a:hover { color: var(--amber); }
  .footer-social { display: flex; gap: 0.75rem; }
  .social-btn {
    width: 36px; height: 36px; border-radius: 2px;
    border: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.85rem;
    transition: border-color 0.3s, color 0.3s;
  }
  .social-btn:hover { border-color: var(--amber); color: var(--amber); }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  @keyframes orbPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
  }
  @keyframes ringExpand {
    0% { opacity: 0.5; transform: scale(0.6); }
    100% { opacity: 0; transform: scale(1.3); }
  }
  @keyframes slowSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  .reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  @media (max-width: 900px) {
    nav { padding: 1.2rem 1.5rem; }
    .nav-links { display: none; }
    section { padding: 5rem 1.5rem; }
    .hero { padding: 0 1.5rem 4rem; }
    .hero-headline { font-size: 3rem; }
    .hero-bottom { flex-direction: column; gap: 2rem; align-items: flex-start; }
    .services-header { flex-direction: column; gap: 1.5rem; }
    .services-grid { grid-template-columns: 1fr; }
    .work-grid { grid-template-columns: 1fr; }
    .work-item:first-child { grid-row: auto; aspect-ratio: 4/3; }
    .stats { grid-template-columns: repeat(2, 1fr); padding: 4rem 1.5rem; }
    .process-list { grid-template-columns: 1fr 1fr; }
    .ai-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    footer { padding: 2rem 1.5rem; }
    .footer-links { display: none; }
  }

  /* FAQ SECTION */
  .faq-section { padding: 6rem 4rem; background: var(--paper-2); }
  .faq-section .section-title { margin-bottom: 0.75rem; max-width: 600px; }
  .faq-sub { color: var(--muted); font-size: 1rem; font-weight: 300; margin-bottom: 3rem; }
  .faq-list { max-width: 800px; display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--border); }
  .faq-item { border-bottom: 1px solid var(--border); }
  .faq-q {
    width: 100%; background: none; border: none; padding: 1.5rem 0;
    display: flex; justify-content: space-between; align-items: center;
    font-family: 'Syne', sans-serif; font-weight: 600; font-size: 1rem;
    color: var(--ink); text-align: left; cursor: none;
    transition: color 0.3s; gap: 1rem;
  }
  .faq-q:hover { color: var(--amber-dark); }
  .faq-q[aria-expanded="true"] { color: var(--amber-dark); }
  .faq-icon { flex: none; font-size: 1.3rem; font-weight: 300; color: var(--amber); transition: transform 0.3s; }
  .faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
  .faq-a { padding: 0 0 1.5rem; }
  .faq-a div { color: var(--muted); line-height: 1.75; font-weight: 300; font-size: 0.95rem; }
  @media (max-width: 900px) { .faq-section { padding: 4rem 1.5rem; } }


  /* CLIENT LOGO SCROLL */
  .clients-scroll-wrapper {
    overflow: hidden;
    padding: 1.5rem 0;
    background: var(--paper-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .clients-scroll-track {
    display: flex;
    gap: 4rem;
    width: max-content;
    animation: marquee 28s linear infinite;
    align-items: center;
  }
  .logo-wall-item {
    flex: none;
    width: 120px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
  }
  .logo-wall-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: grayscale(100%);
    opacity: 0.55;
    transition: filter 0.3s, opacity 0.3s, transform 0.3s;
  }
  .logo-wall-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.08);
  }


  /* AI MILESTONE TEASER */
  .ai-teaser-section {
    background: var(--ink);
    padding: 6rem 4rem;
  }
  .ai-teaser-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1.2fr;
    gap: 5rem; align-items: center;
  }
  .ai-teaser-img {
    position: relative; border-radius: 12px; overflow: hidden;
  }
  .ai-teaser-img img {
    width: 100%; display: block; border-radius: 12px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
  }
  .ai-teaser-glow {
    position: absolute; inset: -2px; border-radius: 14px;
    background: linear-gradient(135deg, rgba(245,166,35,0.5), transparent 55%, rgba(245,166,35,0.2));
    pointer-events: none;
  }
  .ai-teaser-label {
    font-family: 'Space Mono', monospace; font-size: 0.65rem;
    letter-spacing: 0.25em; text-transform: uppercase; color: var(--amber);
    margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.75rem;
  }
  .ai-teaser-label::before { content: ''; width: 28px; height: 1.5px; background: var(--amber); }
  .ai-teaser-title {
    font-family: 'Syne', sans-serif; font-weight: 800;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    color: #fff; line-height: 1.05; letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
  }
  .ai-teaser-title span { color: var(--amber); }
  .ai-teaser-badge {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: rgba(245,166,35,0.12); border: 1px solid rgba(245,166,35,0.3);
    color: var(--amber); padding: 0.4rem 0.9rem; border-radius: 20px;
    font-family: 'Space Mono', monospace; font-size: 0.6rem;
    letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.25rem;
  }
  .ai-teaser-body {
    font-size: 0.95rem; font-weight: 300; color: rgba(255,255,255,0.6);
    line-height: 1.8; margin-bottom: 1.5rem;
  }
  .ai-teaser-body strong { color: #fff; font-weight: 600; }
  .ai-teaser-tags {
    display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem;
  }
  .ai-teaser-tag {
    font-family: 'Space Mono', monospace; font-size: 0.58rem;
    letter-spacing: 0.07em; text-transform: uppercase;
    padding: 0.3rem 0.75rem; border-radius: 2px;
    border: 1px solid rgba(245,166,35,0.35); color: rgba(245,166,35,0.8);
    background: rgba(245,166,35,0.06);
  }
  .ai-teaser-link {
    display: inline-flex; align-items: center; gap: 0.5rem;
    color: var(--amber); font-weight: 700; font-size: 0.9rem;
    text-decoration: none; letter-spacing: 0.04em;
    font-family: 'Syne', sans-serif;
    border-bottom: 1px solid rgba(245,166,35,0.4);
    padding-bottom: 2px; transition: color 0.2s, border-color 0.2s;
  }
  .ai-teaser-link:hover { color: var(--amber-light); border-color: var(--amber-light); }
  @media (max-width: 900px) {
    .ai-teaser-section { padding: 4rem 1.5rem; }
    .ai-teaser-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  }


  .work-client-logo {
    position: absolute; top: 1.5rem; left: 1.5rem;
    width: 64px; height: 40px;
    background: rgba(255,255,255,0.92); border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    padding: 6px; z-index: 2;
  }
  .work-client-logo img {
    max-width: 100%; max-height: 100%; object-fit: contain;
  }

/* ─── MOBILE ENHANCEMENTS (additive only) ─── */

/* Cursor off on touch devices */
@media (hover: none) {
  .cursor, .cursor-ring { display: none !important; }
  body, * { cursor: auto !important; }
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px;
  background: none; border: none; cursor: pointer; padding: 4px; z-index: 200;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav-drawer {
  display: none;
  position: fixed; inset: 0; z-index: 150;
  background: var(--paper); padding: 6rem 2rem 3rem;
  flex-direction: column; opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-nav-drawer.open { opacity: 1; pointer-events: all; }
.mobile-nav-drawer a {
  display: block; font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 1.8rem; color: var(--ink); text-decoration: none;
  padding: 0.9rem 0; border-bottom: 1px solid var(--border);
}
.mobile-nav-drawer .mob-cta {
  margin-top: 2rem; background: var(--ink); color: #fff !important;
  padding: 0.9rem 1.5rem; border-radius: 2px; text-align: center;
  font-size: 0.95rem !important; font-weight: 600 !important;
}

@media (max-width: 900px) {
  .nav-hamburger { display: flex; }
  .mobile-nav-drawer { display: flex; }
  .nav-cta { display: none; }

  /* Hero improvements */
  .hero-headline { font-size: clamp(2.4rem, 10vw, 3.5rem) !important; }
  .hero-sub { font-size: 0.95rem; max-width: 100%; }
  .hero-cta-group { flex-direction: column; gap: 0.75rem; width: 100%; }
  .hero-cta-group .btn-primary,
  .hero-cta-group .btn-ghost { width: 100%; text-align: center; justify-content: center; }

  /* AI teaser */
  .ai-teaser-section { padding: 4rem 1.5rem; }
  .ai-teaser-inner { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Process — 1 col on mobile */
  .process-list { grid-template-columns: 1fr !important; }

  /* Stats */
  .stat-num { font-size: 3rem; }

  /* Team */
  .team-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* Section padding */
  section { padding: 4rem 1.5rem; }

  /* Footer */
  footer { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
  .footer-links { display: none; }
}

@media (max-width: 600px) {
  section { padding: 3.5rem 1.25rem; }
  .hero { padding: 0 1.25rem 3.5rem; }
  .hero-headline { font-size: clamp(2rem, 11vw, 2.8rem) !important; }
  .stats { padding: 3.5rem 1.25rem; }
  .stat-num { font-size: 2.4rem; }
  .service-card { padding: 1.5rem; }
  .team-grid { grid-template-columns: repeat(2, 1fr) !important; }
  footer { padding: 2rem 1.25rem; }
}

@media (max-width: 420px) {
  .hero-headline { font-size: 1.9rem !important; }
  .stats { grid-template-columns: 1fr 1fr !important; }
  .team-grid { grid-template-columns: 1fr 1fr !important; }
}
