/* ============================================================
       CSS VARIABLES & RESET
       ============================================================ */
    :root {
      --color-brand-blue: #7BB8FF;
      --color-brand-blue-light: #B7D9FF;
      --color-brand-blue-pale: #EAF4FF;
      --color-brand-pink: #F78AB8;
      --color-brand-pink-light: #FFD1E3;
      --color-brand-pink-pale: #FFF0F6;
      --color-ink: #1E293B;
      --color-body: #475569;
      --color-mute: #64748B;
      --color-line: #E8EDF4;
      --color-background: #FAFBFD;
      --font-display: 'Poppins', 'Inter', sans-serif;
      --font-sans: 'Inter', system-ui, sans-serif;
      --font-mono: 'Space Mono', monospace;
    }

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

    html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
      text-size-adjust: 100%;
    }

    body {
      background-color: var(--color-background);
      color: var(--color-body);
      font-family: var(--font-sans);
      font-size: 16px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
      min-height: 100vh;
    }

    h1, h2, h3, h4 {
      font-family: var(--font-display);
      color: var(--color-ink);
      letter-spacing: 0;
    }

    a { text-decoration: none; color: inherit; }
    img { display: block; max-width: 100%; height: auto; }
    button { cursor: pointer; font-family: inherit; border: none; background: none; }
    .skip-link {
      position: absolute;
      left: 1rem;
      top: -3.5rem;
      z-index: 1000;
      padding: 0.85rem 1.1rem;
      border-radius: 0.85rem;
      background: #ffffff;
      color: var(--color-ink);
      font-weight: 700;
      box-shadow: 0 14px 30px -18px rgba(15, 23, 42, 0.35);
      transition: top 0.2s ease;
    }
    .skip-link:focus {
      top: 1rem;
    }
    :focus-visible {
      outline: 3px solid var(--color-brand-blue);
      outline-offset: 3px;
    }
    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }
    ul { list-style: none; }
    input, textarea, select { font-family: inherit; }

    /* ============================================================
       ANIMATIONS
       ============================================================ */
    @keyframes float-slow {
      0%, 100% { transform: translateY(0) rotate(0); }
      50% { transform: translateY(-18px) rotate(2deg); }
    }
    @keyframes blob {
      0%, 100% { border-radius: 42% 58% 63% 37% / 41% 44% 56% 59%; }
      50% { border-radius: 58% 42% 37% 63% / 56% 59% 41% 44%; }
    }
    @keyframes marquee {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes scaleIn {
      from { opacity: 0; transform: scale(0.9); }
      to { opacity: 1; transform: scale(1); }
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.5; }
    }
    @keyframes spin {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }
    @keyframes layers-float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-4px); }
    }
    @keyframes spark-spin {
      0%, 100% { transform: rotate(0deg) scale(1); }
      50% { transform: rotate(15deg) scale(1.06); }
    }
    @keyframes target-pulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.05); }
    }
    @keyframes handshake-wave {
      0%, 100% { transform: rotate(0deg); }
      25% { transform: rotate(6deg); }
      75% { transform: rotate(-6deg); }
    }
    @keyframes scaleX {
      from { transform: scaleX(0); }
      to { transform: scaleX(1); }
    }
    @keyframes progressBar {
      from { transform: scaleX(0); }
    }

    .animate-float-slow { animation: float-slow 7s ease-in-out infinite; }
    .animate-blob { animation: blob 14s ease-in-out infinite; }
    .animate-marquee { animation: marquee 40s linear infinite; }
    .animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }

    /* ============================================================
       LAYOUT UTILITIES
       ============================================================ */
    .container {
      max-width: 1280px;
      margin-left: auto;
      margin-right: auto;
      padding-left: 1.5rem;
      padding-right: 1.5rem;
    }
    @media (min-width: 1024px) {
      .container { padding-left: 2.5rem; padding-right: 2.5rem; }
    }

    /* ============================================================
       NAV
       ============================================================ */
    .nav {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      background: rgba(255, 255, 255, 0.70);
      border-bottom: 1px solid var(--color-line);
    }
    .nav__inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
    }
    @media (min-width: 1024px) { .nav__inner { padding: 0 2.5rem; } }
.nav__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}

.nav__logo img {
  display: block;
  height: 36px; /* Adjust between 32px - 40px */
  width: auto;
  object-fit: contain;
}
    .nav__links {
      display: none;
      align-items: center;
      gap: 2rem;
      font-size: 0.92rem;
      font-weight: 600;
      color: var(--color-body);
    }
    @media (min-width: 768px) { .nav__links { display: flex; } }
    .nav__item {
      position: relative;
      list-style: none;
    }
    .nav__links a {
      position: relative;
      transition: color 0.2s;
    }
    .nav__links a::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -4px;
      height: 2px;
      width: 0;
      background: var(--color-brand-pink);
      transition: width 0.3s;
    }
    .nav__links a:hover { color: var(--color-ink); }
    .nav__links a:hover::after { width: 100%; }
    .nav__item--has-submenu {
      padding-bottom: 0.85rem;
      margin-bottom: -0.85rem;
    }
    .nav__item--has-submenu > a {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
    }
    .nav__item--has-submenu > a::before {
      content: '';
      position: static;
      width: 0.45rem;
      height: 0.45rem;
      border-right: 1.8px solid currentColor;
      border-bottom: 1.8px solid currentColor;
      transform: rotate(45deg) translateY(-1px);
      opacity: 0.7;
      order: 2;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }
    .nav__submenu {
      position: absolute;
      top: calc(100% + 0.15rem);
      left: 0;
      min-width: 260px;
      padding: 0.75rem;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.98);
      border: 1px solid rgba(226, 232, 240, 0.95);
      box-shadow: 0 24px 48px -28px rgba(15, 23, 42, 0.28);
      display: grid;
      gap: 0.25rem;
      opacity: 0;
      pointer-events: none;
      transform: translateY(10px);
      transition: opacity 0.2s ease, transform 0.2s ease;
      z-index: 60;
    }
    .nav__submenu a {
      display: block;
      padding: 0.7rem 0.85rem;
      border-radius: 14px;
      color: var(--color-ink);
      font-size: 0.88rem;
      font-weight: 600;
    }
    .nav__submenu a::after {
      display: none;
    }
    .nav__submenu a:hover {
      background: var(--color-brand-blue-pale);
      color: var(--color-ink);
    }
    .nav__item--has-submenu:hover .nav__submenu,
    .nav__item--has-submenu:focus-within .nav__submenu {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }
    .nav__item--has-submenu:hover > a::before,
    .nav__item--has-submenu:focus-within > a::before {
      transform: rotate(225deg) translateY(-1px);
      opacity: 1;
    }
    .nav__cta {
      display: none;
      align-items: center;
      gap: 0.5rem;
      padding: 0.625rem 1.25rem;
      border-radius: 9999px;
      background: var(--color-brand-blue);
      color: #10203f;
      font-size: 0.875rem;
      font-weight: 600;
      border: 1px solid rgba(255,255,255,0.22);
      transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
      box-shadow: 0 14px 30px -14px rgba(91, 126, 213, 0.58);
    }
    @media (min-width: 640px) { .nav__cta { display: inline-flex; } }
    .nav__cta:hover {
      transform: translateY(-2px);
      background: var(--color-brand-blue);
      box-shadow: 0 20px 36px -16px rgba(104, 122, 204, 0.62);
    }
    .nav__toggle {
      width: 44px;
      height: 44px;
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 5px;
      border-radius: 14px;
      border: 1px solid rgba(30, 41, 59, 0.12);
      background: rgba(255, 255, 255, 0.92);
      color: var(--color-ink);
      box-shadow: 0 12px 30px -18px rgba(15, 23, 42, 0.35);
      transition: background 0.2s, border-color 0.2s, transform 0.2s;
    }
    .nav__toggle:hover {
      transform: translateY(-1px);
      border-color: rgba(123, 184, 255, 0.5);
      background: #fff;
    }
    .nav__toggle span {
      display: block;
      width: 18px;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
      transition: transform 0.25s ease, opacity 0.25s ease;
    }
    .nav.is-menu-open .nav__toggle span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
    .nav.is-menu-open .nav__toggle span:nth-child(2) {
      opacity: 0;
    }
    .nav.is-menu-open .nav__toggle span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }
    @media (min-width: 768px) { .nav__toggle { display: none; } }
    .nav__mobile {
      display: none;
      border-top: 1px solid var(--color-line);
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      max-height: calc(100vh - 64px);
      overflow-y: auto;
      overscroll-behavior: contain;
    }
    .nav.is-menu-open .nav__mobile {
      display: block;
    }
    .nav__mobile-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 1rem 1.5rem 1.25rem;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
    .nav__mobile-links {
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
    }
    .nav__mobile-links > li {
      list-style: none;
    }
    .nav__mobile-links .nav__item--has-submenu {
      padding-bottom: 0;
      margin-bottom: 0;
    }
    .nav__mobile-item-top {
      display: flex;
      align-items: center;
      gap: 0.65rem;
    }
    .nav__mobile-item-top > a {
      flex: 1;
    }
    .nav__mobile-subtoggle {
      width: 42px;
      height: 42px;
      flex-shrink: 0;
      border-radius: 14px;
      border: 1px solid rgba(226, 232, 240, 0.95);
      background: rgba(248, 250, 252, 0.9);
      color: var(--color-ink);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s, border-color 0.2s, transform 0.2s;
    }
    .nav__mobile-subtoggle:hover {
      background: var(--color-brand-blue-pale);
      border-color: rgba(123, 184, 255, 0.45);
    }
    .nav__mobile-subtoggle::before {
      content: '';
      width: 0.55rem;
      height: 0.55rem;
      border-right: 2px solid currentColor;
      border-bottom: 2px solid currentColor;
      transform: rotate(45deg) translateY(-1px);
      transition: transform 0.2s ease;
    }
    .nav__mobile-links a {
      display: block;
      padding: 0.9rem 1rem;
      border-radius: 16px;
      font-weight: 600;
      color: var(--color-ink);
      background: rgba(248, 250, 252, 0.9);
      border: 1px solid rgba(226, 232, 240, 0.9);
    }
    .nav__mobile-links a:hover {
      background: var(--color-brand-blue-pale);
      border-color: rgba(123, 184, 255, 0.45);
    }
    .nav__mobile-links .nav__submenu {
      position: static;
      min-width: 0;
      margin-top: 0.45rem;
      padding: 0.35rem 0 0 0.9rem;
      border: 0;
      border-left: 1px solid rgba(226, 232, 240, 0.95);
      border-radius: 0;
      background: transparent;
      box-shadow: none;
      display: grid;
      gap: 0.25rem;
      opacity: 1;
      pointer-events: auto;
      transform: none;
      max-height: none;
    }
    .nav__mobile-links .nav__item--has-submenu.is-collapsed .nav__submenu {
      display: none;
    }
    .nav__mobile-links .nav__item--has-submenu > a::before {
      display: none;
    }
    .nav__mobile-links .nav__item--has-submenu.is-open .nav__mobile-subtoggle::before {
      transform: rotate(225deg) translateY(-1px);
    }
    .nav__mobile-links .nav__submenu a {
      padding: 0.75rem 0.9rem;
      font-size: 0.84rem;
      background: rgba(248, 250, 252, 0.8);
    }
    .nav__mobile-cta {
      margin-top: 0.25rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.9rem 1.1rem;
      border-radius: 999px;
      background: var(--color-brand-blue);
      color: #10203f;
      font-weight: 700;
      box-shadow: 0 16px 32px -18px rgba(91, 126, 213, 0.58);
    }
    @media (min-width: 768px) { .nav__mobile { display: none !important; } }

    /* ============================================================
       HERO
       ============================================================ */
    .hero {
      position: relative;
      overflow: hidden;
      min-height: 100vh;
      background:
        radial-gradient(circle at 50% 48%, rgba(30,41,59,0.42) 0 30%, rgba(15,23,42,0.24) 52%, transparent 72%),
        radial-gradient(circle at 12% 24%, rgba(123,184,255,0.26), transparent 34%),
        radial-gradient(circle at 88% 74%, rgba(247,138,184,0.28), transparent 36%),
        linear-gradient(110deg, #08111f 0%, #111827 48%, #201122 100%);
    }
    .hero__blob1 {
      position: absolute;
      left: -8rem; top: 8rem;
      width: 28rem; height: 28rem;
      background: rgba(123, 184, 255, 0.16);
      filter: blur(72px);
      border-radius: 50%;
    }
    .hero__blob2 {
      position: absolute;
      right: -8rem; bottom: 0;
      width: 26rem; height: 26rem;
      background: rgba(247, 138, 184, 0.18);
      filter: blur(72px);
      border-radius: 50%;
    }
    .hero__blob1, .hero__blob2 { animation: blob 14s ease-in-out infinite; }
    .hero__blob2 { animation-delay: -4s; }
    .hero__dots {
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(255,255,255,0.12) 1px, transparent 1px);
      background-size: 18px 18px;
      opacity: 0.36;
      pointer-events: none;
    }
    .hero__inner {
      position: relative;
      max-width: 1280px;
      margin: 0 auto;
      min-height: inherit;
      padding: 7.5rem 1.5rem 5rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    @media (min-width: 1024px) {
      .hero__inner {
        padding: 5.5rem 2.5rem 5.5rem;
      }
    }
    .hero__badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.375rem 1rem;
      border-radius: 9999px;
      background: white;
      border: 1px solid var(--color-line);
      font-size: 0.75rem;
      font-family: var(--font-mono);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--color-mute);
      opacity: 0;
      animation: fadeInUp 0.6s ease forwards;
    }
    .hero__badge-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--color-brand-pink);
      animation: pulse 2s infinite;
    }
    .hero__content {
      position: relative;
      z-index: 3;
      width: min(100%, 1180px);
      max-width: 1180px;
      margin: 0 auto;
      text-align: center;
    }
    .hero__pills {
      display: inline-flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.75rem;
      opacity: 0;
      animation: fadeInUp 0.6s ease forwards;
    }
    .hero__pills span {
      display: inline-flex;
      align-items: center;
      min-height: 38px;
      padding: 0.55rem 1.25rem;
      border-radius: 9999px;
      background: rgba(15,23,42,0.62);
      border: 1px solid rgba(255,255,255,0.14);
      box-shadow: 0 16px 40px -26px rgba(0,0,0,0.7);
      color: rgba(255,255,255,0.82);
      font-size: 0.95rem;
      font-weight: 600;
      backdrop-filter: blur(12px);
    }
    .hero__pills span:first-child { background: rgba(123,184,255,0.18); color: #b7d9ff; }
    .hero__pills span:last-child { background: rgba(247,138,184,0.18); color: #ffd1e3; }
    .hero__h1 {
      max-width: 980px;
      margin: 2.75rem auto 0;
      font-family: var(--font-display);
      font-size: clamp(2.55rem, 4.35vw, 4.1rem);
      font-weight: 500;
      line-height: 1.08;
      letter-spacing: 0.004em;
      color: #f8fafc;
      text-wrap: balance;
      text-shadow: 0 12px 30px rgba(7, 10, 18, 0.3);
      opacity: 0;
      animation: fadeInUp 0.7s ease 0.1s forwards;
    }
    .hero__phrase {
      position: relative;
      display: inline-block;
      z-index: 1;
      padding-inline: 0.02em;
    }
    .hero__phrase::after {
      content: '';
      position: absolute;
      left: -0.06em;
      right: -0.06em;
      bottom: 0.1em;
      height: 0.16em;
      border-radius: 999px;
      background: linear-gradient(90deg, rgba(255, 160, 204, 0.18), rgba(247, 138, 184, 0.52), rgba(255, 160, 204, 0.18));
      box-shadow: 0 0 24px rgba(247, 138, 184, 0.18);
      z-index: -1;
    }
    .hero__accent {
      display: inline-block;
      color: #ff8dbd;
      text-shadow: 0 0 24px rgba(247, 138, 184, 0.18);
    }
    .hero__h1 .highlight {
      position: relative;
      display: inline-block;
    }
    .hero__h1 .highlight::after {
      content: '';
      position: absolute;
      left: 0; right: 0; bottom: 4px;
      height: 12px;
      background: var(--color-brand-pink-light);
      z-index: -1;
      border-radius: 3px;
    }
    .hero__h1 .blue { color: var(--color-brand-blue); }
    .hero__desc {
      margin: 2.5rem auto 0;
      font-size: clamp(1rem, 1.8vw, 1.18rem);
      color: rgba(226,232,240,0.86);
      max-width: 43rem;
      line-height: 1.75;
      opacity: 0;
      animation: fadeInUp 0.7s ease 0.2s forwards;
    }
    .hero__actions {
      margin-top: 2.5rem;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      opacity: 0;
      animation: fadeInUp 0.7s ease 0.3s forwards;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 1rem 1.75rem;
      border-radius: 9999px;
      background: var(--color-brand-pink);
      color: #10203f;
      font-weight: 600;
      font-size: 1rem;
      border: 1px solid rgba(255,255,255,0.12);
      box-shadow: 0 22px 46px -18px rgba(71, 113, 201, 0.55);
      transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      background: var(--color-brand-pink-light);
      box-shadow: 0 28px 56px -20px rgba(90, 112, 196, 0.62);
    }
    .btn-primary .arrow { transition: transform 0.2s; display: inline-block; }
    .btn-primary:hover .arrow { transform: translateX(4px); }
    .btn-secondary {
      display: inline-flex;
      align-items: center;
      min-height: 54px;
      padding: 1rem 1.75rem;
      border-radius: 9999px;
      background: var(--color-brand-blue);
      border: 1px solid rgba(255,255,255,0.12);
      box-shadow: 0 22px 46px -18px rgba(71, 113, 201, 0.55);
      color: #10203f;
      font-weight: 600;
      transition: color 0.2s, transform 0.2s, box-shadow 0.2s, background 0.2s;
    }
    .btn-secondary:hover {
      color: #10203f;
      transform: translateY(-2px);
      background: var(--color-brand-blue-light);
      box-shadow: 0 28px 56px -20px rgba(90, 112, 196, 0.62);
    }
    .btn-secondary__icon {
      display: grid;
      place-items: center;
      width: 40px; height: 40px;
      border-radius: 50%;
      background: white;
      border: 1px solid var(--color-line);
    }
    .hero__showcase {
      position: absolute;
      inset: 0;
      z-index: 2;
      pointer-events: none;
      opacity: 0;
      animation: scaleIn 0.9s ease 0.15s forwards;
    }
    .hero__showcase::before,
    .hero__showcase::after {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
    }
    .hero__showcase::before {
      background: radial-gradient(
        ellipse 48% 54% at 50% 50%,
        rgba(9, 15, 27, 0.56) 0%,
        rgba(12, 18, 31, 0.34) 54%,
        transparent 82%
      );
      z-index: 3;
    }
    .hero__showcase::after {
      background: transparent;
      z-index: 4;
    }
    .hero__scene {
      position: absolute;
      inset: 0;
      z-index: 2;
      will-change: transform;
    }
    .hero__glow {
      position: absolute;
      width: 38vw;
      height: 38vw;
      min-width: 360px;
      min-height: 360px;
      border-radius: 50%;
      filter: blur(70px);
      opacity: 0.22;
      z-index: 1;
      will-change: transform;
    }
    .hero__glow--left {
      left: -10vw;
      top: 18%;
      background: rgba(123,184,255,0.34);
    }
    .hero__glow--right {
      right: -9vw;
      bottom: 2%;
      background: rgba(247,138,184,0.36);
    }
    .hero-plane {
      position: absolute;
      left: 50%;
      top: 50%;
      display: block;
      width: clamp(240px, 17vw, 330px);
      height: clamp(160px, 11.34vw, 220px);
      object-fit: contain;
      object-position: center;
      border: 0;
      border-radius: 0;
      opacity: var(--alpha, 0.54);
      filter:
        saturate(0.72)
        contrast(0.86)
        brightness(0.72)
        blur(var(--softness, 0.65px));
      -webkit-mask-image: radial-gradient(ellipse 82% 78% at center, #000 54%, rgba(0,0,0,0.82) 76%, transparent 100%);
      mask-image: radial-gradient(ellipse 82% 78% at center, #000 54%, rgba(0,0,0,0.82) 76%, transparent 100%);
      box-shadow: none;
      transform:
        translate3d(
          calc(-50% + var(--x)),
          calc(-50% + var(--y)),
          0
        )
        rotate(var(--tilt, 0deg));
      transform-origin: center;
      backface-visibility: hidden;
      will-change: auto;
      animation: none;
    }
    .hero-plane--near-left {
      --x: -26vw;
      --y: -31vh;
      --tilt: -8deg;
      --alpha: 0.48;
      --softness: 0.85px;
    }
    .hero-plane--mid-left {
      --x: -35vw;
      --y: -11.5vh;
      --tilt: -2deg;
      --alpha: 0.58;
      --softness: 0.45px;
    }
    .hero-plane--far-left {
      --x: -36vw;
      --y: 11vh;
      --tilt: 2deg;
      --alpha: 0.52;
      --softness: 0.65px;
    }
    .hero-plane--lower-left {
      --x: -27.5vw;
      --y: 33vh;
      --tilt: 7deg;
      --alpha: 0.44;
      --softness: 1px;
    }
    .hero-plane--near-right {
      --x: 28vw;
      --y: -33vh;
      --tilt: 7deg;
      --alpha: 0.46;
      --softness: 0.9px;
    }
    .hero-plane--mid-right {
      --x: 36vw;
      --y: -11vh;
      --tilt: 2deg;
      --alpha: 0.54;
      --softness: 0.55px;
    }
    .hero-plane--far-right {
      --x: 34.5vw;
      --y: 12vh;
      --tilt: -2deg;
      --alpha: 0.58;
      --softness: 0.45px;
    }
    .hero-plane--lower-right {
      --x: 25.5vw;
      --y: 31.5vh;
      --tilt: -8deg;
      --alpha: 0.45;
      --softness: 0.95px;
    }
    @media (max-width: 1700px) {
      .hero-plane {
        width: clamp(190px, 16vw, 240px);
        height: clamp(127px, 10.67vw, 160px);
      }
      .hero-plane--near-left,
      .hero-plane--lower-left {
        --x: -34vw;
      }
      .hero-plane--mid-left,
      .hero-plane--far-left {
        --x: -40vw;
      }
      .hero-plane--near-right,
      .hero-plane--lower-right {
        --x: 34vw;
      }
      .hero-plane--mid-right,
      .hero-plane--far-right {
        --x: 40vw;
      }
    }
    @media (max-width: 900px) {
      .hero {
        min-height: 100vh;
      }
      .hero__inner {
        padding: 6.5rem 1.25rem 4rem;
        display: block;
      }
      .hero__showcase {
        overflow: hidden;
      }
      .hero__scene { inset: 0; }
      .hero-plane {
        width: 155px;
        height: 104px;
        --alpha: 0.46;
        --softness: 0.8px;
        filter:
          saturate(0.68)
          contrast(0.82)
          brightness(0.68)
          blur(var(--softness));
      }
      .hero-plane--near-left {
        --x: -39vw;
        --y: -41vh;
      }
      .hero-plane--near-right {
        --x: 39vw;
        --y: 40vh;
      }
      .hero-plane--mid-left {
        --x: -39vw;
        --y: 40vh;
      }
      .hero-plane--mid-right {
        --x: 39vw;
        --y: -41vh;
      }
      .hero-plane--far-left,
      .hero-plane--lower-left,
      .hero-plane--far-right,
      .hero-plane--lower-right {
        display: none;
      }
    }
    @media (max-width: 560px) {
      .hero__content {
        text-align: center;
      }
      .hero__pills {
        justify-content: center;
      }
      .hero__h1 {
        margin-top: 2.25rem;
        max-width: 20rem;
        font-size: clamp(2rem, 8.35vw, 2.4rem);
        line-height: 1.08;
        letter-spacing: 0.003em;
      }
      .hero__desc {
        margin-top: 2rem;
      }
      .hero__actions { align-items: stretch; }
      .btn-primary,
      .btn-secondary {
        width: 100%;
        justify-content: center;
      }
      .hero-plane--near-left {
        --x: -40vw;
        --y: -42vh;
      }
      .hero-plane--near-right {
        --x: 40vw;
        --y: 42vh;
      }
      .hero-plane--mid-left { --x: -40vw; --y: 42vh; }
      .hero-plane--mid-right { --x: 40vw; --y: -42vh; }
    }
    @media (prefers-reduced-motion: reduce) {
      .hero__scene {
        transition: none;
      }
      .hero-plane {
        animation: none;
      }
    }

    /* ============================================================
       MARQUEE
       ============================================================ */
    .marquee-bar {
      border-top: 1px solid var(--color-line);
      border-bottom: 1px solid var(--color-line);
      background: white;
      padding: 1.25rem 0;
      overflow: hidden;
    }
    .marquee-bar__inner {
      display: flex;
      gap: 3rem;
      animation: marquee 40s linear infinite;
      white-space: nowrap;
    }
    .marquee-bar__item {
      display: flex;
      align-items: center;
      gap: 3rem;
      color: var(--color-mute);
      font-size: 0.875rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }
    .marquee-bar__dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--color-brand-pink);
      flex-shrink: 0;
    }

    /* ============================================================
       ABOUT
       ============================================================ */
    .about {
      max-width: 1280px;
      margin: 0 auto;
      padding: 6rem 1.5rem;
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
      align-items: start;
    }
    @media (min-width: 1024px) {
      .about { grid-template-columns: 1fr 1.3fr; padding: 8rem 2.5rem; }
      .about__stats { grid-column: 1 / -1; }
    }
    .section-eyebrow {
      display: inline-flex;
      font-size: 0.72rem;
      font-family: var(--font-mono);
      text-transform: uppercase;
      letter-spacing: 0;
      font-weight: 700;
      color: var(--color-brand-pink);
    }
    .about__h2 {
      margin-top: 1rem;
      font-size: 2.75rem;
      font-weight: 800;
      line-height: 1.12;
      color: var(--color-ink);
    }
    .about__body { display: flex; flex-direction: column; gap: 1.25rem; }
    .about__body p {
      max-width: 46rem;
      font-size: 1.05rem;
      line-height: 1.72;
      color: #42536a;
    }
    .about__body p:last-child { color: var(--color-ink); font-weight: 600; }
    .about__stats {
      display: grid;
      gap: 1rem;
      margin-top: 0.25rem;
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    @media (max-width: 480px) {
      .about__stats {
        gap: 0.85rem;
      }
      .about-stat {
        min-height: 142px;
        padding: 0.95rem;
        border-radius: 22px;
      }
      .about-stat__value {
        font-size: 0.95rem;
        line-height: 1.15;
      }
      .about-stat__icon {
        width: 58px;
        height: 58px;
      }
    }
    @media (min-width: 768px) {
      .about__stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem;
      }
    }
    @media (min-width: 1200px) {
      .about__stats {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }
    }
    .about-stat {
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      min-height: 156px;
      padding: 1.05rem;
      border-radius: 26px;
      background:
        linear-gradient(180deg, #a9d0ff, #8fc0fb),
        radial-gradient(circle at top right, rgba(255,255,255,0.28), transparent 52%);
      border: 1px solid rgba(123, 184, 255, 0.24);
      box-shadow: 0 22px 42px -30px rgba(44, 78, 142, 0.24);
      overflow: hidden;
    }
    .about-stat:nth-child(3),
    .about-stat:nth-child(4) {
      background:
        linear-gradient(180deg, #f8a8c8, #f08db8),
        radial-gradient(circle at top right, rgba(255,255,255,0.22), transparent 50%);
      border-color: rgba(247, 138, 184, 0.24);
      box-shadow: 0 22px 42px -30px rgba(136, 54, 95, 0.22);
    }
    .about-stat::before {
      content: '';
      position: absolute;
      inset: auto auto -42px -28px;
      width: 122px;
      height: 122px;
      border-radius: 999px;
      background: radial-gradient(circle, rgba(74,108,247,0.14), transparent 72%);
      pointer-events: none;
    }
    .about-stat--accent {
      background:
        linear-gradient(180deg, rgba(32,40,72,0.98), rgba(20,27,53,0.96)),
        radial-gradient(circle at top right, rgba(255,141,189,0.28), transparent 50%);
      color: #f8fafc;
      border-color: rgba(255,255,255,0.08);
    }
    .about-stat--accent::before {
      background: radial-gradient(circle, rgba(255,141,189,0.2), transparent 72%);
    }
    .about-stat__icon {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 4rem;
      height: 4rem;
      filter: drop-shadow(0 12px 18px rgba(34, 71, 126, 0.14));
    }
    .about-stat__icon svg {
      position: relative;
      z-index: 1;
      width: 100%;
      height: 100%;
      overflow: visible;
    }
    .about-stat__value {
      display: block;
      font-family: var(--font-display);
      font-size: 1.42rem;
      font-weight: 800;
      line-height: 1.14;
      color: #10203f;
      letter-spacing: 0;
      max-width: 10ch;
    }
    .about-stat--accent .about-stat__value {
      color: #ffffff;
    }
    .about-stat--accent .about-stat__label {
      color: rgba(226,232,240,0.82);
    }

    /* ============================================================
       SERVICES — horizontal scroll pinned
       ============================================================ */
    .services-section {
      position:relative;
      -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%);
      mask-image: linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%);
      margin: 0;
    }
    @media (min-width: 1024px) {
      .services-section {
        margin: 0 100px;
      }
    }
    .services-sticky {
      position: relative;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }
    .services-header {
      padding: 4rem 1.5rem 0;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 1.5rem;
    }
    @media (max-width: 767px) {
      .services-header {
        padding: 3rem 1rem 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
      }
    }
    @media (min-width: 1024px) { .services-header { padding: 5rem 3rem 0; } }
    .services-header__actions {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    @media (max-width: 767px) {
      .services-header__actions {
        width: 100%;
        justify-content: flex-end;
      }
    }
    .services-header h2 {
      margin-top: 0.75rem;
      font-size: 2.65rem;
      font-weight: 800;
      line-height: 1.12;
      color: var(--color-ink);
    }
    @media (max-width: 767px) {
      .services-header h2 {
        margin-top: 0.5rem;
        font-size: clamp(2.25rem, 9vw, 3rem);
        line-height: 1.02;
      }
    }
    .services-scroll-hint {
      display: none;
      max-width: 20rem;
      font-size: 0.875rem;
      color: var(--color-mute);
    }
    @media (min-width: 768px) { .services-scroll-hint { display: block; } }
    .services-track-wrap {
      flex: 1;
      display: flex;
      align-items: center;
      overflow-x: auto;
      overflow-y: hidden;
      cursor: grab;
      touch-action: pan-x;
      user-select: none;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }
    @media (max-width: 767px) {
      .services-track-wrap {
        align-items: stretch;
        padding-top: 1rem;
      }
    }
    .services-track-wrap:focus-visible {
      outline-offset: -6px;
    }
    .services-track-wrap::-webkit-scrollbar { display: none; }
    .services-track-wrap.is-dragging { cursor: grabbing; }
    .services-track {
      display: flex;
      gap: 1.15rem;
      padding-left: 1.5rem;
      padding-right: 1.5rem;
      will-change: auto;
    }
    @media (max-width: 767px) {
      .services-track {
        gap: 0.9rem;
        padding-left: 1rem;
        padding-right: 1rem;
      }
    }
    @media (min-width: 1024px) { .services-track { gap: 1.4rem; padding-left: 3rem; padding-right: 3rem; } }
    .service-card {
      position: relative;
      flex-shrink: 0;
      width: min(74vw, 440px);
      min-height: 500px;
      border-radius: 30px;
      padding: 0;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      box-shadow: 0 26px 48px -24px rgba(30,41,59,0.18);
      transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s;
      cursor: pointer;
    }
    @media (max-width: 639px) {
      .service-card {
        width: min(86vw, 360px);
        min-height: 0;
        border-radius: 26px;
      }
    }
    @media (min-width: 640px) { .service-card { width: min(60vw, 430px); min-height: 490px; } }
    @media (min-width: 768px) { .service-card { width: min(42vw, 420px); min-height: 480px; } }
    @media (min-width: 1024px) { .service-card { width: min(31vw, 400px); min-height: 468px; } }
    @media (min-width: 1280px) { .service-card { width: min(28vw, 390px); min-height: 456px; } }
    .service-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top right, rgba(255,255,255,0.5), transparent 60%);
      pointer-events: none;
    }
    .service-card:hover {
      transform: translateY(-8px) rotate(-0.35deg);
      box-shadow: 0 34px 64px -24px rgba(30,41,59,0.24);
    }
    .service-card__top {
      position: relative;
      display: flex;
      align-items: flex-start;
      justify-content: flex-end;
      margin-bottom: 0.75rem;
      flex-shrink: 0;
    }
    .service-chip {
      position: absolute;
      left: 0.95rem;
      top: 0.95rem;
      z-index: 2;
      display: inline-grid;
      grid-auto-flow: column;
      align-items: center;
      gap: 0.55rem;
      min-height: 2.05rem;
      padding: 0.3rem 0.8rem 0.3rem 0.34rem;
      border-radius: 999px;
      background: rgba(255,255,255,0.9);
      border: 1px solid rgba(255,255,255,0.46);
      backdrop-filter: blur(10px);
      box-shadow:
        0 14px 28px -18px rgba(17, 24, 39, 0.42),
        inset 0 1px 0 rgba(255,255,255,0.72);
      color: #12233f;
    }
    .service-chip strong {
      display: inline-grid;
      place-items: center;
      width: 1.38rem;
      height: 1.38rem;
      border-radius: 999px;
      background: rgba(16, 32, 63, 0.96);
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.14),
        0 8px 16px -10px rgba(16, 32, 63, 0.8);
      font-size: 0.64rem;
      line-height: 1;
      font-weight: 800;
      color: #ffffff;
      letter-spacing: 0.04em;
    }
    .service-chip span {
      display: block;
      font-size: 0.62rem;
      line-height: 1;
      font-weight: 800;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(18, 35, 63, 0.84);
    }
    .service-card__thumb {
      position: relative;
      flex-shrink: 0;
      width: 100%;
      height: 190px;
      min-height: 190px;
      border-radius: 0;
      overflow: hidden;
      background: rgba(255,255,255,0.34);
      border: 0;
      box-shadow: inset 0 -1px 0 rgba(255,255,255,0.36), 0 18px 36px -30px rgba(30,41,59,0.5);
    }
    @media (max-width: 639px) {
      .service-card__thumb {
        height: 240px;
        min-height: 240px;
      }
    }
    @media (min-width: 1024px) {
      .service-card__thumb {
        height: 182px;
        min-height: 182px;
      }
    }
    .service-card__thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(0.98) contrast(0.98);
      transition: transform 0.45s ease;
    }
    .service-card:hover .service-card__thumb img {
      transform: scale(1.04);
    }
    .service-card__bottom {
      position: relative;
      flex: 1;
      padding: 1.05rem 1.15rem 1.15rem;
      display: flex;
      flex-direction: column;
      min-height: 0;
    }
    @media (max-width: 639px) {
      .service-card__bottom {
        padding: 1.15rem 1rem 1rem;
      }
    }
    @media (min-width: 1024px) {
      .service-card__bottom { padding: 1.05rem 1.2rem 1.2rem; }
    }
    .service-card h3 {
      font-size: 1.42rem;
      font-weight: 800;
      color: var(--color-ink);
      line-height: 1.14;
    }
    @media (max-width: 639px) {
      .service-card h3 {
        font-size: 1.1rem;
        line-height: 1.12;
      }
    }
    .service-card p {
      margin-top: 0.5rem;
      font-size: 0.84rem;
      color: rgba(30,41,59,0.75);
      line-height: 1.52;
    }
    @media (max-width: 639px) {
      .service-card p {
        font-size: 0.8rem;
        line-height: 1.48;
      }
    }
    .service-card ul {
      margin-top: 0.9rem;
      display: flex;
      flex-wrap: wrap;
      align-items: flex-start;
      justify-content: flex-start;
      gap: 0.75rem 0.65rem;
    }
    .service-card li {
      display: inline-flex;
      align-items: center;
      width: fit-content;
      min-height: 2.05rem;
      padding: 0.48rem 0.78rem;
      border-radius: 999px;
      background: rgba(255,255,255,0.46);
      border: 1px solid rgba(255,255,255,0.42);
      box-shadow: 0 12px 26px -22px rgba(30,41,59,0.42);
      font-size: 0.72rem;
      font-weight: 600;
      color: var(--color-ink);
      line-height: 1;
      white-space: nowrap;
    }
    @media (max-width: 639px) {
      .service-card ul {
        gap: 0.55rem;
      }
      .service-card li {
        max-width: 100%;
        min-height: 1.9rem;
        padding: 0.42rem 0.68rem;
        font-size: 0.68rem;
        white-space: normal;
        line-height: 1.2;
      }
    }
    .service-card__cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.45rem;
      width: fit-content;
      min-height: 36px;
      margin-top: auto;
      padding: 0.56rem 0.92rem;
      border-radius: 9999px;
      background: var(--color-ink);
      color: white;
      font-size: 0.78rem;
      font-weight: 700;
      box-shadow: 0 16px 30px -22px rgba(30,41,59,0.7);
      transition: transform 0.2s, background 0.2s;
    }
    .service-card__cta span {
      transition: transform 0.2s;
    }
    .service-card__cta:hover {
      transform: translateY(-2px);
      background: white;
      color: var(--color-ink);
    }
    .service-card__cta:hover span {
      transform: translateX(3px);
    }
    .services-progress {
      padding: 0 1.5rem 2rem;
    }
    @media (max-width: 767px) {
      .services-progress {
        padding: 0 1rem 1.5rem;
      }
    }
    @media (min-width: 1024px) { .services-progress { padding: 0 3rem 2rem; } }
    .services-progress__bar {
      height: 4px;
      background: var(--color-line);
      border-radius: 9999px;
      overflow: hidden;
    }
    .services-progress__fill {
      height: 100%;
      background: linear-gradient(90deg, var(--color-brand-blue), var(--color-brand-pink));
      border-radius: 9999px;
      transform-origin: 0 50%;
      transform: scaleX(0);
      transition: transform 0.1s linear;
    }
    .services-nav {
      display: flex;
      gap: 0.5rem;
      flex-shrink: 0;
    }
    .services-nav__arrow {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      cursor: pointer;
      border: none;
      transition: background 0.2s, color 0.2s, opacity 0.2s;
      font-size: 1rem;
    }
    @media (max-width: 639px) {
      .services-nav__arrow {
        width: 42px;
        height: 42px;
      }
    }
    .services-nav__arrow--prev {
      background: white;
      border: 1px solid var(--color-line);
      color: var(--color-ink);
    }
    .services-nav__arrow--prev:hover:not(:disabled) { background: var(--color-brand-blue-pale); }
    .services-nav__arrow--next {
      background: var(--color-ink);
      color: white;
    }
    .services-nav__arrow--next:hover:not(:disabled) { background: var(--color-brand-blue); color: var(--color-ink); }
    .services-nav__arrow:disabled {
      opacity: 0.45;
      cursor: default;
    }

    /* ============================================================
       WORKS
       ============================================================ */
    .works {
      max-width: 1280px;
      margin: 0 auto;
      padding: 6rem 1.5rem;
    }
    @media (min-width: 1024px) { .works { padding: 8rem 2.5rem; } }
    .works__header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 1.5rem;
      margin-bottom: 3rem;
    }
    .works__header h2 {
      margin-top: 0.75rem;
      font-size: 2.65rem;
      font-weight: 800;
      line-height: 1.12;
    }
    .works__view-all {
      display: none;
      font-size: 0.875rem;
      font-weight: 600;
      color: #365ca8;
      transition: color 0.2s, transform 0.2s;
    }
    @media (min-width: 768px) { .works__view-all { display: inline-flex; } }
    .works__view-all:hover {
      color: var(--color-brand-pink);
      transform: translateX(2px);
    }
    .works__grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      margin-bottom: 2.5rem;
    }
    @media (min-width: 1024px) { .works__grid { grid-template-columns: 1.4fr 1fr; } }

    /* Before/After */
    .before-after {
      position: relative;
      border-radius: 36px;
      overflow: hidden;
      height: 420px;
      user-select: none;
      cursor: ew-resize;
      background:
        radial-gradient(circle at 18% 18%, rgba(123,184,255,0.18), transparent 34%),
        radial-gradient(circle at 84% 78%, rgba(247,138,184,0.16), transparent 32%),
        #f7f9fd;
    }
    @media (min-width: 1024px) { .before-after { height: 400px; } }
    .before-after__side { position: absolute; inset: 0; }
    .before-after__clip { position: absolute; inset: 0; overflow: hidden; }
    .before-after img {
      width: 100% !important;
      height: 100% !important;
      object-fit: contain !important;
      display: block !important;
      padding: clamp(0.75rem, 2vw, 1.25rem);
      background: transparent;
    }
    .before-after__label {
      position: absolute;
      z-index: 10;
      padding: 0.25rem 0.75rem;
      border-radius: 9999px;
      background: rgba(0,0,0,0.6);
      color: white;
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }
    .before-after__label--after { top: 1rem; right: 1rem; }
    .before-after__label--before { top: 1rem; left: 1rem; }
    .before-after__divider {
      position: absolute;
      top: 0; bottom: 0;
      width: 2px;
      background: white;
      box-shadow: 0 0 20px rgba(0,0,0,0.3);
    }
    .before-after__handle {
      position: absolute;
      top: 50%;
      transform: translateY(-50%) translateX(-50%);
      width: 48px; height: 48px;
      border-radius: 50%;
      background: white;
      display: grid;
      place-items: center;
      box-shadow: 0 4px 16px rgba(0,0,0,0.2);
      font-weight: 700;
      color: var(--color-ink);
      font-size: 1rem;
    }
    .art-before {
      width: 100%; height: 100%;
      background: #FFF0F6;
      display: grid;
      place-items: center;
    }
    .art-after {
      width: 100%; height: 100%;
      background: linear-gradient(135deg, #EAF4FF, #FFD1E3);
      display: grid;
      place-items: center;
    }
    .art-before svg, .art-after svg { width: 75%; }
    .works__case {
      border-radius: 36px;
      padding: 2rem;
      background: linear-gradient(180deg, #7bb8ff, #5f97dc);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 300px;
      box-shadow: 0 22px 48px -28px rgba(44, 78, 142, 0.35);
    }
    @media (min-width: 1024px) { .works__case { padding: 2.5rem; } }
    .case-chip {
      display: inline-flex;
      align-items: center;
      padding: 0.375rem 1rem;
      border-radius: 9999px;
      background: white;
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--color-ink);
      width: fit-content;
    }
    .works__case h3 {
      font-size: 1.65rem;
      font-weight: 800;
      line-height: 1.22;
    }
    .works__case p { margin-top: 0.75rem; color: rgba(16, 32, 63, 0.82); }

    /* Carousel */
    .carousel { position: relative; }
    .carousel__track-wrap { overflow: hidden; border-radius: 28px; }
    .carousel__track {
      display: flex;
      gap: 1.5rem;
      will-change: transform;
    }
    .carousel__slide {
      position: relative;
      flex-shrink: 0;
      border-radius: 28px;
      overflow: hidden;
      background:
        linear-gradient(135deg, rgba(255,255,255,0.96), rgba(239,246,255,0.96)),
        var(--color-line);
      height: 200px;
      padding: 0;
      border: 1px solid rgba(215, 222, 238, 0.95);
      appearance: none;
      transition: transform 0.3s;
    }
    .carousel__slide:hover { transform: scale(1.02); }
    .carousel__slide img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
      padding: 0.75rem;
    }
    .carousel__slide-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
      opacity: 0;
      transition: opacity 0.3s;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      gap: 0.35rem;
      padding: 1.25rem;
    }
    .carousel__slide:hover .carousel__slide-overlay { opacity: 1; }
    .carousel__slide-overlay span {
      color: white;
      font-size: 0.75rem;
      font-weight: 600;
      font-family: var(--font-mono);
      letter-spacing: 0.05em;
      background: rgba(123,184,255,0.22);
      border: 1px solid rgba(123,184,255,0.5);
      border-radius: 999px;
      padding: 0.3rem 0.85rem;
      display: inline-block;
    }
    .carousel__slide-overlay small {
      color: rgba(255,255,255,0.82);
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.01em;
    }
    .carousel__controls {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 1.5rem;
    }
    .carousel__dots {
      display: flex;
      gap: 0.5rem;
      flex: 1;
      flex-wrap: wrap;
      min-width: 0;
    }
    .carousel__dot {
      height: 6px;
      border-radius: 9999px;
      transition: width 0.3s, background 0.3s;
      width: 12px;
      background: var(--color-line);
      cursor: pointer;
      border: none;
    }
    .carousel__dot.active {
      width: 32px;
      background: var(--color-brand-pink);
    }
    .carousel__arrows {
      display: flex;
      gap: 0.5rem;
      flex-shrink: 0;
    }
    .carousel__arrow {
      width: 44px; height: 44px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      cursor: pointer;
      border: none;
      transition: background 0.2s, color 0.2s;
      font-size: 1rem;
    }
    .carousel__arrow--prev {
      background: white;
      border: 1px solid var(--color-line);
      color: var(--color-ink);
    }
    .carousel__arrow--prev:hover { background: var(--color-brand-blue-pale); }
    .carousel__arrow--next {
      background: var(--color-ink);
      color: white;
    }
    .carousel__arrow--next:hover { background: var(--color-brand-blue); color: var(--color-ink); }

    /* ============================================================
       WHY VERTEX
       ============================================================ */
    .why {
      max-width: 1280px;
      margin: 0 auto;
      padding: 6rem 1.5rem;
    }
    @media (min-width: 1024px) { .why { padding: 8rem 2.5rem; } }
    .why__intro { text-align: center; max-width: 48rem; margin: 0 auto; }
    .why__intro h2 {
      margin-top: 1rem;
      font-size: 3rem;
      font-weight: 800;
      line-height: 1.1;
    }
    .why__intro h2 .blue { color: var(--color-brand-blue); }
    .why__intro h2 .pink { color: var(--color-brand-pink); }
    .why__grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      margin-top: 4rem;
    }
    @media (min-width: 640px) { .why__grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1024px) { .why__grid { grid-template-columns: repeat(4, 1fr); } }
    .why-card {
      position: relative;
      border-radius: 28px;
      padding: 1.5rem;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.14);
      color: white;
      box-shadow: 0 22px 44px -28px rgba(15, 23, 42, 0.28);
      transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s;
      opacity: 0;
      transform: translateY(40px);
    }
    .why-card.visible {
      opacity: 1;
      transform: translateY(0);
      transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.35s;
    }
    .why-card:hover {
      transform: translateY(-8px) !important;
      box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }
    .why-card__icon {
      aspect-ratio: 1;
      border-radius: 16px;
      background: rgba(255,255,255,0.14);
      border: 1px solid rgba(255,255,255,0.12);
      margin-bottom: 1.25rem;
      display: grid;
      place-items: center;
      overflow: hidden;
    }
    .why-card__icon svg { width: 75%; height: 75%; }
    .why-card h3 { font-size: 1.25rem; font-weight: 700; color: white; }
    .why-card p { margin-top: 0.5rem; font-size: 0.875rem; color: rgba(255,255,255,0.82); line-height: 1.65; }
    .why-card__ring {
      position: absolute;
      inset: 0;
      border-radius: 28px;
      border: 2px solid transparent;
      pointer-events: none;
      transition: border-color 0.2s;
    }
    .why-card:hover .why-card__ring { border-color: rgba(255,255,255,0.16); }

    /* ============================================================
       PROCESS
       ============================================================ */
    .process-section {
      position: relative;
      padding: 6rem 0;
      background: linear-gradient(135deg, #f7faff 0%, #fff8fb 100%);
      overflow: hidden;
    }
    .process-sticky { position: relative; }
    .process-header {
      max-width: 1280px;
      width: 100%;
      margin: 0 auto;
      padding: 0 1.5rem 2.5rem;
    }
    @media (min-width: 1024px) { .process-header { padding: 0 2.5rem 2.5rem; } }
    .process-header h2 {
      margin-top: 0.75rem;
      font-size: 2.65rem;
      font-weight: 800;
      line-height: 1.12;
    }
    .process-header h2 .blue { color: var(--color-brand-blue); }
    .process-cards {
      width: 100%;
      overflow-x: auto;
      overflow-y: hidden;
      padding: 0 1.5rem 1.25rem;
      scrollbar-width: thin;
      scrollbar-color: var(--color-brand-blue-light) transparent;
    }
    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(250px, 1fr));
      gap: 1rem;
      width: 100%;
      min-width: 1060px;
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 1rem;
    }
    .process-card {
      position: relative;
      min-height: 530px;
      border-radius: 24px;
      padding: 1.25rem 1.4rem 2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      border: 1px solid #d7deee;
      background: #f2f4fc;
      box-shadow: 0 20px 55px rgba(80, 131, 206, 0.12);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .process-card:nth-child(even) {
      border-color: #f2dbe7;
      background: #fcf1f7;
    }
    .process-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 65px rgba(30, 41, 59, 0.1);
    }
    .process-card__top {
      display: flex;
      justify-content: center;
      width: 100%;
    }
    .process-num {
      display: grid;
      place-items: center;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: #0f73f6;
      color: #fff;
      font-size: 1rem;
      font-weight: 700;
      box-shadow: 0 8px 20px rgba(15, 115, 246, 0.22);
    }
    .process-card:nth-child(even) .process-num {
      background: #f72585;
      box-shadow: 0 8px 20px rgba(247, 37, 133, 0.2);
    }
    .process-card__illo {
      width: calc(100% + 0.4rem);
      height: 285px;
      margin: 0.5rem -0.2rem 0;
      overflow: hidden;
      background: #eff2fa;
    }
    .process-card:nth-child(even) .process-card__illo {
      background: #fdf0f4;
    }
    .process-card__illo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .process-card__bottom {
      width: 100%;
      margin-top: auto;
    }
    .process-card h3 {
      font-size: 1.34rem;
      font-weight: 800;
      line-height: 1.16;
      color: var(--color-ink);
    }
    .process-card h3::after {
      content: "";
      display: block;
      width: 42px;
      height: 3px;
      margin: 0.85rem auto 0;
      border-radius: 999px;
      background: var(--color-brand-blue);
    }
    .process-card:nth-child(even) h3::after { background: var(--color-brand-pink); }
    .process-card p {
      max-width: 255px;
      margin: 1rem auto 0;
      font-size: 0.92rem;
      line-height: 1.62;
      color: var(--color-body);
    }
    .process-connector {
      position: absolute;
      z-index: 3;
      top: 42%;
      right: -28px;
      display: grid;
      place-items: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #fff;
      color: var(--color-ink);
      box-shadow: 0 8px 25px rgba(30, 41, 59, 0.1);
    }
    .process-connector .material-symbols-rounded {
      font-size: 22px;
    }
    @media (min-width: 1024px) {
      .process-cards { padding-inline: 1.5rem; }
      .process-grid { min-width: 0; padding-inline: 1rem; }
    }
    @media (max-width: 700px) {
      .process-section { padding: 4.5rem 0; }
      .process-header { padding-bottom: 2rem; }
      .process-cards {
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
      }
      .process-cards::-webkit-scrollbar { display: none; }
      .process-grid {
        display: flex;
        flex-wrap: nowrap;
        gap: 0;
        width: 100%;
        min-width: 0;
        padding: 0 1.5rem 0 0;
      }
      .process-card {
        width: 82vw;
        flex: 0 0 82vw;
        max-width: 340px;
        min-height: 520px;
        margin-right: 1rem;
        overflow: hidden;
        scroll-snap-align: center;
      }
      .process-card:last-child { margin-right: 0; }
      .process-card__illo {
        width: calc(100% + 2.8rem);
        margin: 0.5rem -1.4rem 0;
      }
      .process-connector { display: none; }
    }

    /* ============================================================
       TESTIMONIALS
       ============================================================ */
    .testimonials-section {
      max-width: 1280px;
      margin: 0 auto;
      padding: 6rem 1.5rem;
    }
    @media (min-width: 1024px) { .testimonials-section { padding: 7rem 2.5rem; } }
    .testimonials-header {
      max-width: 820px;
      margin-bottom: 2.5rem;
    }
    .testimonials-header h2 {
      margin-top: 0.75rem;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      line-height: 1.12;
    }
    .testimonials-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.25rem;
    }
    @media (min-width: 900px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
    .testimonial-card {
      min-height: 245px;
      border-radius: 24px;
      padding: 2rem;
      background: #fff;
      border: 1px solid var(--color-line);
      box-shadow: 0 22px 48px -30px rgba(30,41,59,0.22);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .testimonial-card p {
      color: var(--color-ink);
      font-size: 1.02rem;
      line-height: 1.7;
      font-weight: 600;
    }
    .testimonial-card span {
      margin-top: 1.5rem;
      color: var(--color-mute);
      font-family: var(--font-mono);
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    /* ============================================================
       CTA / CONTACT
       ============================================================ */
    .cta { padding: 6rem 1.5rem; }
    @media (min-width: 1024px) { .cta { padding: 6rem 2.5rem; } }
    .cta__box {
      position: relative;
      max-width: 1280px;
      margin: 0 auto;
      border-radius: 40px;
      overflow: hidden;
      background: var(--color-ink);
      color: white;
      padding: 2rem;
    }
    @media (min-width: 1024px) { .cta__box { padding: 4rem; } }
    .cta__glow1 {
      position: absolute;
      top: -8rem; right: -8rem;
      width: 28rem; height: 28rem;
      background: rgba(123,184,255,0.4);
      border-radius: 50%;
      filter: blur(60px);
    }
    .cta__glow2 {
      position: absolute;
      bottom: -8rem; left: -8rem;
      width: 24rem; height: 24rem;
      background: rgba(247,138,184,0.4);
      border-radius: 50%;
      filter: blur(60px);
    }
    .cta__inner {
      position: relative;
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
      align-items: start;
    }
    @media (min-width: 1024px) { .cta__inner { grid-template-columns: 1fr 1.1fr; } }
    .cta__inner--contact-only {
      display: block;
      max-width: 38rem;
    }
    .cta__left-eyebrow {
      font-size: 0.72rem;
      font-family: var(--font-mono);
      text-transform: uppercase;
      letter-spacing: 0;
      font-weight: 700;
      color: var(--color-brand-pink-light);
    }
    .cta__h2 {
      margin-top: 1rem;
      font-size: 2.75rem;
      font-weight: 800;
      line-height: 1.1;
      color: white;
    }
    .cta__h2 em { font-style: normal; color: var(--color-brand-blue); }
    .cta__desc {
      margin-top: 1.25rem;
      color: rgba(255,255,255,0.78);
      font-size: 1.05rem;
      line-height: 1.7;
      max-width: 28rem;
    }
    .cta__contact-links { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
    .contact-link {
      display: flex;
      align-items: center;
      gap: 1rem;
      color: white;
      transition: color 0.2s;
      min-width: 0;
    }
    .contact-link:hover { color: var(--color-brand-blue); }
    .contact-link__icon {
      display: grid;
      place-items: center;
      width: 44px; height: 44px;
      border-radius: 12px;
      background: rgba(255,255,255,0.10);
      border: 1px solid rgba(255,255,255,0.15);
      transition: background 0.2s, color 0.2s;
      flex-shrink: 0;
    }
    .contact-link:hover .contact-link__icon {
      background: var(--color-brand-blue);
      color: var(--color-ink);
    }
    .contact-link--phone:hover { color: var(--color-brand-pink); }
    .contact-link--phone:hover .contact-link__icon {
      background: var(--color-brand-pink);
      color: var(--color-ink);
    }
    .contact-link--payment:hover { color: var(--color-brand-blue-light); }
    .contact-link--payment:hover .contact-link__icon {
      background: var(--color-brand-blue-light);
      color: var(--color-ink);
    }
    .contact-link__sub { font-size: 0.75rem; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.78); }
    .contact-link__val {
      font-weight: 600;
      overflow-wrap: anywhere;
    }

    /* ============================================================
       FOOTER
       ============================================================ */
    footer {
      position: relative;
      margin-top: 2.5rem;
      background: var(--color-ink);
      color: white;
      overflow: hidden;
    }
    .footer__dots {
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
      background-size: 24px 24px;
      pointer-events: none;
    }
    .footer__inner {
      position: relative;
      max-width: 1280px;
      margin: 0 auto;
      padding: 5rem 1.5rem 2.5rem;
    }
    @media (min-width: 1024px) { .footer__inner { padding: 5rem 2.5rem 2.5rem; } }
    .footer__grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
    }
    @media (min-width: 1024px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}

.footer__logo img {
  display: block;
  height: 80px; /* Adjust if needed */
  width: auto;
  object-fit: contain;
}
    .footer__brand-desc {
      margin-top: 1.25rem;
      color: rgba(255,255,255,0.82);
      font-size: 0.875rem;
      line-height: 1.7;
      max-width: 22rem;
    }
    .footer__socials { margin-top: 1.5rem; display: flex; gap: 0.75rem; }
    .footer__social {
      display: grid;
      place-items: center;
      width: 40px; height: 40px;
      border-radius: 50%;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.10);
      font-size: 0.75rem;
      font-weight: 600;
      color: white;
      transition: background 0.2s, color 0.2s, border-color 0.2s;
    }
    .footer__social:hover {
      background: var(--color-brand-blue);
      color: var(--color-ink);
      border-color: transparent;
    }
    .footer__col h4 { font-family: var(--font-display); font-weight: 600; color: white; }
    .footer__col ul { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.625rem; }
    .footer__col li a,
    .footer__col li span { font-size: 0.875rem; color: rgba(255,255,255,0.82); transition: color 0.2s; }
    .footer__col li a:hover { color: var(--color-brand-blue); }
    .footer__bottom {
      margin-top: 4rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255,255,255,0.10);
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      font-size: 0.75rem;
      color: rgba(255,255,255,0.78);
    }
    .footer__bottom-links {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem 1.25rem;
    }
    .footer__bottom-links a,
    .footer__bottom-links span { transition: color 0.2s; color: rgba(255,255,255,0.78); }
    .footer__bottom-links a:hover { color: white; }
    .footer__bottom-brand {
      font-family: var(--font-mono);
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    /* ============================================================
       SCROLL REVEAL
       ============================================================ */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
      }
    }
  

    /* ============================================================
       SUBPAGE HERO + LAYOUTS
       ============================================================ */
    .subhero {
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, var(--color-brand-blue-pale), white 55%, var(--color-brand-pink-pale));
    }
    .subhero__blob1, .subhero__blob2 {
      position: absolute;
      border-radius: 50%;
      filter: blur(60px);
      animation: blob 14s ease-in-out infinite;
    }
    .subhero__blob1 { left:-6rem; top:4rem; width:22rem; height:22rem; background: rgba(123,184,255,0.30); }
    .subhero__blob2 { right:-6rem; bottom:-4rem; width:20rem; height:20rem; background: rgba(247,138,184,0.30); animation-delay:-4s; }
    .subhero__dots {
      position:absolute; inset:0;
      background-image: radial-gradient(circle, rgba(30,41,59,0.08) 1px, transparent 1px);
      background-size: 24px 24px; opacity:0.5; pointer-events:none;
    }
    .subhero__inner {
      position: relative;
      max-width: 1280px;
      margin: 0 auto;
      padding: 5rem 1.5rem 4rem;
      text-align: center;
    }
    @media (min-width: 1024px) { .subhero__inner { padding: 7rem 2.5rem 5rem; } }
    .subhero__crumb {
      display: inline-flex; align-items: center; gap: 0.5rem;
      font-family: var(--font-mono);
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0;
      font-weight: 700;
      color: var(--color-brand-pink);
      background: white;
      padding: 0.4rem 0.9rem;
      border-radius: 9999px;
      border: 1px solid var(--color-line);
      margin-bottom: 1.5rem;
    }
    .subhero h1 {
      font-size: 3.45rem;
      font-weight: 800;
      line-height: 1.08;
      max-width: 52rem;
      margin: 0 auto;
    }
    .subhero h1 .blue { color: var(--color-brand-blue); }
    .subhero h1 .highlight { position: relative; display: inline-block; }
    .subhero h1 .highlight::after {
      content:''; position:absolute; left:0; right:0; bottom:4px;
      height:12px; background: var(--color-brand-pink-light);
      z-index:-1; border-radius:3px;
    }
    .subhero p {
      margin: 1.5rem auto 0;
      max-width: 40rem;
      font-size: 1.08rem;
      line-height: 1.7;
      color: var(--color-body);
    }

    /* Generic content section */
    .content-section {
      max-width: 1280px;
      margin: 0 auto;
      padding: 5rem 1.5rem;
    }
    @media (min-width: 1024px) { .content-section { padding: 7rem 2.5rem; } }

    /* Feature grid (Production Ready Artwork) */
    .feature-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      margin-top: 3rem;
    }
    @media (min-width: 640px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1024px) { .feature-grid { grid-template-columns: repeat(3, 1fr); } }
    .feature-card {
      background: white;
      border: 1px solid var(--color-line);
      border-radius: 24px;
      padding: 2rem;
      transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s, border-color 0.2s;
    }
    .feature-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 48px -20px rgba(30,41,59,0.18);
      border-color: transparent;
    }
    .feature-card__chip {
      display:inline-flex; align-items:center;
      padding: 0.3rem 0.8rem;
      border-radius: 9999px;
      background: var(--color-brand-blue-pale);
      color: var(--color-ink);
      font-family: var(--font-mono);
      font-size: 0.7rem;
      letter-spacing: 0;
      font-weight: 700;
      text-transform: uppercase;
    }
    .feature-card h3 {
      margin-top: 1rem;
      font-size: 1.28rem;
      font-weight: 800;
      line-height: 1.2;
      color: var(--color-ink);
    }
    .feature-card p {
      margin-top: 0.5rem;
      font-size: 0.96rem;
      line-height: 1.65;
      color: var(--color-body);
    }
    .feature-list {
      display: grid;
      gap: 0.62rem;
      margin: 1rem 0 0;
      padding: 0;
      list-style: none;
      color: var(--color-body);
      font-size: 0.95rem;
      line-height: 1.55;
    }
    .feature-list li {
      position: relative;
      padding-left: 1.25rem;
    }
    .feature-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.62em;
      width: 0.42rem;
      height: 0.42rem;
      border-radius: 50%;
      background: var(--color-brand-blue);
    }
    .section-copy {
      max-width: 880px;
      margin: 1rem auto 0;
      color: var(--color-body);
      font-size: 1.05rem;
      line-height: 1.75;
    }
    .support-plan-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      margin-top: 3rem;
    }
    @media (min-width: 900px) { .support-plan-grid { grid-template-columns: repeat(3, 1fr); } }
    .support-plan-card {
      min-height: 285px;
      border: 1px solid var(--color-line);
      border-radius: 24px;
      padding: 2rem;
      background: #fff;
      box-shadow: 0 20px 44px -26px rgba(30,41,59,0.22);
      transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s, border-color 0.2s;
    }
    .support-plan-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 28px 58px -28px rgba(30,41,59,0.25);
      border-color: transparent;
    }
    .support-plan-card--featured {
      background: linear-gradient(135deg, #f7faff 0%, #fff1f7 100%);
      border-color: rgba(247, 37, 133, 0.22);
    }
    .support-plan-card h3 {
      font-size: 1.4rem;
      font-weight: 800;
      color: var(--color-ink);
    }
    .subhero__cta {
      margin: 1.5rem auto 0;
    }
    .service-visual {
      overflow: hidden;
      border-radius: 24px;
      border: 1px solid var(--color-line);
      box-shadow: 0 28px 70px -34px rgba(30,41,59,0.28);
      background: #fff;
    }
    .service-visual img {
      display: block;
      width: 100%;
      height: clamp(260px, 42vw, 520px);
      object-fit: cover;
    }
    .service-visual--compact img {
      height: clamp(220px, 34vw, 420px);
    }
    .deliverables-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      margin-top: 3rem;
    }
    @media (min-width: 768px) { .deliverables-grid { grid-template-columns: repeat(2, 1fr); } }
    .deliverables-list {
      margin: 0;
      padding: 2rem;
      border: 1px solid var(--color-line);
      border-radius: 24px;
      background: #fff;
      box-shadow: 0 20px 44px -30px rgba(30,41,59,0.22);
    }

    /* Two-column pitch */
    .pitch {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
      align-items: start;
    }
    @media (min-width: 1024px) { .pitch { grid-template-columns: 1fr 1.2fr; gap: 5rem; } }
    .pitch h2 {
      font-size: 2.65rem;
      font-weight: 800;
      line-height: 1.12;
      margin-top: 1rem;
    }
    .pitch__list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
    .pitch__list li {
      display: flex; gap: 1rem; align-items: flex-start;
      padding: 1rem 1.25rem;
      background: white;
      border: 1px solid var(--color-line);
      border-radius: 16px;
    }
    .pitch__list .bullet {
      width: 28px; height: 28px; border-radius: 8px;
      display: grid; place-items: center;
      background: var(--color-brand-pink-light);
      color: var(--color-ink);
      font-weight: 700;
      flex-shrink: 0;
      font-size: 0.875rem;
    }
    .pitch__list strong { color: var(--color-ink); display:block; margin-bottom: 0.15rem; }
    .pitch__list p { font-size: 0.9375rem; color: var(--color-body); line-height: 1.6; }

    @media (max-width: 640px) {
      .about__h2,
      .services-header h2,
      .works__header h2,
      .process-header h2,
      .cta__h2,
      .pitch h2,
      .why__intro h2,
      .service-page__header h2 {
        font-size: 2.05rem;
        line-height: 1.15;
      }

      .subhero h1 {
        font-size: 2.25rem;
        line-height: 1.12;
      }

      .subhero p,
      .about__body p,
      .cta__desc {
        font-size: 1rem;
        line-height: 1.68;
      }

      .service-card h3,
      .works__case h3 {
        font-size: 1.42rem;
      }

      .before-after {
        height: 320px;
        border-radius: 28px;
      }

      .before-after img {
        padding: 0.75rem;
      }

      .before-after__handle {
        width: 42px;
        height: 42px;
        font-size: 0.9rem;
      }

      .works__case {
        min-height: auto;
        padding: 1.5rem;
        border-radius: 28px;
        gap: 1rem;
      }

      .case-chip {
        padding: 0.35rem 0.9rem;
      }

      .works__case p {
        font-size: 0.98rem;
        line-height: 1.65;
      }

      .carousel__track {
        gap: 1rem;
      }

      .carousel__track-wrap {
        border-radius: 24px;
      }

      .carousel__slide {
        height: 168px;
        border-radius: 24px;
      }

      .carousel__slide img {
        padding: 0.5rem;
      }

      .carousel__controls {
        margin-top: 1.25rem;
        gap: 1rem;
        align-items: flex-start;
        flex-direction: column;
      }

      .carousel__dots {
        width: 100%;
        justify-content: flex-start;
      }

      .carousel__arrows {
        width: 100%;
        justify-content: flex-end;
      }
    }

    /* Works page grid */
    .works-page-grid {
      column-count: 1;
      column-gap: 1.25rem;
      margin-top: 2rem;
    }
    .works-filters {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      align-items: center;
    }
    .works-filter-chip {
      display: inline-flex;
      align-items: center;
      min-height: 42px;
      padding: 0.7rem 1rem;
      border-radius: 9999px;
      background: white;
      border: 1px solid rgba(30,41,59,0.1);
      color: var(--color-ink);
      font-size: 0.82rem;
      font-weight: 600;
      line-height: 1;
      transition: transform 0.2s, background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
      box-shadow: 0 14px 30px -24px rgba(30,41,59,0.34);
    }
    .works-filter-chip:hover {
      transform: translateY(-1px);
      border-color: rgba(123,184,255,0.34);
      background: rgba(123,184,255,0.12);
    }
    .works-filter-chip.is-active {
      background: var(--color-brand-blue);
      color: #10203f;
      border-color: transparent;
      box-shadow: 0 18px 34px -20px rgba(91, 126, 213, 0.5);
    }
    .works-filter-chip[data-filter="embroidery-digitizing"].is-active {
      background: var(--color-brand-pink);
    }
    @media (min-width: 640px) { .works-page-grid { column-count: 2; } }
    @media (min-width: 1024px) { .works-page-grid { column-count: 3; } }
    @media (min-width: 1280px) { .works-page-grid { column-count: 4; } }
    .work-tile {
      position: relative;
      display: inline-block;
      width: 100%;
      margin: 0 0 1.25rem;
      break-inside: avoid;
      border-radius: 24px;
      overflow: hidden;
      background:
        linear-gradient(135deg, rgba(255,255,255,0.98), rgba(247,250,255,0.98)),
        var(--color-line);
      border: 1px solid rgba(215, 222, 238, 0.95);
      transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .work-tile:hover { transform: translateY(-6px); }
    .work-tile[hidden] {
      display: none;
    }
    .work-tile img {
      width: 100%;
      height: auto;
      object-fit: initial;
      display: block;
    }
    .work-tile__chip {
      position:absolute; top: 0.75rem; left: 0.75rem; z-index: 2;
      max-width: calc(100% - 1.5rem);
      background: rgba(255,255,255,0.92);
      color: var(--color-ink);
      font-family: var(--font-mono);
      font-size: 0.65rem;
      text-transform: uppercase;
      letter-spacing: 0;
      font-weight: 700;
      padding: 0.3rem 0.7rem;
      border-radius: 9999px;
      box-shadow: 0 12px 24px -18px rgba(30,41,59,0.5);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    /* Services page grid */
    .services-page-section {
      padding-top: 3rem;
    }
    .service-page__header {
      margin-bottom: 1.5rem;
    }
    .service-page__header h2 {
      margin-top: 0.5rem;
      font-size: 2.25rem;
      font-weight: 800;
      line-height: 1.15;
    }
    .services-page-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      margin-top: 2rem;
    }
    @media (min-width: 760px) {
      .services-page-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }
    @media (min-width: 1180px) {
      .services-page-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }
    .service-page-card {
      width: 100%;
      height: auto;
      min-height: 620px;
      max-height: none;
      border-radius: 24px;
      cursor: default;
    }
    .service-page-card:hover {
      transform: translateY(-6px);
    }
    .service-page-card .service-card__thumb {
      height: 260px;
      min-height: 260px;
    }
    .service-page-card .service-card__bottom {
      min-height: 360px;
    }
    .service-page-card .service-card__cta {
      cursor: pointer;
    }
    @media (max-width: 520px) {
      .service-page-card {
        min-height: 0;
      }
      .service-page-card .service-card__thumb {
        height: 200px;
        min-height: 200px;
      }
      .service-page-card .service-card__bottom {
        min-height: 0;
      }
    }

    /* Contact page — remove padding-top so hero flows into cta box */
    .contact-page .cta { padding-top: 3rem; }
 
    /* Google Form card — shared across all CTA sections */
    .cta .form-card {
      width: 100%;
      max-width: 720px;
      justify-self: end;
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(30, 41, 59, 0.08);
      border-radius: 22px;
      background: #ffffff;
      padding: clamp(24px, 3vw, 34px);
      color: var(--color-ink);
      box-shadow: 0 24px 55px -36px rgba(15, 23, 42, 0.48);
    }
    .cta .form-card::before {
      content: none;
      position: absolute;
      inset: 12px;
      border: 1px solid rgba(232, 237, 244, 0.95);
      border-radius: 16px;
      pointer-events: none;
    }
    .cta .form-card::after {
      content: none;
    }
    .cta .contact-form {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 18px;
    }
    .cta .two-column {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }
    .cta .field-group {
      display: grid;
      gap: 8px;
      min-width: 0;
    }
    .cta .field-label {
      font-family: var(--font-mono);
      font-size: 0.68rem;
      font-weight: 700;
      color: #53627a;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }
    .cta .control-wrap {
      position: relative;
      display: block;
    }
    .cta .contact-form input,
    .cta .contact-form select,
    .cta .contact-form textarea,
    .cta .contact-form button {
      font: inherit;
    }
    .cta .contact-form input,
    .cta .contact-form select,
    .cta .contact-form textarea {
      width: 100%;
      border: 1px solid #dfe7f2;
      background: #f8fafc;
      color: #1e293b;
      outline: none;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
      transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
    }
    .cta .contact-form input,
    .cta .contact-form select {
      height: 54px;
      border-radius: 12px;
      padding: 0 16px;
      font-size: 15px;
    }
    .cta .contact-form input[type="email"] {
      padding-right: 52px;
    }
    .cta .contact-form textarea {
      min-height: 126px;
      resize: vertical;
      border-radius: 12px;
      padding: 15px 16px;
      font-size: 15px;
      line-height: 1.55;
    }
    .cta .contact-form input::placeholder,
    .cta .contact-form textarea::placeholder,
    .cta .contact-form select:invalid {
      color: #7d8798;
      opacity: 1;
    }
    .cta .contact-form input:focus::placeholder,
    .cta .contact-form textarea:focus::placeholder {
      opacity: 0;
    }
    .cta .contact-form input:focus,
    .cta .contact-form select:focus,
    .cta .contact-form textarea:focus {
      border-color: var(--color-brand-blue);
      background: #fff;
      box-shadow: 0 0 0 4px rgba(123, 184, 255, 0.18);
    }
    .cta .contact-form input:hover,
    .cta .contact-form select:hover,
    .cta .contact-form textarea:hover {
      border-color: #c8d7ea;
    }
    .cta .contact-form select {
      appearance: none;
      cursor: pointer;
      padding-right: 52px;
    }
    .cta .select-arrow {
      position: absolute;
      right: 17px;
      top: 50%;
      width: 9px;
      height: 9px;
      transform: translateY(-67%) rotate(45deg);
      border-right: 2px solid #1f2d43;
      border-bottom: 2px solid #1f2d43;
      pointer-events: none;
    }
    .cta .mail-badge {
      position: absolute;
      right: 14px;
      top: 50%;
      transform: translateY(-50%);
      width: 26px;
      height: 26px;
      border-radius: 8px;
      display: grid;
      place-items: center;
      background: rgba(123, 184, 255, 0.18);
      pointer-events: none;
    }
    .cta .mail-badge svg {
      width: 13px;
      height: 13px;
      stroke: #316aa8;
      stroke-width: 2;
      fill: none;
    }
    .cta .submit-btn {
      min-height: 58px;
      margin-top: 4px;
      border: 0;
      border-radius: 14px;
      background: #1e293b;
      color: #ffffff;
      font-weight: 700;
      font-size: 16px;
      cursor: pointer;
      box-shadow: 0 16px 30px -18px rgba(15, 23, 42, 0.72);
      transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
    }
    .cta .submit-btn:hover:not(:disabled) {
      transform: translateY(-2px);
      background: #0f172a;
      box-shadow: 0 20px 36px -20px rgba(15, 23, 42, 0.8);
    }
    .cta .submit-btn:active:not(:disabled) {
      transform: translateY(0);
    }
    .cta .submit-btn:disabled {
      cursor: wait;
      opacity: 0.72;
    }
    .cta .form-status {
      display: none;
      margin: 0;
      padding: 12px 14px;
      border-radius: 12px;
      font-size: 14px;
      line-height: 1.45;
      font-weight: 600;
    }
    .cta .form-status.success {
      display: block;
      color: #138a59;
      background: rgba(19, 138, 89, 0.1);
      border: 1px solid rgba(19, 138, 89, 0.2);
    }
    .cta .form-status.error {
      display: block;
      color: #b42318;
      background: rgba(180, 35, 24, 0.07);
      border: 1px solid rgba(180, 35, 24, 0.18);
    }
    .cta .visually-hidden-frame {
      display: none;
    }
    @media (max-width: 1023px) {
      .cta .form-card {
        max-width: none;
        justify-self: stretch;
      }
    }
    @media (max-width: 680px) {
      .cta .form-card {
        border-radius: 18px;
        padding: 22px 14px;
      }
      .cta .two-column {
        grid-template-columns: 1fr;
        gap: 18px;
      }
      .cta .contact-form input,
      .cta .contact-form select {
        height: 54px;
      }
    }
