  @font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400 600;
    font-display: swap;
    src: url('/fonts/inter-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }
  @font-face {
    font-family: 'Sora';
    font-style: normal;
    font-weight: 600 800;
    font-display: swap;
    src: url('/fonts/sora-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }

  :root {
    --orange: #FF6B35;
    --purple: #6C4DFF;
    --mint: #4ADEB5;
    --sky: #38BDF8;
    --yellow: #FFD34D;
    --dark: #0E1116;
    --light: #FAFAF8;
    --gradient1: linear-gradient(135deg, #FF6B35 0%, #6C4DFF 100%);
    --gradient2: linear-gradient(135deg, #6C4DFF 0%, #38BDF8 100%);
    --gradient3: linear-gradient(135deg, #4ADEB5 0%, #FFD34D 100%);
    --radius: 20px;
    --radius-pill: 999px;
    --shadow: 0 20px 60px rgba(14, 17, 22, 0.12);
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --section-pad: 96px 24px;
    --max-w: 1200px;
    --font-head: 'Sora', sans-serif;
    --font-body: 'Inter', sans-serif;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    background: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
  }
  .scroll-progress {
    position: fixed; z-index: 180; top: 0; left: 0;
    width: 100%; height: 3px; pointer-events: none;
    transform: scaleX(0); transform-origin: left center;
    background: var(--gradient1);
    box-shadow: 0 0 14px rgba(255,107,53,.5);
  }

  h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); line-height: 1.15; }

  a { text-decoration: none; color: inherit; }

  /* ---- NAV ---- */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(250, 250, 248, 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(14,17,22,0.06);
  }
  .nav-inner {
    max-width: var(--max-w); margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 24px;
  }
  .logo {
    display: flex; align-items: center;
    cursor: pointer;
  }
  .logo img {
    height: 42px; width: auto; display: block;
  }
  .logo.logo-footer {
    display: inline-flex;
  }
  .logo.logo-footer img {
    height: 34px;
  }
  .logo-svg { display: none; }
  .logo-footer .logo-svg { height: 34px; }
  .logo-footer .logo-svg .logo-dark { fill: #fff; }
  .logo-footer .logo-svg .logo-eye-outer { fill: #fff; }
  .logo-footer .logo-svg .logo-eye-white { fill: var(--dark); }
  .logo-footer .logo-svg .logo-eye-pupil { fill: #fff; }
  .nav-links { display: flex; align-items: center; gap: 32px; }
  .nav-toggle {
    display: none; width: 44px; height: 44px; border: 0; border-radius: 50%;
    background: var(--dark); color: #fff; cursor: pointer;
    align-items: center; justify-content: center; font-size: 20px;
  }
  .nav-links a {
    font-size: 15px; font-weight: 500; color: var(--dark); opacity: 0.7;
    transition: opacity 0.25s;
  }
  .nav-links a:hover { opacity: 1; }
  .nav-links .btn-primary {
    background: linear-gradient(135deg, #6C4DFF, #9B5CFF);
    color: #fff;
    opacity: 1;
    box-shadow: 0 12px 28px rgba(108,77,255,.2);
  }
  .nav-links .btn-primary:hover {
    box-shadow: 0 16px 36px rgba(108,77,255,.3);
  }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; border-radius: var(--radius-pill);
    background: linear-gradient(135deg, #6C4DFF, #9B5CFF); color: #fff;
    font-family: var(--font-head); font-weight: 600; font-size: 15px;
    border: none; cursor: pointer;
    transition: transform 0.3s var(--ease), box-shadow 0.3s;
    box-shadow: 0 12px 28px rgba(108,77,255,.2);
  }
  .btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 16px 36px rgba(108,77,255,.3);
  }
  .btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; border-radius: var(--radius-pill);
    background: transparent; color: var(--dark);
    font-family: var(--font-head); font-weight: 600; font-size: 15px;
    border: 2px solid rgba(14,17,22,0.15); cursor: pointer;
    transition: transform 0.3s var(--ease), background 0.25s, border-color 0.25s;
  }
  .btn-secondary:hover {
    transform: scale(1.05);
    background: rgba(14,17,22,0.04);
    border-color: rgba(14,17,22,0.3);
  }

  /* ---- HERO ---- */
  .hero {
    position: relative;
    min-height: 760px; padding: 132px 24px 82px;
    overflow: hidden;
    display: flex; align-items: center;
    background: #f7f7f5;
  }
  .hero > .hero-bg,
  .hero > .float-shape { display: none; }
  .hero-bg {
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
  }
  .blob {
    position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.3;
    animation: drift 8s ease-in-out infinite alternate;
  }
  .blob-1 { width: 500px; height: 500px; background: var(--orange); top: -100px; left: -100px; }
  .blob-2 { width: 400px; height: 400px; background: var(--purple); top: 60px; right: -80px; animation-delay: 2s; }
  .blob-3 { width: 300px; height: 300px; background: var(--mint); bottom: -60px; left: 40%; animation-delay: 4s; }
  @keyframes drift {
    0% { transform: translate(0,0) scale(1); }
    100% { transform: translate(30px, 20px) scale(1.08); }
  }
  .hero-content {
    position: relative; z-index: 1; width: 100%; max-width: var(--max-w); margin: 0 auto;
    display: grid; grid-template-columns: minmax(0, .88fr) minmax(440px, 1.12fr);
    align-items: start; gap: clamp(56px, 6vw, 92px);
  }
  .hero-copy { position: relative; z-index: 3; min-width: 0; max-width: 650px; }
  .hero h1 {
    max-width: 560px;
    font-size: clamp(38px, 3.78vw, 56px); font-weight: 800;
    line-height: 1.03; letter-spacing: -2.9px;
    margin-bottom: 26px; text-wrap: balance;
  }
  .hero h1 .headline-line { display: block; max-width: 100%; }
  .hero h1 .headline-accent { font-size: 1em; margin-bottom: .08em; }
  .hero h1 .headline-tight { letter-spacing: -3.2px; }
  .hero h1 .grad {
    background: none; -webkit-background-clip: initial; -webkit-text-fill-color: currentColor;
    color: var(--dark);
  }
  .hero-copy p {
    font-size: clamp(12px, .95vw, 13px); color: rgba(26,35,50,0.6);
    max-width: 470px; margin: 0 0 32px;
    line-height: 1.72; letter-spacing: -.18px; text-wrap: pretty;
  }
  .hero-btns { display: flex; justify-content: flex-start; gap: 12px; flex-wrap: wrap; }
  .hero-btns .btn-primary {
    background: linear-gradient(135deg, #6C4DFF, #9B5CFF);
    color: #fff;
    box-shadow: 0 12px 30px rgba(108,77,255,.22);
    padding: 14px 29px;
    font-size: 14px;
  }
  .hero-btns .btn-primary:hover {
    box-shadow: 0 16px 38px rgba(108,77,255,.32);
  }
  .hero-btns .btn-secondary {
    background: rgba(108,77,255,.08); color: #5b3fff; border-color: rgba(108,77,255,.24);
    padding: 14px 29px;
    font-size: 14px;
  }
  .hero-btns .btn-secondary:hover {
    background: rgba(108,77,255,.14); border-color: rgba(108,77,255,.42);
  }
  .hero-stage {
    position: relative; min-height: auto; isolation: isolate;
    display: grid; align-content: start; perspective: 1000px;
  }
  .lottie-frame {
    position: relative; z-index: 2; width: 100%; aspect-ratio: 16 / 9;
    border-radius: 18px; overflow: hidden;
    background:
      radial-gradient(circle at 32% 24%, rgba(108,77,255,.24), transparent 34%),
      radial-gradient(circle at 76% 72%, rgba(255,107,53,.20), transparent 38%),
      #0e1116;
    box-shadow: 0 18px 34px rgba(14,17,22,.18);
    transform-style: preserve-3d; will-change: transform;
    contain: layout paint style;
  }
  .hero-reel {
    display: block; width: 100%; height: 100%;
    object-fit: cover;
    background: #0e1116;
  }
  .hero-trust {
    margin: 0 0 14px;
    color: rgba(26,35,50,.44);
    font-family: var(--font-head); font-size: 12px; font-weight: 700;
    letter-spacing: .04em;
  }
  .stage-chip { display: none !important; }
  .laptop {
    position: relative; z-index: 2; width: min(480px, 90%);
    padding-bottom: 34px; transform-style: preserve-3d; will-change: transform;
  }
  .motion-card {
    position: relative; width: 88%; margin: 0 auto; aspect-ratio: 16 / 10;
    border: 10px solid #20242b; border-bottom-width: 14px;
    border-radius: 24px 24px 15px 15px; overflow: hidden;
    clip-path: inset(0 round 34px); contain: paint;
    background: linear-gradient(145deg, #161a22, #282031);
    box-shadow: 0 42px 90px rgba(14,17,22,.22);
    transform-style: preserve-3d;
  }
  .laptop-base {
    position: absolute; z-index: 3; left: 0; right: 0; bottom: 19px;
    height: 17px; border-radius: 3px 3px 14px 14px;
    background: linear-gradient(180deg, #d8dbe0, #8e949e);
    box-shadow: 0 13px 20px rgba(14,17,22,.18);
  }
  .laptop-base::before {
    content: ''; position: absolute; left: 50%; top: 0; transform: translateX(-50%);
    width: 86px; height: 6px; border-radius: 0 0 8px 8px;
    background: #747b86;
  }
  .laptop-base::after {
    content: ''; position: absolute; left: 5%; right: 5%; bottom: -5px;
    height: 6px; border-radius: 0 0 50% 50%; background: #737983;
  }
  .motion-card-grid {
    position: absolute; inset: 0; opacity: .14;
    background-image: radial-gradient(circle, #fff 1px, transparent 1px);
    background-size: 22px 22px;
  }
  .motion-orb {
    position: absolute; border-radius: 50%; filter: blur(.2px);
  }
  @keyframes shapeGlow {
    0%, 100% { opacity: .88; filter: brightness(.96); }
    50% { opacity: 1; filter: brightness(1.08); }
  }
  .motion-orb.one {
    width: 200px; height: 200px; left: -45px; top: 120px;
    background: linear-gradient(145deg, var(--orange), #ff9a58);
    animation: shapeGlow 5s ease-in-out infinite;
  }
  .motion-orb.two {
    width: 150px; height: 150px; right: -25px; bottom: -25px;
    background: linear-gradient(145deg, var(--purple), var(--sky));
    animation: shapeGlow 4.4s ease-in-out -1.5s infinite;
  }
  .motion-orb.three {
    width: 65px; height: 65px; right: 20px; top: 25px;
    background: var(--mint); animation: shapeGlow 3.6s ease-in-out -.8s infinite;
  }
  .geo-shape { position: absolute; z-index: 2; pointer-events: none; }
  .geo-triangle {
    width: 0; height: 0; right: 145px; top: 25px;
    border-left: 55px solid transparent; border-right: 55px solid transparent;
    border-bottom: 100px solid rgba(255,255,255,.85);
    animation: shapeGlow 4s ease-in-out -1s infinite;
  }
  .geo-capsule {
    width: 145px; height: 50px; left: 20px; top: 35px;
    border-radius: 999px; background: linear-gradient(90deg, var(--mint), var(--sky));
    transform: rotate(-12deg); animation: shapeGlow 4.8s ease-in-out -.5s infinite;
  }
  .motion-play {
    position: absolute; z-index: 3; inset: 50% auto auto 50%;
    width: 82px; height: 82px; transform: translate(-50%,-50%);
    border: 1px solid rgba(255,255,255,.45); border-radius: 50%;
    display: grid; place-items: center; color: #fff;
    background: rgba(255,255,255,.13); backdrop-filter: blur(12px);
    font-size: 24px; box-shadow: 0 12px 35px rgba(0,0,0,.2);
  }
  .stage-chip {
    position: absolute; z-index: 4; padding: 12px 17px;
    border-radius: 16px; background: rgba(255,255,255,.9);
    border: 1px solid rgba(14,17,22,.08); box-shadow: 0 14px 34px rgba(14,17,22,.12);
    font: 600 13px/1 var(--font-head); white-space: nowrap;
    backdrop-filter: blur(12px); will-change: transform;
  }
  .stage-chip::before { content: ''; display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 8px; }
  .chip-one { left: 0; top: 76px; transform: rotate(-5deg); }
  .chip-one::before { background: var(--orange); }
  .chip-two { right: -6px; top: 130px; transform: rotate(5deg); }
  .chip-two::before { background: var(--purple); }
  .chip-three { left: 28px; bottom: 74px; transform: rotate(4deg); }
  .chip-three::before { background: var(--mint); }
  .chip-four { right: 8px; bottom: 112px; transform: rotate(-4deg); }
  .chip-four::before { background: var(--sky); }
  .chip-five { left: 50%; bottom: 18px; transform: translateX(-50%) rotate(2deg); }
  .chip-five::before { background: var(--yellow); }
  .hero-btns .btn-primary,
  .hero-btns .btn-secondary {
    position: relative; overflow: hidden;
    transition: transform .4s var(--ease), box-shadow .4s, color .35s, background .35s, border-color .35s;
  }
  .hero-btns .btn-primary::after,
  .hero-btns .btn-secondary::after {
    content: '→'; display: inline-block;
    max-width: 0; opacity: 0; transform: translateX(-8px);
    transition: max-width .35s var(--ease), opacity .3s, transform .35s var(--ease);
  }
  .hero-btns .btn-primary:hover {
    transform: translateY(-5px) rotate(-1deg);
    box-shadow: 0 16px 34px rgba(255,107,53,.32);
  }
  .hero-btns .btn-secondary:hover {
    transform: translateY(-5px) rotate(1deg);
    color: #fff; background: var(--dark); border-color: var(--dark);
  }
  .hero-btns .btn-primary:hover::after,
  .hero-btns .btn-secondary:hover::after {
    max-width: 22px; opacity: 1; transform: translateX(0);
  }

  /* ---- FLOATING SHAPES ---- */
  .float-shape {
    position: absolute; z-index: 0; pointer-events: none;
    animation: floatY 6s ease-in-out infinite alternate;
  }
  @keyframes floatY {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-18px) rotate(8deg); }
  }

  /* ---- SECTION HEADINGS ---- */
  .section { padding: var(--section-pad); }
  .section-inner { max-width: var(--max-w); margin: 0 auto; }
  .section-label {
    font-family: var(--font-head); font-weight: 600; font-size: 13px;
    text-transform: uppercase; letter-spacing: 2px; color: var(--purple);
    margin-bottom: 12px;
  }
  .section-title {
    font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; letter-spacing: -0.8px;
    margin-bottom: 16px;
  }
  .section-desc {
    font-size: 17px; color: rgba(14,17,22,0.6); max-width: 580px; line-height: 1.7;
  }
  .section-desc.center { margin: 0 auto; text-align: center; }
  .section-title.center { text-align: center; }
  .section-label.center { text-align: center; }

  /* ---- TRUSTED BY ---- */
  .trusted { padding: 48px 24px 64px; text-align: center; }
  .trusted p {
    font-size: 14px; font-weight: 500; color: rgba(14,17,22,0.4);
    text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 32px;
  }
  .logo-marquee {
    display: flex; align-items: center; justify-content: center; gap: 48px;
    flex-wrap: wrap; max-width: var(--max-w); margin: 0 auto;
    opacity: 0.35;
  }
  .logo-marquee span {
    font-family: var(--font-head); font-weight: 700; font-size: 20px;
    white-space: nowrap;
    transition: opacity 0.3s;
  }
  .logo-marquee span:hover { opacity: 1.6; }

  /* ---- SERVICES ---- */
  .services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    margin-top: 56px;
  }
  .service-card {
    background: #fff; border-radius: var(--radius); padding: 36px 32px;
    box-shadow: var(--shadow);
    transition: transform 0.4s var(--ease), box-shadow 0.4s;
    cursor: default;
    position: relative; overflow: hidden;
  }
  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(14,17,22,0.16);
  }
  .service-icon {
    width: 56px; height: 56px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; margin-bottom: 20px;
  }
  .service-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
  .service-card p { font-size: 15px; color: rgba(14,17,22,0.6); line-height: 1.65; }

  /* ---- ANIMATION PLANS ---- */
  .plans-section { background: #fff; }
  .plans-prompt {
    display: inline-flex; align-items: center; gap: 9px;
    margin-top: 18px; padding: 10px 17px; border-radius: var(--radius-pill);
    border: 1px solid rgba(74,222,181,.48); background: rgba(74,222,181,.11);
    color: #147d61; font: 700 14px/1.35 var(--font-head);
    box-shadow: 0 8px 24px rgba(30,176,136,.1);
  }
  .plans-prompt::before { content: '↓'; font-size: 17px; }
  .plans-grid {
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px;
    max-width: 980px; margin: 48px auto 0; padding: 8px 4px 24px;
  }
  .plan-card {
    --plan-color: var(--mint);
    position: relative; display: flex; flex-direction: column; min-height: 100%;
    padding: 26px; overflow: hidden; border-radius: 24px;
    background: linear-gradient(145deg, #fff 0%, #fafbf9 100%);
    border: 1px solid rgba(14,17,22,.1);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 18px 55px rgba(14,17,22,.07);
    transition: transform .4s var(--ease), box-shadow .4s, border-color .4s;
  }
  .plan-card::before {
    content: ''; position: absolute; z-index: 1; top: 0; left: 7%; right: 7%; height: 3px;
    border-radius: 0 0 10px 10px;
    background: linear-gradient(90deg, transparent, var(--mint), transparent);
    transform: scaleX(0); transform-origin: center;
    transition: transform .45s var(--ease);
  }
  .plan-card::after {
    content: ''; position: absolute; z-index: 0; top: -90px; right: -70px;
    width: 220px; height: 220px; border-radius: 50%; pointer-events: none;
    background: var(--mint); opacity: 0; filter: blur(18px);
    transition: opacity .4s;
  }
  .plan-card > * { position: relative; z-index: 2; }
  .plan-card:hover {
    transform: translateY(-8px); border-color: var(--mint);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.95), 0 30px 80px rgba(30,176,136,.16);
  }
  .plan-card:hover::before { transform: scaleX(1); }
  .plan-card:hover::after { opacity: .1; }
  .plan-card:nth-child(5) {
    grid-column: 1 / -1;
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }
  .plan-card:nth-child(5) .plan-details {
    grid-template-columns: 1.15fr 1fr;
  }
  .plan-head {
    display: flex; align-items: center; gap: 15px;
    margin-bottom: 16px;
  }
  .plan-icon {
    display: grid; place-items: center; width: 44px; height: 44px; flex: 0 0 44px;
    border: 1px solid rgba(14,17,22,.08);
    margin-bottom: 0; border-radius: 13px; background: #f2f4f2;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.85), 0 10px 24px rgba(14,17,22,.07);
    font-size: 21px;
    transform-origin: center;
    transition: background .3s, border-color .3s, box-shadow .3s;
  }
  @keyframes planIconMotion {
    0% { transform: scale(1) rotate(0); }
    35% { transform: scale(1.16) rotate(-7deg); }
    65% { transform: scale(1.1) rotate(6deg); }
    100% { transform: scale(1.08) rotate(0); }
  }
  .plan-card:hover .plan-icon {
    border-color: var(--mint); background: rgba(74,222,181,.14);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 12px 28px rgba(30,176,136,.18);
    animation: planIconMotion .65s var(--ease) both;
  }
  .plan-card h3 { font-size: clamp(20px, 1.7vw, 26px); line-height: 1.15; letter-spacing: -.7px; }
  .plan-tagline {
    margin-bottom: 7px; font: 700 14px/1.45 var(--font-head);
    color: var(--dark); transition: color .3s;
  }
  .plan-card:hover .plan-tagline { color: #1e9f7c; }
  .plan-description {
    max-width: 660px; color: rgba(14,17,22,.58); font-size: 13px; line-height: 1.55;
  }
  .plan-details {
    display: grid; grid-template-columns: 1.1fr .9fr;
    gap: 18px; margin: 20px 0 22px; padding: 18px;
    border: 1px solid rgba(14,17,22,.07); border-radius: 18px;
    background: rgba(255,255,255,.62);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
  }
  .plan-card h4 {
    margin-bottom: 9px; color: rgba(14,17,22,.42);
    font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  }
  .plan-list {
    display: flex; flex-wrap: wrap; gap: 7px;
    margin: 0; padding: 0; list-style: none;
  }
  .plan-audience { display: flex; flex-wrap: wrap; gap: 7px; margin: 0; padding: 0; list-style: none; }
  .plan-list li, .plan-audience li {
    padding: 5px 8px; border-radius: 8px; color: rgba(14,17,22,.7);
    background: rgba(14,17,22,.045); font-size: 11px; line-height: 1.25;
  }
  .plan-list li::before, .plan-audience li::before {
    display: none;
  }
  .plan-card:hover .plan-list li::before,
  .plan-card:hover .plan-audience li::before { background: var(--mint); transform: scale(1.2); }
  .plan-card:hover .plan-list li,
  .plan-card:hover .plan-audience li { background: rgba(74,222,181,.14); }
  .plan-cta {
    display: inline-flex; align-items: center; gap: 9px; align-self: flex-start;
    margin-top: auto; padding: 10px 14px; border-radius: var(--radius-pill);
    color: #fff; background: var(--dark); font: 700 12px/1 var(--font-head);
    box-shadow: 0 10px 24px rgba(14,17,22,.16);
    transition: color .25s, background .25s, gap .3s var(--ease), transform .3s var(--ease);
  }
  .plan-cta::after { content: '→'; font-size: 19px; }
  .plan-cta:hover { color: #fff; background: var(--plan-color); gap: 14px; transform: translateY(-2px); }

  /* ---- FEATURED WORK ---- */
  .work-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
    margin-top: 56px;
  }
  .work-card {
    border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow); background: #fff;
    transition: transform 0.4s var(--ease);
    cursor: pointer;
  }
  .work-card:focus-visible {
    outline: 3px solid var(--purple); outline-offset: 4px;
  }
  .work-card:hover { transform: translateY(-6px) scale(1.01); }
  .work-card img {
    width: 100%; height: 260px; object-fit: cover;
    display: block;
    transition: transform 0.5s var(--ease);
    will-change: transform;
  }
  .work-card-rive {
    position: relative; display: grid; place-items: center; height: 260px; overflow: hidden;
    background: linear-gradient(145deg, #effbf9, #fff7ef);
  }
  .work-card-rive iframe {
    width: 220px; height: 220px; border: 0; pointer-events: none;
  }
  .work-card:hover img { transform: scale(1.04); }
  .extra-project { display: none; }
  .extra-project.wide-project { grid-column: 1 / -1; }
  .work-grid.expanded .extra-project { display: block; }
  .show-more-wrap { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
  .show-more-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 13px 28px; border: 1px solid rgba(14,17,22,.14);
    border-radius: var(--radius-pill); background: #fff; color: var(--dark);
    font: 700 14px/1 var(--font-head); cursor: pointer;
    box-shadow: 0 8px 24px rgba(14,17,22,.07);
    transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
  }
  .show-more-btn:hover {
    transform: translateY(-3px); border-color: rgba(108,77,255,.35);
    box-shadow: 0 13px 32px rgba(14,17,22,.12);
  }
  .show-more-btn .arrow { transition: transform .35s var(--ease); }
  .show-more-btn[aria-expanded="true"] .arrow { transform: rotate(180deg); }
  .work-card-body { padding: 28px 28px 32px; }
  .work-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
  .work-tag {
    font-size: 12px; font-weight: 600; padding: 4px 12px;
    border-radius: var(--radius-pill); color: var(--purple);
    background: rgba(108,77,255,0.08);
  }
  .work-card-body h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
  .work-card-body p { font-size: 14px; color: rgba(14,17,22,0.55); line-height: 1.6; }

  /* ---- PROCESS ---- */
  .process-section { background: var(--dark); color: #fff; }
  .process-section .section-label { color: var(--mint); }
  .process-section .section-desc { color: rgba(255,255,255,0.5); }
  .process-steps {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
    margin-top: 56px;
  }
  .process-steps-6 { grid-template-columns: repeat(3, 1fr); }
  .process-step {
    padding: 32px 24px; border-radius: var(--radius);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    transition: background 0.3s, transform 0.3s var(--ease);
  }
  .process-step:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
  }
  .step-num {
    font-family: var(--font-head); font-weight: 800; font-size: 32px;
    background: var(--gradient1); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
  }
  .process-step h4 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
  .process-step p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; }

  /* ---- WHY FUNIMATION ---- */
  .why-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
    margin-top: 56px;
  }
  .stat-card {
    text-align: center; padding: 40px 24px;
    background: #fff; border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s var(--ease);
  }
  .stat-card:hover { transform: translateY(-4px); }
  .stat-num {
    font-family: var(--font-head); font-weight: 800;
    font-size: 44px; margin-bottom: 8px;
  }
  .stat-card:nth-child(1) .stat-num { color: var(--orange); }
  .stat-card:nth-child(2) .stat-num { color: var(--purple); }
  .stat-card:nth-child(3) .stat-num { color: var(--mint); }
  .stat-card:nth-child(4) .stat-num { color: var(--sky); }
  .stat-label { font-size: 15px; font-weight: 500; color: rgba(14,17,22,0.55); }

  .why-points {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
    margin-top: 40px;
  }
  .why-point {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 24px; background: #fff; border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(14,17,22,0.06);
  }
  .why-point .check {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--gradient3); display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 14px; color: var(--dark);
  }
  .why-point p { font-size: 15px; color: rgba(14,17,22,0.7); line-height: 1.55; }

  /* ---- TESTIMONIALS ---- */
  .testimonials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    margin-top: 56px;
  }
  .test-card {
    padding: 36px 32px; border-radius: var(--radius);
    background: #fff; box-shadow: var(--shadow);
    transition: transform 0.3s var(--ease);
    position: relative;
  }
  .test-card:hover { transform: translateY(-4px); }
  .test-card::before {
    content: '"'; position: absolute; top: 20px; left: 28px;
    font-family: var(--font-head); font-size: 56px; font-weight: 800;
    background: var(--gradient1); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    line-height: 1; opacity: 0.25;
  }
  .test-card p { font-size: 15px; line-height: 1.7; color: rgba(14,17,22,0.7); margin-bottom: 24px; padding-top: 16px; }
  .test-author { display: flex; align-items: center; gap: 12px; }
  .test-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 700; color: #fff;
  }
  .test-author-info h5 { font-size: 14px; font-weight: 700; }
  .test-author-info span { font-size: 13px; color: rgba(14,17,22,0.45); }

  /* ---- FAQ ---- */
  .faq-list {
    max-width: 740px; margin: 56px auto 0;
  }
  .faq-item {
    border-bottom: 1px solid rgba(14,17,22,0.08);
  }
  .faq-q {
    width: 100%; padding: 24px 0;
    display: flex; justify-content: space-between; align-items: center;
    background: none; border: none; cursor: pointer;
    font-family: var(--font-head); font-size: 17px; font-weight: 600;
    color: var(--dark); text-align: left;
    transition: color 0.2s;
  }
  .faq-q:hover { color: var(--purple); }
  .faq-q .icon {
    width: 28px; height: 28px; border-radius: 50%;
    background: rgba(108,77,255,0.08); display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: var(--purple); flex-shrink: 0;
    transition: transform 0.3s var(--ease);
  }
  .faq-item.open .faq-q .icon { transform: rotate(45deg); }
  .faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s var(--ease), padding 0.3s;
  }
  .faq-item.open .faq-a { max-height: 200px; padding-bottom: 24px; }
  .faq-a p { font-size: 15px; color: rgba(14,17,22,0.6); line-height: 1.7; }

  /* ---- FINAL CTA ---- */
  .final-cta {
    text-align: center; padding: 120px 24px;
    position: relative; overflow: hidden;
    background: var(--dark); color: #fff;
  }
  .final-cta .blob { opacity: 0.18; }
  .final-cta .blob-1 { background: var(--orange); top: -120px; right: -80px; left: auto; }
  .final-cta .blob-2 { background: var(--purple); bottom: -100px; left: -60px; top: auto; right: auto; }
  .final-cta h2 {
    font-size: clamp(32px, 4vw, 52px); font-weight: 800; margin-bottom: 20px;
    position: relative; z-index: 1;
  }
  .final-cta p {
    font-size: 18px; color: rgba(255,255,255,0.55); max-width: 520px; margin: 0 auto 40px;
    position: relative; z-index: 1; line-height: 1.7;
  }
  .final-cta .btn-primary { position: relative; z-index: 1; font-size: 17px; padding: 16px 36px; }

  /* ---- FOOTER ---- */
  footer {
    background: var(--dark); color: rgba(255,255,255,0.45);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 64px 24px 40px;
  }
  .footer-inner {
    max-width: var(--max-w); margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  }
  .footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 16px; max-width: 320px; }
  .footer-col h6 {
    font-family: var(--font-head); font-weight: 700; font-size: 14px;
    color: #fff; margin-bottom: 16px;
  }
  .footer-col a {
    display: block; font-size: 14px; color: rgba(255,255,255,0.4);
    margin-bottom: 10px; transition: color 0.2s;
  }
  .footer-contact-text {
    display: block; font-size: 14px; line-height: 1.6;
    color: rgba(255,255,255,0.4); margin-bottom: 10px;
  }
  .footer-col a:hover { color: var(--orange); }
  .footer-bottom {
    max-width: var(--max-w); margin: 40px auto 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 13px;
  }

  /* ---- MODAL ---- */
  .modal-overlay {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(14,17,22,0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.4s var(--ease);
  }
  .modal-overlay.active {
    opacity: 1; pointer-events: all;
  }
  .modal {
    background: #fff; border-radius: 28px;
    width: 92%; max-width: 1060px; max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 40px 120px rgba(14,17,22,0.25);
    display: grid; grid-template-columns: 1fr 1fr;
    transform: translateY(40px) scale(0.95);
    transition: transform 0.5s var(--ease);
    position: relative;
  }
  .modal-overlay.active .modal {
    transform: translateY(0) scale(1);
  }
  .project-modal {
    display: block; max-width: 1120px; padding: 0;
    overflow: hidden; background: #fff;
  }
  #projectModal,
  #hancockProjectModal,
  #beforeHealthProjectModal,
  #selaCloudProjectModal,
  #upfitSupplyProjectModal,
  #mtechProjectModal,
  #greenopiaProjectModal,
  #secufyProjectModal,
  #farmerLinkProjectModal,
  #buddywerkingProjectModal,
  #carakitProjectModal,
  #gifyboxProjectModal,
  #mavenProjectModal,
  #bazaarProjectModal {
    align-items: flex-start; overflow-y: auto; padding: 32px 20px;
    overscroll-behavior: contain; touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
  }
  #projectModal .project-modal,
  #hancockProjectModal .project-modal,
  #beforeHealthProjectModal .project-modal,
  #selaCloudProjectModal .project-modal,
  #upfitSupplyProjectModal .project-modal,
  #mtechProjectModal .project-modal,
  #greenopiaProjectModal .project-modal,
  #secufyProjectModal .project-modal,
  #farmerLinkProjectModal .project-modal,
  #buddywerkingProjectModal .project-modal,
  #carakitProjectModal .project-modal,
  #gifyboxProjectModal .project-modal,
  #mavenProjectModal .project-modal,
  #bazaarProjectModal .project-modal {
    flex: 0 0 auto; max-height: none; margin: auto 0;
  }
  #bazaarProjectModal .project-modal { max-width: 1280px; }
  .project-media {
    position: relative; aspect-ratio: 16 / 9; background: #101410;
  }
  .project-media video {
    width: 100%; height: 100%; display: block; object-fit: contain;
  }
  .project-scenes {
    padding: 44px 48px 8px; background: #f4f7f2;
  }
  .project-scenes-head {
    display: flex; justify-content: space-between; align-items: end;
    gap: 24px; margin-bottom: 24px;
  }
  .project-scenes h3 { font-size: clamp(24px, 2.4vw, 34px); letter-spacing: -.6px; }
  .project-scenes-head p { color: rgba(14,17,22,.52); font-size: 14px; }
  .scene-grid {
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px;
  }
  .scene-grid a {
    display: block; overflow: hidden; border-radius: 16px;
    background: #fff; box-shadow: 0 8px 24px rgba(14,17,22,.08);
  }
  .scene-grid img {
    width: 100%; aspect-ratio: 16 / 9; display: block; object-fit: cover;
    transition: transform .55s var(--ease);
  }
  .scene-grid a:hover img { transform: scale(1.035); }
  .rive-project-gallery {
    padding: 54px 48px; background: #fff;
  }
  .rive-project-head {
    display: flex; justify-content: space-between; align-items: end;
    gap: 24px; margin-bottom: 30px;
  }
  .rive-project-head h3 { font-size: clamp(24px, 2.4vw, 34px); letter-spacing: -.6px; }
  .rive-project-head p { max-width: 470px; color: rgba(14,17,22,.52); font-size: 14px; text-align: right; }
  .rive-gallery-grid {
    display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px;
  }
  .rive-embed-card, .rive-info-card {
    display: grid; place-items: center; min-height: 245px; border-radius: 22px;
    border: 1px solid rgba(14,17,22,.07);
    background: #fbfcfb; overflow: hidden;
    transition: transform 220ms ease-out, border-color 220ms ease-out, box-shadow 220ms ease-out;
  }
  .rive-embed-card:hover {
    transform: translateY(-4px); border-color: rgba(74,222,181,.72);
    box-shadow: 0 16px 36px rgba(14,17,22,.1);
  }
  .rive-embed-card.is-rive-live:hover {
    transform: none;
    box-shadow: none;
  }
  .rive-gallery-grid .rive-embed-card { min-height: 180px; }
  .rive-gallery-grid .rive-embed-card iframe { height: 180px; }
  .rive-fallback-label {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
    color: rgba(14,17,22,.48);
    text-align: center;
    padding: 16px;
  }
  .rive-enable {
    margin: 0 0 22px;
  }
  .rive-enable[hidden],
  .is-rive-enabled .rive-enable,
  .is-rive-enabled [data-enable-rive] {
    display: none !important;
  }
  .rive-poster {
    width: 100%;
    height: 180px;
    object-fit: contain;
    display: block;
    background: linear-gradient(145deg, #effbf9, #fff7ef);
    padding: 12px;
  }
  .rive-illustrative {
    max-width: 320px;
    min-height: 220px;
    padding: 0;
  }
  .rive-illustrative .rive-poster { height: 220px; }
  .rive-embed-card > .rive-poster,
  .rive-embed-card > .rive-fallback-label,
  .rive-embed-card > iframe {
    grid-area: 1 / 1;
  }
  .rive-embed-card > .rive-poster,
  .rive-embed-card > .rive-fallback-label {
    position: relative;
    z-index: 1;
  }
  .rive-embed-card > iframe {
    position: relative;
    z-index: 0;
    background-color: transparent;
    color-scheme: none;
  }
  .rive-embed-card.is-rive-live {
    background-image: var(--rive-poster);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .rive-embed-card.is-rive-live > iframe { z-index: 1; }
  .rive-embed-card.is-rive-live .rive-poster,
  .rive-embed-card.is-rive-live .rive-fallback-label,
  .rive-embed-card.is-rive-live .rive-enable { display: none; }
  .work-card-rive.rive-static {
    display: grid; place-items: center; min-height: 220px;
  }
  [data-motion-lite] .scroll-progress { display: none; }
  [data-motion-lite] .btn-primary,
  [data-motion-lite] .btn-secondary,
  [data-motion-lite] .service-card,
  [data-motion-lite] .rive-embed-card,
  [data-motion-lite] .work-card {
    transition-duration: 220ms;
    transition-timing-function: ease-out;
  }
  [data-motion-lite] .rive-embed-card:hover,
  [data-motion-lite] .service-card:hover,
  [data-motion-lite] .work-card:hover {
    transform: translateY(-3px);
  }
  [data-motion-lite] .rive-embed-card.is-rive-live:hover {
    transform: none;
    box-shadow: none;
  }
  [data-motion-lite] .work-card:hover img { transform: none; }
  .rive-embed-card iframe { width: 100%; height: 245px; border: 0; display: block; }
  .rive-embed-card iframe:not([src]),
  .rive-embed-card iframe[hidden] { display: none; }
  .rive-embed-card:not(.is-rive-live) > iframe[src] {
    opacity: 0;
    pointer-events: none;
  }
  .rive-static,
  .rive-embed-card:has(iframe:not([src])),
  .work-card-rive:has(iframe:not([src])) {
    background: linear-gradient(145deg, #effbf9, #fff7ef);
  }
  .rive-info-card {
    padding: 28px; text-align: center;
    background: linear-gradient(145deg, #f0fbf9, #fff5ed);
  }
  .rive-info-card strong {
    display: block; margin-bottom: 12px; font: 800 24px/1.2 var(--font-head);
  }
  .rive-info-card span {
    display: block; color: rgba(14,17,22,.6); font-size: 14px; line-height: 1.8;
  }
  .project-content {
    display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(220px, .6fr);
    gap: 54px; padding: 44px 48px 50px;
  }
  .project-kicker {
    color: #269650; font: 700 12px/1 var(--font-head);
    letter-spacing: 1.8px; text-transform: uppercase; margin-bottom: 14px;
  }
  .project-content h1,
  .project-content h2 {
    font-size: clamp(28px, 3vw, 42px); letter-spacing: -1px; margin-bottom: 20px;
  }
  .project-content-main p {
    color: rgba(14,17,22,.8); font-size: 16px; line-height: 1.78;
  }
  .project-meta {
    padding-left: 28px; border-left: 1px solid rgba(14,17,22,.1);
  }
  .project-meta-item { margin-bottom: 24px; }
  .project-meta-item strong {
    display: block; font: 700 12px/1 var(--font-head);
    text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 8px;
  }
  .project-meta-item span {
    color: rgba(14,17,22,.58); font-size: 14px; line-height: 1.55;
  }
  .project-resource {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 22px; border: 0; border-radius: var(--radius-pill);
    color: #fff; background: var(--gradient1);
    font: 700 14px/1.3 var(--font-head); cursor: pointer;
    box-shadow: 0 6px 20px rgba(255,107,53,.24);
    transition: transform .3s var(--ease), box-shadow .3s;
  }
  .project-resource:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(255,107,53,.34); }
  .modal-close {
    position: absolute; top: 20px; right: 20px; z-index: 5;
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(14,17,22,0.06); border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: var(--dark);
    transition: background 0.25s, transform 0.3s var(--ease);
  }
  .modal-close:hover {
    background: rgba(14,17,22,0.12);
    transform: rotate(90deg) scale(1.1);
  }
  .modal-form-side {
    padding: 48px 44px;
    display: flex; flex-direction: column; justify-content: center;
  }
  .modal-form-side h2 {
    font-family: var(--font-head); font-size: 32px; font-weight: 800;
    line-height: 1.2; margin-bottom: 8px; letter-spacing: -0.5px;
  }
  .modal-form-side h2 .grad {
    background: var(--gradient1); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  }
  .modal-form-side > p {
    font-size: 15px; color: rgba(14,17,22,0.55); margin-bottom: 32px; line-height: 1.6;
  }
  .form-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
    margin-bottom: 18px;
  }
  .form-group { margin-bottom: 18px; }
  .form-group.row-item { margin-bottom: 0; }
  .form-group label {
    display: block; font-family: var(--font-head); font-size: 13px;
    font-weight: 600; color: var(--dark); margin-bottom: 6px;
  }
  .form-group label .req { color: var(--orange); }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%; padding: 12px 16px;
    border: 2px solid rgba(14,17,22,0.1);
    border-radius: 14px; font-family: var(--font-body);
    font-size: 15px; color: var(--dark);
    background: #fff;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.2s var(--ease);
    outline: none;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 4px rgba(108,77,255,0.1);
    transform: translateY(-1px);
  }
  .form-group textarea {
    resize: vertical; min-height: 100px;
  }
  .form-group select {
    appearance: none; cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230E1116' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
  }
  .form-submit {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 36px; border-radius: var(--radius-pill);
    background: var(--gradient1); color: #fff;
    font-family: var(--font-head); font-weight: 700; font-size: 16px;
    border: none; cursor: pointer; margin-top: 8px;
    box-shadow: 0 6px 24px rgba(255,107,53,0.3);
    transition: transform 0.35s var(--ease), box-shadow 0.35s;
  }
  .form-submit:hover {
    transform: scale(1.06);
    box-shadow: 0 10px 35px rgba(255,107,53,0.45);
  }
  .form-submit:active {
    transform: scaleX(1.1) scaleY(0.92);
  }
  .form-submit:disabled {
    opacity: .68; cursor: wait; transform: none; box-shadow: none;
  }
  .wizard-progress {
    display: flex; gap: 8px; margin: 2px 0 32px;
  }
  .wizard-progress span {
    height: 4px; flex: 1; border-radius: 99px; background: rgba(14,17,22,.1);
    transition: background .3s, transform .3s;
  }
  .wizard-progress span.active { background: var(--gradient1); transform: scaleY(1.35); }
  .wizard-step { display: none; }
  .wizard-step.active { display: block; animation: wizardIn .45s var(--ease) both; }
  .wizard-step h3 { font-size: 22px; margin-bottom: 8px; }
  .wizard-step > p { color: rgba(14,17,22,.52); font-size: 14px; margin-bottom: 24px; }
  .wizard-actions { display: flex; align-items: center; gap: 12px; margin-top: 24px; }
  .wizard-back {
    padding: 12px 14px; border: 0; background: transparent; cursor: pointer;
    color: rgba(14,17,22,.5); font: 600 14px var(--font-head);
  }
  .wizard-next { margin-top: 0; }
  @keyframes wizardIn {
    from { opacity: 0; transform: translateX(22px); }
    to { opacity: 1; transform: translateX(0); }
  }
  .modal-visual-side {
    background: linear-gradient(160deg, #F0EEFF 0%, #FFF0EB 50%, #E8FBF4 100%);
    border-radius: 0 28px 28px 0;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 40px; position: relative; overflow: hidden;
    min-height: 500px;
  }

  /* ---- GUIDED CHAT ---- */
  .chat-launcher {
    position: fixed; z-index: 170; right: 24px; bottom: 24px;
    width: 62px; height: 62px; border: 0; border-radius: 50%;
    color: #fff; background: var(--gradient1); cursor: pointer;
    box-shadow: 0 16px 42px rgba(108,77,255,.28);
    display: grid; place-items: center; font-size: 25px;
    transition: transform .35s var(--ease), box-shadow .35s;
  }
  .chat-launcher:hover { transform: translateY(-5px) scale(1.04); box-shadow: 0 22px 50px rgba(108,77,255,.36); }
  .chat-launcher::after {
    content: ''; position: absolute; right: 2px; top: 2px;
    width: 13px; height: 13px; border: 3px solid #fff;
    border-radius: 50%; background: var(--mint);
  }
  .chat-panel {
    position: fixed; z-index: 169; right: 24px; bottom: 98px;
    width: min(360px, calc(100vw - 32px)); overflow: hidden;
    border: 1px solid rgba(14,17,22,.08); border-radius: 24px;
    background: #fff; box-shadow: 0 28px 80px rgba(14,17,22,.18);
    opacity: 0; visibility: hidden; transform: translateY(18px) scale(.96);
    transform-origin: right bottom;
    transition: opacity .3s, visibility .3s, transform .4s var(--ease);
  }
  .chat-panel.open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
  .chat-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 20px 18px; color: #fff; background: var(--dark);
  }
  .chat-head strong { display: block; font: 700 16px var(--font-head); }
  .chat-head span { color: rgba(255,255,255,.56); font-size: 12px; }
  .chat-close { border: 0; background: transparent; color: #fff; font-size: 20px; cursor: pointer; }
  .chat-body { padding: 22px 20px 20px; }
  .chat-message {
    max-width: 88%; padding: 13px 15px; border-radius: 16px 16px 16px 4px;
    background: #f2f1f7; color: rgba(14,17,22,.76); font-size: 14px; line-height: 1.55;
  }
  .chat-actions { display: grid; gap: 9px; margin-top: 18px; }
  .chat-action {
    width: 100%; padding: 12px 14px; border: 1px solid rgba(108,77,255,.16);
    border-radius: 13px; color: var(--purple); background: rgba(108,77,255,.045);
    font: 600 13px var(--font-head); text-align: left; cursor: pointer;
    transition: background .25s, transform .25s;
  }
  .chat-action:hover { background: rgba(108,77,255,.1); transform: translateX(3px); }
  /* Animated decorative rings */
  .modal-rings {
    position: relative; width: 320px; height: 320px;
  }
  .modal-ring {
    position: absolute; border-radius: 50%;
    border: 2px solid rgba(108,77,255,0.12);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
  }
  .modal-ring:nth-child(1) { width: 100%; height: 100%; border-color: rgba(108,77,255,0.1); animation: ringRotate 20s linear infinite; }
  .modal-ring:nth-child(2) { width: 75%; height: 75%; border-color: rgba(255,107,53,0.12); animation: ringRotate 15s linear infinite reverse; }
  .modal-ring:nth-child(3) { width: 50%; height: 50%; border-color: rgba(74,222,181,0.15); animation: ringRotate 12s linear infinite; }
  .modal-ring:nth-child(4) { width: 28%; height: 28%; border-color: rgba(56,189,248,0.15); animation: ringRotate 8s linear infinite reverse; }
  @keyframes ringRotate { 0% { transform: translate(-50%,-50%) rotate(0deg); } 100% { transform: translate(-50%,-50%) rotate(360deg); } }
  /* Floating dots on rings */
  .ring-dot {
    position: absolute; border-radius: 50%;
    animation: ringRotate var(--dur) linear infinite var(--dir);
  }
  .ring-dot::after {
    content: ''; position: absolute; border-radius: 50%;
    width: var(--size); height: var(--size);
    background: var(--clr);
    top: calc(-1 * var(--size) / 2); left: calc(50% - var(--size) / 2);
  }
  .ring-dot-1 { width: 100%; height: 100%; top: 50%; left: 50%; transform: translate(-50%,-50%); --dur: 6s; --dir: normal; --size: 14px; --clr: var(--orange); }
  .ring-dot-2 { width: 75%; height: 75%; top: 50%; left: 50%; transform: translate(-50%,-50%); --dur: 5s; --dir: reverse; --size: 10px; --clr: var(--purple); }
  .ring-dot-3 { width: 100%; height: 100%; top: 50%; left: 50%; transform: translate(-50%,-50%); --dur: 8s; --dir: reverse; --size: 8px; --clr: var(--mint); }
  .ring-dot-4 { width: 50%; height: 50%; top: 50%; left: 50%; transform: translate(-50%,-50%); --dur: 4s; --dir: normal; --size: 12px; --clr: var(--sky); }
  /* Center play icon */
  .modal-play {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--gradient1);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 30px rgba(255,107,53,0.3);
    animation: playPulse 2.5s ease-in-out infinite;
  }
  .modal-play svg { width: 22px; height: 22px; fill: #fff; margin-left: 3px; }
  @keyframes playPulse {
    0%, 100% { transform: translate(-50%,-50%) scale(1); box-shadow: 0 8px 30px rgba(255,107,53,0.3); }
    50% { transform: translate(-50%,-50%) scale(1.08); box-shadow: 0 12px 40px rgba(255,107,53,0.45); }
  }
  /* Floating shapes in modal */
  .modal-float {
    position: absolute; pointer-events: none; opacity: 0.5;
    animation: floatComplex 7s ease-in-out infinite;
  }
  /* Trusted logos in modal */
  .modal-logos {
    margin-top: 32px;
    display: flex; flex-wrap: wrap; justify-content: center; gap: 20px;
    opacity: 0.3;
  }
  .modal-logos span {
    font-family: var(--font-head); font-weight: 700; font-size: 14px;
    white-space: nowrap;
  }
  /* Form field stagger animation */
  .modal-overlay.active .form-row,
  .modal-overlay.active .form-group,
  .modal-overlay.active .form-submit {
    animation: formFieldIn 0.5s var(--ease) both;
  }
  .modal-overlay.active .form-row { animation-delay: 0.15s; }
  .modal-overlay.active .form-group:nth-of-type(2) { animation-delay: 0.2s; }
  .modal-overlay.active .form-group:nth-of-type(3) { animation-delay: 0.25s; }
  .modal-overlay.active .form-group:nth-of-type(4) { animation-delay: 0.3s; }
  .modal-overlay.active .form-group:nth-of-type(5) { animation-delay: 0.35s; }
  .modal-overlay.active .form-submit { animation-delay: 0.4s; }
  @keyframes formFieldIn {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @media (max-width: 800px) {
    .modal { grid-template-columns: 1fr; max-height: 95vh; }
    .modal-visual-side { display: none; }
    .modal-form-side { padding: 36px 28px; }
    .project-modal { display: block; }
    .project-content { grid-template-columns: 1fr; gap: 30px; padding: 34px 28px 40px; }
    .project-meta { padding: 26px 0 0; border-left: 0; border-top: 1px solid rgba(14,17,22,.1); }
    .project-scenes { padding: 34px 20px 8px; }
    .project-scenes-head { align-items: flex-start; flex-direction: column; gap: 8px; }
    .scene-grid { grid-template-columns: 1fr; gap: 12px; }
    .rive-project-gallery { padding: 38px 24px; }
    .rive-project-head { align-items: flex-start; flex-direction: column; gap: 8px; }
    .rive-project-head p { text-align: left; }
    .rive-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  }

  /* ---- ANIMATED ICONS ---- */
  @keyframes iconPulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.12) rotate(-3deg); }
    50% { transform: scale(1.05) rotate(2deg); }
    75% { transform: scale(1.1) rotate(-1deg); }
  }
  @keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }
  @keyframes iconWiggle {
    0%, 100% { transform: rotate(0deg); }
    20% { transform: rotate(-8deg); }
    40% { transform: rotate(8deg); }
    60% { transform: rotate(-5deg); }
    80% { transform: rotate(5deg); }
  }
  @keyframes iconSpin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
  }
  @keyframes iconFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    33% { transform: translateY(-5px) scale(1.06); }
    66% { transform: translateY(2px) scale(0.97); }
  }
  @keyframes iconSquash {
    0%, 100% { transform: scaleX(1) scaleY(1); }
    30% { transform: scaleX(1.15) scaleY(0.88); }
    60% { transform: scaleX(0.92) scaleY(1.1); }
  }
  .service-icon {
    transition: transform 0.4s var(--ease), box-shadow 0.4s;
  }
  .service-card:nth-child(1) .service-icon { animation: iconBounce 2.5s ease-in-out infinite; }
  .service-card:nth-child(2) .service-icon { animation: iconPulse 3s ease-in-out infinite; }
  .service-card:nth-child(3) .service-icon { animation: iconWiggle 3.5s ease-in-out infinite; }
  .service-card:nth-child(4) .service-icon { animation: iconFloat 3s ease-in-out infinite; }
  .service-card:nth-child(5) .service-icon { animation: iconSquash 2.8s ease-in-out infinite; }
  .service-card:nth-child(6) .service-icon { animation: iconSpin 6s linear infinite; }
  .service-card:hover .service-icon {
    transform: scale(1.25) rotate(10deg);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }

  /* ---- STEP NUMBER ANIMATION ---- */
  @keyframes stepPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.08); }
  }
  .process-step:hover .step-num {
    animation: stepPulse 0.6s ease-in-out;
  }

  /* ---- CHECK MARK ANIMATION ---- */
  @keyframes checkPop {
    0% { transform: scale(0) rotate(-180deg); }
    60% { transform: scale(1.2) rotate(10deg); }
    100% { transform: scale(1) rotate(0deg); }
  }
  .why-point.visible .check {
    animation: checkPop 0.6s var(--ease) both;
  }
  .why-point:nth-child(2).visible .check { animation-delay: 0.1s; }
  .why-point:nth-child(3).visible .check { animation-delay: 0.2s; }
  .why-point:nth-child(4).visible .check { animation-delay: 0.3s; }
  .why-point:nth-child(5).visible .check { animation-delay: 0.4s; }
  .why-point:nth-child(6).visible .check { animation-delay: 0.5s; }

  /* ---- SMOOTH SCROLL REVEAL SYSTEM ---- */
  .reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  }
  .reveal.visible {
    opacity: 1; transform: translateY(0);
  }
  /* Staggered children */
  .reveal-stagger > * {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  }
  .reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
  .reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.08s; }
  .reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.16s; }
  .reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.24s; }
  .reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.32s; }
  .reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.4s; }
  .reveal-stagger.visible > * {
    opacity: 1; transform: translateY(0);
  }
  /* Slide from left */
  .reveal-left {
    opacity: 0; transform: translateX(-50px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  }
  .reveal-left.visible { opacity: 1; transform: translateX(0); }
  /* Slide from right */
  .reveal-right {
    opacity: 0; transform: translateX(50px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  }
  .reveal-right.visible { opacity: 1; transform: translateX(0); }
  /* Scale up */
  .reveal-scale {
    opacity: 0; transform: scale(0.85);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  }
  .reveal-scale.visible { opacity: 1; transform: scale(1); }
  /* Rotate in */
  .reveal-rotate {
    opacity: 0; transform: rotate(-8deg) translateY(30px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  }
  .reveal-rotate.visible { opacity: 1; transform: rotate(0) translateY(0); }

  /* ---- BUTTON SQUASH & STRETCH ---- */
  .btn-primary, .btn-secondary {
    transition: transform 0.35s var(--ease), box-shadow 0.35s, background 0.3s;
  }
  .btn-primary:hover {
    transform: scale(1.06);
    box-shadow: 0 10px 35px rgba(255,107,53,0.45);
  }
  .btn-primary:active {
    transform: scaleX(1.1) scaleY(0.92);
  }
  .btn-secondary:active {
    transform: scaleX(1.08) scaleY(0.94);
  }

  /* ---- CARD TILT EFFECT ---- */
  .service-card, .work-card, .test-card, .stat-card {
    transition: transform 0.5s var(--ease), box-shadow 0.5s;
  }

  /* ---- FAQ SMOOTH ---- */
  .faq-a {
    transition: max-height 0.5s var(--ease), padding 0.4s var(--ease), opacity 0.4s;
    opacity: 0;
  }
  .faq-item.open .faq-a {
    opacity: 1;
  }

  /* ---- LOGO MARQUEE HOVER ---- */
  .logo-marquee span {
    transition: opacity 0.3s, transform 0.4s var(--ease);
  }
  .logo-marquee span:hover {
    opacity: 1.6;
    transform: scale(1.12) translateY(-2px);
  }

  /* ---- WORK CARD OVERLAY ---- */
  .work-card { position: relative; }
  .work-card::after {
    content: '▶ View Project';
    position: absolute; top: 0; left: 0; right: 0; height: 260px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(14,17,22,0.55);
    color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 16px;
    border-radius: var(--radius) var(--radius) 0 0;
    opacity: 0; transition: opacity 0.4s var(--ease);
    pointer-events: none; letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
  }
  .work-card:hover::after { opacity: 1; }

  /* ---- TESTIMONIAL CARD QUOTE HOVER ---- */
  .test-card::before {
    transition: opacity 0.4s, transform 0.4s var(--ease);
  }
  .test-card:hover::before {
    opacity: 0.5; transform: scale(1.15);
  }

  /* ---- NAV SCROLL SHADOW ---- */
  nav.scrolled {
    box-shadow: 0 4px 30px rgba(14,17,22,0.08);
    border-bottom-color: transparent;
  }

  /* ---- HERO PARALLAX SMOOTH ---- */
  .hero-bg { transition: transform 0.1s linear; }

  /* ---- FLOATING SHAPES ENHANCED ---- */
  @keyframes floatComplex {
    0% { transform: translateY(0) rotate(0deg) scale(1); }
    25% { transform: translateY(-12px) rotate(5deg) scale(1.05); }
    50% { transform: translateY(-20px) rotate(-3deg) scale(1.02); }
    75% { transform: translateY(-8px) rotate(7deg) scale(1.06); }
    100% { transform: translateY(0) rotate(0deg) scale(1); }
  }
  .float-shape { animation: floatComplex 8s ease-in-out infinite !important; }

  @media (max-width: 900px) {
    .hero-content { grid-template-columns: 1fr; gap: 42px; }
    .hero-copy { text-align: center; }
    .hero-copy p { margin-inline: auto; }
    .hero-btns { justify-content: center; }
    .hero-stage { max-width: 680px; width: 100%; margin: 0 auto; }
    .services-grid, .why-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .plans-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      max-width: 720px;
      margin-inline: auto; padding-inline: 0;
      overflow: visible; scroll-snap-type: none;
    }
    .plans-grid::-webkit-scrollbar { display: none; }
    .plan-card { scroll-snap-align: none; }
    .process-steps { grid-template-columns: repeat(3, 1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .work-grid { grid-template-columns: 1fr; }
    .why-points { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 600px) {
    .services-grid, .testimonials-grid, .process-steps, .why-points { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .stat-card { padding: 25px 12px; border-radius: 18px; }
    .stat-num { font-size: 32px; }
    .stat-label { font-size: 12px; }
    .plan-card { padding: 26px 22px; border-radius: 22px; }
    .plans-grid {
      grid-template-columns: 1fr; gap: 14px;
      max-width: 430px;
      margin-inline: auto; padding: 8px 0 24px;
    }
    .plan-card:nth-child(5) { grid-column: auto; max-width: none; }
    .plan-details { grid-template-columns: 1fr; gap: 16px; margin-block: 18px; padding: 16px; }
    .nav-inner { padding: 10px 16px; }
    .logo img { height: 32px; max-width: 210px; }
    .nav-toggle { display: inline-flex; }
    .nav-links {
      position: absolute; top: 60px; left: 12px; right: 12px;
      display: grid; gap: 3px; padding: 10px;
      border: 1px solid rgba(14,17,22,.08); border-radius: 18px;
      background: rgba(250,250,248,.97); box-shadow: var(--shadow);
      opacity: 0; visibility: hidden; transform: translateY(-10px);
      transition: opacity .25s, transform .25s, visibility .25s;
    }
    nav.menu-open .nav-links { opacity: 1; visibility: visible; transform: translateY(0); }
    .nav-links a { display: block; padding: 13px 14px; opacity: 1; }
    .nav-links .btn-primary { justify-content: center; margin-top: 4px; }
    .hero { padding: 104px 18px 48px; min-height: auto; }
    .hero-content { gap: 26px; }
    .hero h1 {
      max-width: 310px; margin: 0 auto 18px;
      font-size: clamp(29px, 8.2vw, 37px); line-height: 1.05; letter-spacing: -1.5px;
    }
    .hero h1 .headline-line {
      font-size: 1em !important; white-space: normal; letter-spacing: inherit !important;
    }
    .hero h1 .headline-tight { margin-inline: auto; }
    .hero h1 .headline-accent { margin-bottom: .12em; }
    .hero-copy p { max-width: 28rem; margin-bottom: 22px; font-size: 11px; line-height: 1.62; }
    .hero-btns { display: grid; width: 100%; gap: 10px; }
    .hero-btns a { width: 100%; justify-content: center; min-height: 43px; font-size: 13px; }
    .hero-stage { min-height: auto; }
    .lottie-frame { width: 100%; max-width: 460px; border-radius: 18px; box-shadow: 0 24px 55px rgba(14,17,22,.14); }
    .hero-trust { margin-bottom: 12px; font-size: 10px; text-align: center; }
    .motion-card {
      width: 88%; border-width: 7px; border-bottom-width: 10px;
      border-radius: 18px 18px 11px 11px; clip-path: inset(0 round 18px);
    }
    .laptop-base { bottom: 16px; height: 13px; }
    .motion-orb.one { width: 145px; height: 145px; left: -30px; top: 100px; }
    .motion-orb.two { width: 105px; height: 105px; right: -20px; bottom: -15px; }
    .motion-orb.three { width: 45px; height: 45px; right: 12px; top: 18px; }
    .geo-triangle {
      right: 100px; top: 22px; transform: none;
      border-left-width: 38px; border-right-width: 38px; border-bottom-width: 70px;
    }
    .geo-capsule { width: 105px; height: 36px; left: 12px; top: 25px; }
    .stage-chip { padding: 8px 10px; font-size: 10px; box-shadow: 0 8px 20px rgba(14,17,22,.1); }
    .chip-one { left: -4px; top: 30px; }
    .chip-two { right: -4px; top: 72px; }
    .chip-three { left: 0; bottom: 36px; }
    .chip-four { right: 0; bottom: 62px; }
    .chip-five { bottom: 0; }
    .section { padding: 64px 18px; }
    .section-title { font-size: clamp(28px, 8.5vw, 36px); }
    .section-desc { font-size: 15px; line-height: 1.65; }
    .plans-prompt { padding: 9px 13px; font-size: 12px; }
    .trusted { padding: 34px 18px 48px; overflow: hidden; }
    .trusted p { margin-bottom: 22px; font-size: 11px; }
    .logo-marquee {
      justify-content: flex-start; flex-wrap: nowrap; gap: 26px;
      overflow-x: auto; padding-bottom: 8px; scrollbar-width: none;
    }
    .logo-marquee::-webkit-scrollbar { display: none; }
    .logo-marquee span { font-size: 17px; }
    .work-grid { gap: 18px; margin-top: 38px; }
    .work-card { border-radius: 18px; }
    .work-card img, .work-card::after { height: 220px; }
    .work-card-rive { height: 220px; }
    .work-card-body { padding: 22px 20px 25px; }
    .work-card-body h3 { font-size: 18px; }
    .show-more-wrap { margin-top: 28px; }
    .rive-project-gallery { padding: 34px 14px; }
    .rive-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
    .rive-embed-card, .rive-info-card { min-height: 165px; border-radius: 16px; }
    .rive-embed-card iframe { height: 165px; }
    .rive-info-card { padding: 14px 10px; }
    .rive-info-card strong { font-size: 18px; }
    .rive-info-card span { font-size: 11px; line-height: 1.55; }
    .modal-overlay { align-items: flex-end; }
    #projectModal, #hancockProjectModal, #beforeHealthProjectModal,
    #selaCloudProjectModal, #upfitSupplyProjectModal, #mtechProjectModal,
    #greenopiaProjectModal, #secufyProjectModal, #farmerLinkProjectModal,
    #buddywerkingProjectModal, #carakitProjectModal, #gifyboxProjectModal, #mavenProjectModal, #bazaarProjectModal {
      padding: 0; align-items: flex-end;
    }
    .project-modal {
      width: 100%; border-radius: 24px 24px 0 0;
      margin: 36px 0 0 !important;
    }
    .project-content { gap: 24px; padding: 30px 20px 38px; }
    .project-content h1, .project-content h2 { font-size: 28px; letter-spacing: -.7px; }
    .project-content-main p { font-size: 15px; line-height: 1.68; }
    .project-scenes { padding: 30px 14px 8px; }
    .project-scenes h3, .rive-project-head h3 { font-size: 25px; }
    .scene-grid { gap: 10px; }
    .modal-overlay.active .modal-close {
      position: fixed; top: 12px; right: 12px;
      width: 44px; height: 44px; margin: 0;
      background: rgba(255,255,255,.92); box-shadow: 0 8px 24px rgba(14,17,22,.14);
    }
    #contactModal { padding: 0; align-items: flex-end; }
    #contactModal .modal {
      width: 100%; max-height: 92dvh; border-radius: 24px 24px 0 0;
    }
    .modal-form-side { padding: 34px 20px calc(30px + env(safe-area-inset-bottom)); }
    .modal-form-side h2 { font-size: 28px; padding-right: 42px; }
    .wizard-actions { align-items: stretch; flex-direction: column-reverse; }
    .wizard-actions button { width: 100%; justify-content: center; min-height: 48px; }
    .footer-bottom { align-items: flex-start; flex-direction: column; gap: 10px; }
    .form-row { grid-template-columns: 1fr; }
    .chat-launcher {
      right: 14px; bottom: calc(14px + env(safe-area-inset-bottom));
      width: 54px; height: 54px;
    }
    .chat-panel {
      right: 12px; bottom: calc(78px + env(safe-area-inset-bottom));
      width: calc(100vw - 24px); max-height: calc(100dvh - 110px); overflow-y: auto;
    }
    .footer-inner { grid-template-columns: 1fr; }
    footer { padding: 58px 18px 24px; }
    .footer-inner { gap: 34px; }
  }

  @media (max-width: 360px) {
    .hero { padding-inline: 14px; }
    .hero h1 { font-size: 29px; }
    .section { padding-inline: 14px; }
    .plans-grid { margin-inline: auto; padding-inline: 0; grid-template-columns: 1fr; }
    .rive-gallery-grid { grid-template-columns: 1fr; }
  }

  @media (hover: none), (pointer: coarse) {
    .service-card:hover, .work-card:hover, .stat-card:hover, .test-card:hover,
    .plan-card:hover, .process-step:hover { transform: none; }
    .work-card:hover img, .work-card:hover .work-card-rive iframe { transform: none; }
    .plan-card:hover .plan-icon { animation: none; transform: none; }
    .btn-primary:hover, .btn-secondary:hover, .chat-launcher:hover,
    .project-resource:hover, .form-submit:hover { transform: none; }
  }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
      animation-duration: .01ms !important;
      animation-iteration-count: 1 !important;
      scroll-behavior: auto !important;
      transition-duration: .01ms !important;
    }
    .reveal, .reveal-stagger > *, .reveal-left, .reveal-right, .reveal-scale, .reveal-rotate {
      opacity: 1 !important; transform: none !important;
    }
    .scroll-progress { display: none; }
    [data-enable-rive] { display: none !important; }
    .rive-embed-card iframe,
    .work-card-rive iframe { display: none !important; }
  }

  /* ---- INTERIOR PAGES ---- */
  a.service-card,
  a.work-card {
    display: block;
    cursor: pointer;
    color: inherit;
  }
  .work-card.is-hidden { display: none; }
  a.service-card .service-more {
    display: inline-flex;
    margin-top: 16px;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 600;
    color: var(--purple);
  }
  .page-hero {
    padding: 168px 24px 64px;
    background: #f7f7f5;
  }
  .page-hero .section-inner { max-width: var(--max-w); margin: 0 auto; }
  .page-kicker {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 16px;
  }
  .page-hero h1 {
    font-size: clamp(36px, 5vw, 58px);
    letter-spacing: -1.4px;
    max-width: 24ch;
    margin-bottom: 22px;
  }
  .page-hero .lead,
  .page-lead {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(14,17,22,.78);
    max-width: 68ch;
  }
  .hero-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
  .crumb {
    display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
    font-size: 13px; color: rgba(14,17,22,.5); margin-bottom: 22px;
  }
  .crumb a { color: rgba(14,17,22,.62); }
  .crumb a:hover { color: var(--orange); }
  .check-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 24px;
    margin-top: 28px;
  }
  .check-grid p,
  .why-point p { font-size: 16px; }
  .copy-block { max-width: 74ch; }
  .copy-block p + p { margin-top: 16px; }
  .copy-block p { font-size: 17px; color: rgba(14,17,22,.8); line-height: 1.75; }
  .split-intro {
    display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center;
  }
  .process-list {
    display: grid; gap: 18px; margin-top: 36px;
  }
  .process-item {
    display: grid; grid-template-columns: 64px 1fr; gap: 16px;
    background: #fff; border-radius: var(--radius); padding: 22px 24px;
    box-shadow: 0 10px 30px rgba(14,17,22,.06);
  }
  .process-item strong { display: block; margin-bottom: 4px; font-family: var(--font-head); }
  .filter-bar {
    display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 8px;
  }
  .filter-btn {
    border: 1px solid rgba(14,17,22,.12);
    background: #fff;
    border-radius: var(--radius-pill);
    padding: 8px 16px;
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    color: var(--dark);
  }
  .filter-btn.active,
  .filter-btn:hover {
    background: var(--dark);
    color: #fff;
    border-color: var(--dark);
  }
  .work-card img[src*="bazaar/frames"] {
    object-fit: contain;
    background: linear-gradient(145deg, #effbf9, #fff7ef);
    padding: 24px;
  }
  .proof-strip {
    background: #f7f7f5;
    padding: 0 0 56px;
  }
  .proof-strip-inner {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    gap: 14px;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
  }
  .proof-cell video,
  .proof-cell img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    background: #111;
    box-shadow: 0 12px 32px rgba(14,17,22,.1);
  }
  .proof-cell img[src*="bazaar/frames"] {
    object-fit: contain;
    background: linear-gradient(145deg, #effbf9, #fff7ef);
  }
  .case-stage {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 140px 24px 28px;
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: 36px;
    align-items: center;
  }
  .case-stake {
    font-size: 18px;
    line-height: 1.55;
    color: rgba(14,17,22,.8);
    max-width: 42ch;
  }
  .case-stage-media video {
    width: 100%;
    border-radius: 24px;
    background: #111;
    display: block;
  }
  .case-stage-stills {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .case-stage-stills img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    border-radius: 18px;
    background: linear-gradient(145deg, #effbf9, #fff7ef);
    padding: 10px;
  }
  .case-story {
    max-width: var(--max-w);
    margin: 0 auto 8px;
    padding: 8px 24px 12px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
  .case-story-item {
    background: #fff;
    border-radius: 20px;
    padding: 22px 22px 24px;
    box-shadow: 0 10px 28px rgba(14,17,22,.06);
  }
  .case-story-item h2 {
    font-size: 13px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--purple);
  }
  .case-story-item p {
    font-size: 16px;
    line-height: 1.65;
    color: rgba(14,17,22,.8);
  }
  .case-meta-only {
    grid-template-columns: 1fr;
  }
  .case-meta-only .project-meta {
    padding-left: 0;
    border-left: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    align-items: start;
  }
  .case-page .project-media video {
    width: 100%;
    border-radius: 24px;
    background: #111;
    display: block;
  }
  .case-page .project-content {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 40px 24px 20px;
  }
  .case-page .project-scenes,
  .case-page .rive-project-gallery {
    max-width: var(--max-w);
    margin: 0 auto;
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 48px;
    align-items: start;
  }
  .contact-card,
  .nap-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
  }
  .nap-card h3 { margin-bottom: 16px; }
  .nap-list { display: grid; gap: 14px; }
  .nap-list a { color: var(--purple); font-weight: 600; }
  .nap-list span, .nap-list a { display: block; }
  .nap-label {
    display: block;
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(14,17,22,.45);
    font-weight: 700;
    margin-bottom: 4px;
  }
  .contact-form .form-group { margin-bottom: 16px; }
  .contact-form textarea { min-height: 140px; }
  .next-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 28px; }
  .next-step {
    background: #fff; border-radius: var(--radius); padding: 22px;
    box-shadow: 0 10px 30px rgba(14,17,22,.06);
  }
  .next-step strong { display: block; font-family: var(--font-head); margin-bottom: 6px; }
  .nav-links a[aria-current="page"] { opacity: 1; font-weight: 700; }
  .team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 32px;
  }
  .team-card {
    margin: 0;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(14,17,22,.08);
  }
  .team-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
    background: #f3f1ff;
  }
  .team-card figcaption {
    padding: 16px 18px 20px;
  }
  .team-card strong {
    display: block;
    font-family: var(--font-head);
    margin-bottom: 4px;
  }
  .team-card span {
    font-size: 13px;
    letter-spacing: .4px;
    color: rgba(14,17,22,.5);
  }
  .industries .plans-grid,
  .page-hero + .section .plans-grid {
    margin-top: 28px;
  }
  @media (max-width: 900px) {
    .split-intro, .contact-grid, .check-grid, .next-steps, .team-grid { grid-template-columns: 1fr; }
    .page-hero { padding: 140px 20px 48px; }
    .proof-strip-inner,
    .case-stage,
    .case-story,
    .case-meta-only .project-meta { grid-template-columns: 1fr; }
    .case-stage { padding-top: 110px; }
    .case-page .rive-project-gallery { padding-top: 16px; }
    .case-stage-stills { grid-template-columns: repeat(3, 1fr); }
  }

