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

    html,
    body {
      height: 100%;
    }

    body {
      font-family: 'Inter', system-ui, sans-serif;
      background: #080110;
      color: #fff;
      overflow-x: hidden;
      overflow-y: auto;
      /* DESKTOP: JS snap depends on scroll events */
      -ms-overflow-style: none;
      /* IE and Edge */
      scrollbar-width: none;
      /* Firefox */
    }

    body::-webkit-scrollbar {
      display: none;
      /* Chrome, Safari, Opera */
    }

    :root {
      --plum: #612578;
      --violet: #7a3c92;
      --lilac: #9b68ad;
      --petal: #f0e6f5;
      --night: #12061A;
    }

    /* ════════════════════════════════
   CURSOR (desktop only)
════════════════════════════════ */
    #cur,
    #cur-ring {
      position: fixed;
      top: 0;
      left: 0;
      pointer-events: none;
      transform: translate(-50%, -50%);
    }

    #cur {
      width: 9px;
      height: 9px;
      background: var(--plum);
      border-radius: 50%;
      z-index: 99999;
    }

    #cur-ring {
      width: 32px;
      height: 32px;
      border: 1px solid rgba(97, 37, 120, 0.5);
      border-radius: 50%;
      z-index: 99998;
    }

    /* ════════════════════════════════
   PROGRESS BAR
════════════════════════════════ */
    #prog {
      position: fixed;
      bottom: 0;
      left: 0;
      height: 3px;
      background: var(--plum);
      z-index: 9900;
      width: 0%;
      pointer-events: none;
    }

    /* ════════════════════════════════
   NAVBAR
════════════════════════════════ */
    #nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 9000;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 52px;
      background: rgba(8, 1, 16, 0.92);
      backdrop-filter: blur(16px);
      border-bottom: 0.5px solid rgba(97, 37, 120, 0.2);
    }

    .n-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      cursor: pointer;
    }

    .n-name {
      font-family: 'Syne', 'Arial Black', Arial, sans-serif;
      font-size: 15px;
      font-weight: 700;
      color: #fff;
      letter-spacing: -0.3px;
    }

    .n-name span {
      color: var(--violet);
      font-weight: 500;
    }

    .n-links {
      display: flex;
      gap: 28px;
      list-style: none;
    }

    .n-links a {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.4);
      text-decoration: none;
      cursor: pointer;
      transition: color 0.2s;
      position: relative;
      padding: 4px 0;
    }

    .n-links a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--plum);
      transition: width 0.22s;
    }

    .n-links a:hover {
      color: #fff;
    }

    .n-links a.active {
      color: #fff;
    }

    .n-links a.active::after {
      width: 100%;
    }

    .n-btn {
      background: var(--plum);
      color: #fff;
      font-family: 'Inter', sans-serif;
      font-size: 12px;
      font-weight: 600;
      padding: 9px 20px;
      border-radius: 7px;
      border: none;
      cursor: pointer;
      transition: background 0.2s;
    }

    .n-btn:hover {
      background: var(--violet);
    }

    /* ════════════════════════════════
   PANEL COUNTER + SCROLL HINT
════════════════════════════════ */
    #counter {
      position: fixed;
      bottom: 30px;
      left: 52px;
      z-index: 8000;
      font-family: 'Syne', 'Arial Black', Arial, sans-serif;
      font-size: 11px;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.2);
      letter-spacing: 1px;
    }

    #hint {
      position: fixed;
      bottom: 30px;
      right: 160px;
      z-index: 8000;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: opacity 0.4s;
    }

    #hint.gone {
      opacity: 0;
      pointer-events: none;
    }

    .hint-t {
      font-size: 9.5px;
      color: rgba(255, 255, 255, 0.22);
      letter-spacing: 2px;
    }

    .hint-arr {
      width: 28px;
      height: 1px;
      background: rgba(97, 37, 120, 0.45);
      position: relative;
    }

    .hint-arr::after {
      content: '';
      position: absolute;
      right: -5px;
      top: -4px;
      width: 0;
      height: 0;
      border-top: 4px solid transparent;
      border-bottom: 4px solid transparent;
      border-left: 5px solid rgba(97, 37, 120, 0.45);
    }

    /* ════════════════════════════════
   PREV PANEL PEEK STRIP
════════════════════════════════ */
    #peek {
      position: fixed;
      left: 0;
      top: 64px;
      bottom: 0;
      width: 56px;
      z-index: 7000;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      opacity: 0;
      transform: translateX(-100%);
      transition: opacity 0.35s, transform 0.35s;
      pointer-events: none;
    }

    #peek.show {
      opacity: 1;
      transform: translateX(0);
      pointer-events: all;
    }

    #peek-bar {
      position: absolute;
      inset: 0;
      background: rgba(97, 37, 120, 0.25);
      transition: background 0.2s;
    }

    #peek:hover #peek-bar {
      background: rgba(97, 37, 120, 0.45);
    }

    #peek-arrow {
      position: absolute;
      left: 14px;
      top: 50%;
      transform: translateY(-50%);
      width: 0;
      height: 0;
      border-top: 5px solid transparent;
      border-bottom: 5px solid transparent;
      border-right: 6px solid rgba(255, 255, 255, 0.35);
      transition: border-right-color 0.2s;
    }

    #peek:hover #peek-arrow {
      border-right-color: #fff;
    }

    #peek-label {
      position: relative;
      z-index: 1;
      writing-mode: vertical-lr;
      transform: rotate(180deg);
      font-size: 9px;
      color: rgba(255, 255, 255, 0.45);
      letter-spacing: 2.5px;
      font-weight: 600;
      font-family: 'Syne', 'Arial Black', Arial, sans-serif;
      white-space: nowrap;
      transition: color 0.2s;
    }

    #peek:hover #peek-label {
      color: #fff;
    }

    /* ════════════════════════════════
   ABOUT US BUTTON (last panel)
════════════════════════════════ */
    #about-btn {
      position: fixed;
      bottom: 22px;
      right: 52px;
      z-index: 8100;
      display: flex;
      align-items: center;
      gap: 9px;
      background: linear-gradient(135deg, #612578, #7a3c92);
      color: #fff;
      font-family: 'Syne', 'Arial Black', Arial, sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1px;
      padding: 11px 20px;
      border-radius: 30px;
      border: none;
      cursor: pointer;
      opacity: 0;
      pointer-events: none;
      transform: translateY(8px);
      transition: opacity 0.4s, transform 0.4s, box-shadow 0.2s;
      box-shadow: 0 4px 20px rgba(97, 37, 120, 0.4);
    }

    #about-btn.show {
      opacity: 1;
      pointer-events: all;
      transform: translateY(0);
    }

    #about-btn:hover {
      box-shadow: 0 6px 28px rgba(97, 37, 120, 0.7);
      transform: translateY(-2px);
    }

    #about-btn .ab-dot {
      width: 8px;
      height: 8px;
      background: #fff;
      border-radius: 50%;
      animation: pulse-dot 1.8s infinite;
    }

    @keyframes pulse-dot {

      0%,
      100% {
        transform: scale(1);
        opacity: 1;
      }

      50% {
        transform: scale(1.4);
        opacity: 0.6;
      }
    }

    #about-btn .ab-icon {
      font-size: 14px;
    }

    /* ════════════════════════════════
   HORIZONTAL STAGE (desktop)
════════════════════════════════ */
    #stage {
      position: fixed;
      top: 0;
      left: 0;
      height: 100vh;
      display: flex;
      /* width set by JS */
      will-change: transform;
    }

    /* ════════════════════════════════
   PANELS
════════════════════════════════ */
    .panel {
      flex-shrink: 0;
      width: 100vw;
      height: 100vh;
      padding-top: 64px;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .panel::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(155, 104, 173, 0.22) 1.2px, transparent 1.2px);
      background-size: 32px 32px;
      pointer-events: none;
      z-index: 0;
    }

    .pi {
      width: 100%;
      height: 100%;
      padding: 0 72px;
      display: flex;
      align-items: center;
      gap: 64px;
      will-change: transform, opacity;
      perspective: 1000px;
    }

    .pi.col {
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      gap: 24px;
    }

    /* ════════════════════════════════
   SHARED TYPE
════════════════════════════════ */
    .eye {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 3px;
    }

    .ph {
      font-family: 'Syne', 'Arial Black', Arial, sans-serif;
      font-weight: 800;
      letter-spacing: -1.2px;
      line-height: 1.05;
    }

    .ps {
      font-size: 14px;
      font-weight: 300;
      line-height: 1.75;
    }

    .bp {
      background: var(--plum);
      color: #fff;
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      font-weight: 600;
      padding: 12px 26px;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    }

    .bp:hover {
      background: var(--violet);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(97, 37, 120, 0.45);
    }

    .bg {
      background: transparent;
      color: rgba(255, 255, 255, 0.5);
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      padding: 12px 26px;
      border-radius: 8px;
      border: 0.5px solid rgba(255, 255, 255, 0.12);
      cursor: pointer;
      transition: all 0.2s;
    }

    .bg:hover {
      color: #fff;
      border-color: rgba(255, 255, 255, 0.35);
    }

    /* ════════════════════════════════
   P1 HERO
════════════════════════════════ */
    #p1 {
      background: var(--night);
    }

    #p1::after {
      content: '';
      position: absolute;
      right: -60px;
      top: -60px;
      width: 480px;
      height: 480px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(97, 37, 120, 0.1) 0%, transparent 70%);
      pointer-events: none;
    }

    .h-left {
      max-width: 580px;
      flex-shrink: 0;
      position: relative;
      z-index: 2;
    }

    .h-right {
      flex: 1.4;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      height: 100%;
    }

    .h-outer-ring {
      position: absolute;
      width: 950px;
      height: 950px;
      border-radius: 50%;
      border: 1.2px solid rgba(155, 104, 173, 0.06);
      animation: rot 40s linear infinite;
    }

    .h-main-ring {
      position: absolute;
      width: 750px;
      height: 750px;
      border-radius: 50%;
      border: 1.5px solid rgba(155, 104, 173, 0.18);
      display: flex;
      align-items: center;
      justify-content: center;
      animation: rot-rev 30s linear infinite;
    }

    .h-sub-ring {
      position: absolute;
      width: 450px;
      height: 450px;
      border-radius: 50%;
      border: 1.2px solid rgba(155, 104, 173, 0.12);
      animation: rot 20s linear infinite;
    }

    @keyframes rot {
      from {
        transform: rotate(0deg);
      }

      to {
        transform: rotate(360deg);
      }
    }

    @keyframes rot-rev {
      from {
        transform: rotate(360deg);
      }

      to {
        transform: rotate(0deg);
      }
    }

    .h-logo-box {
      position: relative;
      width: 320px;
      height: 320px;
      display: flex;
      align-items: center;
      justify-content: center;
      filter: drop-shadow(0 0 50px rgba(155, 104, 173, 0.2));
    }

    .h-glyph {
      width: 100%;
      height: 100%;
    }

    .h-glyph .radar-ring {
       transform-origin: center;
       animation: radarPulse 4s infinite ease-in-out;
    }

    @keyframes radarPulse {
      0%, 100% { opacity: 0.2; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(1.02); }
    }

    .h-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(97, 37, 120, 0.18);
      border: 0.5px solid rgba(97, 37, 120, 0.45);
      border-radius: 30px;
      padding: 5px 14px;
      margin-bottom: 26px;
    }

    .h-dot {
      width: 6px;
      height: 6px;
      background: var(--lilac);
      border-radius: 50%;
      animation: blink 2s infinite;
    }

    @keyframes blink {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: 0.3;
      }
    }

    .h-pill-t {
      font-size: 10px;
      color: var(--lilac);
      letter-spacing: 1.8px;
      font-weight: 500;
    }

    .h-h1 {
      font-family: 'Syne', 'Arial Black', Arial, sans-serif;
      font-size: 68px;
      font-weight: 800;
      line-height: 0.98;
      letter-spacing: -2.5px;
      color: #fff;
      margin-bottom: 20px;
    }

    .h-h1 em {
      color: var(--violet);
      font-style: normal;
    }

    .h-sub {
      font-size: 15px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.4);
      line-height: 1.75;
      max-width: 420px;
      margin-bottom: 36px;
    }

    .h-btns {
      display: flex;
      gap: 12px;
      margin-bottom: 52px;
    }

    .h-stats {
      display: flex;
      border-top: 0.5px solid rgba(97, 37, 120, 0.18);
    }

    .hs {
      padding: 18px 44px 14px 0;
      border-right: 0.5px solid rgba(97, 37, 120, 0.12);
      margin-right: 44px;
    }

    .hs:last-child {
      border-right: none;
      margin-right: 0;
    }

    .hs-n {
      font-family: 'Syne', 'Arial Black', Arial, sans-serif;
      font-size: 26px;
      font-weight: 800;
      color: #fff;
      letter-spacing: -0.8px;
      line-height: 1;
    }

    .hs-l {
      font-size: 8.5px;
      color: rgba(122, 60, 146, 0.6);
      letter-spacing: 2.5px;
      margin-top: 4px;
    }

    /* ════════════════════════════════
   P2 SERVICES
════════════════════════════════ */
    #p2 {
      background: #fff;
    }

    .svc-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 13px;
      width: 100%;
    }

    .sc {
      border: 0.5px solid #ede0f5;
      border-radius: 12px;
      padding: 22px;
      transition: all 0.22s;
      cursor: pointer;
    }

    .sc:hover {
      border-color: var(--plum);
      transform: translateY(-3px);
      box-shadow: 0 10px 26px rgba(97, 37, 120, 0.1);
    }

    .sc-ico {
      width: 38px;
      height: 38px;
      background: var(--petal);
      border-radius: 9px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 14px;
      transition: background 0.2s;
    }

    .sc:hover .sc-ico {
      background: rgba(97, 37, 120, 0.1);
    }

    .sc-t {
      font-family: 'Syne', 'Arial Black', Arial, sans-serif;
      font-size: 13px;
      font-weight: 700;
      color: #12061A;
      margin-bottom: 5px;
    }

    .sc-d {
      font-size: 11.5px;
      color: #aaa;
      line-height: 1.6;
    }

    .sc-a {
      font-size: 10.5px;
      color: var(--plum);
      margin-top: 11px;
      display: block;
      font-weight: 500;
    }

    /* ════════════════════════════════
   P3 PROCESS
════════════════════════════════ */
    #p3 {
      background: #f7f0fa;
    }

    .proc-row {
      display: flex;
      gap: 16px;
      width: 100%;
    }

    .prc {
      flex: 1;
      background: #fff;
      border-radius: 12px;
      padding: 26px;
      border: 0.5px solid #e8d5f0;
      position: relative;
      overflow: hidden;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .prc:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 30px rgba(97, 37, 120, 0.1);
    }

    .prc-bg {
      font-family: 'Syne', 'Arial Black', Arial, sans-serif;
      font-size: 66px;
      font-weight: 800;
      color: rgba(97, 37, 120, 0.06);
      position: absolute;
      top: 2px;
      right: 8px;
      line-height: 1;
      letter-spacing: -4px;
      pointer-events: none;
    }

    .prc-n {
      width: 34px;
      height: 34px;
      background: var(--plum);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Syne', 'Arial Black', Arial, sans-serif;
      font-size: 10px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 14px;
      position: relative;
      z-index: 1;
    }

    .prc-t {
      font-family: 'Syne', 'Arial Black', Arial, sans-serif;
      font-size: 13px;
      font-weight: 700;
      color: #12061A;
      margin-bottom: 6px;
    }

    .prc-d {
      font-size: 11.5px;
      color: #aaa;
      line-height: 1.6;
    }

    /* ════════════════════════════════
   P4 PORTFOLIO — carousel
════════════════════════════════ */
    #p4 {
      background: var(--night);
    }

    .port-wrap {
      width: 100%;
      position: relative;
    }

    .port-carousel {
      overflow: hidden;
      width: 100%;
      border-radius: 12px;
    }

    .port-track {
      display: flex;
      transition: transform 0.52s cubic-bezier(0.77, 0, 0.175, 1);
    }

    .pk {
      flex-shrink: 0;
      padding-right: 14px;
    }

    .pk-inner {
      border-radius: 12px;
      overflow: hidden;
      border: 0.5px solid rgba(97, 37, 120, 0.2);
      transition: all 0.22s;
      cursor: pointer;
    }

    .pk-inner:hover {
      border-color: var(--plum);
      transform: translateY(-3px);
      box-shadow: 0 14px 36px rgba(0, 0, 0, 0.5);
    }

    .pk-thumb {
      height: 140px;
      background: #1e0d2e;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 9px;
      color: #3a1a50;
      letter-spacing: 2px;
      position: relative;
      overflow: hidden;
    }

    .pk-ol {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(97, 37, 120, 0.18), transparent);
      opacity: 0;
      transition: opacity 0.22s;
    }

    .pk-inner:hover .pk-ol {
      opacity: 1;
    }

    .pk-body {
      padding: 15px;
    }

    .pk-pill {
      display: inline-block;
      font-size: 8.5px;
      background: rgba(97, 37, 120, 0.22);
      color: var(--lilac);
      padding: 3px 9px;
      border-radius: 20px;
      letter-spacing: 1.5px;
      margin-bottom: 7px;
      font-weight: 500;
    }

    .pk-t {
      font-family: 'Syne', 'Arial Black', Arial, sans-serif;
      font-size: 13px;
      font-weight: 700;
      color: #fff;
    }

    .pk-d {
      font-size: 10.5px;
      color: rgba(107, 58, 128, 0.75);
      margin-top: 2px;
    }

    .port-controls {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 16px;
    }

    .port-dots {
      display: flex;
      gap: 6px;
      align-items: center;
    }

    .pdot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: rgba(97, 37, 120, 0.3);
      transition: all 0.2s;
      cursor: pointer;
    }

    .pdot.on {
      width: 18px;
      border-radius: 3px;
      background: var(--plum);
    }

    .port-arrows {
      display: flex;
      gap: 10px;
    }

    .p-arr {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(97, 37, 120, 0.2);
      border: 0.5px solid rgba(97, 37, 120, 0.35);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.2s;
    }

    .p-arr:hover {
      background: var(--plum);
      border-color: var(--plum);
    }

    .p-arr:disabled {
      opacity: 0.3;
      pointer-events: none;
    }

    .p-arr svg {
      width: 14px;
      height: 14px;
    }

    /* ════════════════════════════════
   P5 TESTIMONIALS
════════════════════════════════ */
    #p5 {
      background: var(--plum);
    }

    #p5::before {
      content: '';
      position: absolute;
      top: -180px;
      left: -180px;
      width: 550px;
      height: 550px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.04);
      pointer-events: none;
    }

    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 13px;
      width: 100%;
    }

    .tc {
      background: rgba(255, 255, 255, 0.07);
      border: 0.5px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      padding: 22px;
      transition: background 0.2s, transform 0.2s;
    }

    .tc:hover {
      background: rgba(255, 255, 255, 0.11);
      transform: translateY(-2px);
    }

    .tc-stars {
      display: flex;
      gap: 3px;
      margin-bottom: 12px;
    }

    .tc-star {
      width: 10px;
      height: 10px;
      background: #fff;
      border-radius: 2px;
      opacity: 0.85;
    }

    .tc-txt {
      font-size: 12.5px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.7;
      margin-bottom: 16px;
    }

    .tc-auth {
      display: flex;
      align-items: center;
      gap: 9px;
    }

    .tc-av {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.14);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 9px;
      font-weight: 700;
      color: #fff;
      flex-shrink: 0;
      font-family: 'Syne', 'Arial Black', Arial, sans-serif;
    }

    .tc-name {
      font-family: 'Syne', 'Arial Black', Arial, sans-serif;
      font-size: 11px;
      font-weight: 700;
      color: #fff;
    }

    .tc-role {
      font-size: 9.5px;
      color: rgba(255, 255, 255, 0.38);
      margin-top: 1px;
    }

    /* ════════════════════════════════
   P6 PRICING
════════════════════════════════ */
    #p6 {
      background: #fff;
    }

    .price-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 13px;
      width: 100%;
    }

    .prc-card {
      border: 0.5px solid #ede0f5;
      border-radius: 12px;
      padding: 24px;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .prc-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 26px rgba(97, 37, 120, 0.09);
    }

    .prc-card.feat {
      border: 1.5px solid var(--plum);
    }

    .pb {
      display: inline-block;
      font-size: 8.5px;
      font-weight: 600;
      padding: 3px 11px;
      border-radius: 20px;
      letter-spacing: 1.5px;
      margin-bottom: 13px;
    }

    .pb.std {
      background: var(--petal);
      color: var(--plum);
    }

    .pb.hot {
      background: var(--plum);
      color: #fff;
    }

    .prc-name {
      font-family: 'Syne', 'Arial Black', Arial, sans-serif;
      font-size: 15px;
      font-weight: 700;
      color: #12061A;
      margin-bottom: 4px;
    }

    .prc-amt {
      font-family: 'Syne', 'Arial Black', Arial, sans-serif;
      font-size: 25px;
      font-weight: 800;
      color: #12061A;
      letter-spacing: -0.8px;
      margin-bottom: 6px;
    }

    .prc-amt sub {
      font-size: 11px;
      font-weight: 400;
      color: #bbb;
      letter-spacing: 0;
      font-family: 'Inter', sans-serif;
    }

    .prc-desc {
      font-size: 11.5px;
      color: #aaa;
      line-height: 1.6;
      margin-bottom: 16px;
    }

    .prc-feats {
      margin-bottom: 18px;
    }

    .pf {
      font-size: 11.5px;
      color: #555;
      padding: 4px 0;
      border-bottom: 0.5px solid #f5f0f8;
      display: flex;
      align-items: center;
      gap: 7px;
    }

    .pf:last-child {
      border-bottom: none;
    }

    .pf-dot {
      width: 4px;
      height: 4px;
      background: var(--plum);
      border-radius: 50%;
      flex-shrink: 0;
    }

    .p-btn {
      width: 100%;
      padding: 10px;
      border-radius: 8px;
      font-family: 'Inter', sans-serif;
      font-size: 12px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s;
    }

    .p-btn.out {
      background: transparent;
      border: 0.5px solid var(--plum);
      color: var(--plum);
    }

    .p-btn.out:hover {
      background: var(--petal);
    }

    .p-btn.fill {
      background: var(--plum);
      border: none;
      color: #fff;
    }

    .p-btn.fill:hover {
      background: var(--violet);
    }

    /* ════════════════════════════════
   P7 CONTACT
════════════════════════════════ */
    #p7 {
      background: var(--night);
    }

    .cl {
      flex: 1;
      max-width: 540px;
      flex-shrink: 0;
    }

    .cl-h {
      font-family: 'Syne', 'Arial Black', Arial, sans-serif;
      font-size: 46px;
      font-weight: 800;
      color: #fff;
      letter-spacing: -2px;
      line-height: 1.05;
      margin-bottom: 16px;
    }

    .cl-h em {
      color: var(--violet);
      font-style: normal;
    }

    .cl-sub {
      font-size: 14px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.35);
      line-height: 1.75;
      margin-bottom: 28px;
    }

    .cl-info {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .ci {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .ci-dot {
      width: 7px;
      height: 7px;
      background: var(--plum);
      border-radius: 50%;
      flex-shrink: 0;
    }

    .ci-t {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.38);
    }

    .ci-t strong {
      color: #fff;
      font-weight: 500;
    }

    .cr {
      flex: 1;
      max-width: 580px;
    }

    .form-box {
      background: #1a0828;
      border: 0.5px solid rgba(97, 37, 120, 0.28);
      border-radius: 16px;
      padding: 32px;
    }

    .fr {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 12px;
    }

    .fg {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .fg.full {
      grid-column: 1/-1;
    }

    label {
      font-size: 10px;
      color: rgba(255, 255, 255, 0.35);
      letter-spacing: 1px;
      font-weight: 500;
    }

    .fi,
    .fs,
    .ft {
      background: rgba(255, 255, 255, 0.04);
      border: 0.5px solid rgba(97, 37, 120, 0.28);
      border-radius: 7px;
      padding: 10px 13px;
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      color: #fff;
      outline: none;
      width: 100%;
      transition: border-color 0.2s, background 0.2s;
    }

    .fi::placeholder,
    .ft::placeholder {
      color: rgba(255, 255, 255, 0.16);
    }

    .fi:focus,
    .ft:focus {
      outline: none;
      border-color: var(--plum);
      background: rgba(255, 255, 255, 0.04);
    }

    .fi.error, .fs.error, .ft.error {
      border-color: #ff4d4d !important;
      background: rgba(255, 77, 77, 0.05) !important;
    }

    .error-txt {
      font-size: 10px;
      color: #ff4d4d;
      margin-top: 4px;
      font-weight: 600;
      letter-spacing: 0.2px;
    }

    .fs {
      cursor: pointer;
      appearance: none;
    }

    .fs option {
      background: #1a0828;
      color: #fff;
    }

    .ft {
      resize: none;
      height: 100px;
      line-height: 1.6;
    }

    .f-sub {
      width: 100%;
      padding: 12px;
      background: var(--plum);
      color: #fff;
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      font-weight: 600;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      margin-top: 4px;
      letter-spacing: 0.4px;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    }

    .f-sub:hover {
      background: var(--violet);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(97, 37, 120, 0.5);
    }

    .f-ok {
      display: none;
      text-align: center;
      padding: 36px 16px;
    }

    .f-ok.on {
      display: block;
    }

    .f-ok-icon {
      width: 48px;
      height: 48px;
      background: rgba(97, 37, 120, 0.2);
      border: 1px solid rgba(97, 37, 120, 0.4);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 14px;
    }

    .f-ok-t {
      font-family: 'Syne', 'Arial Black', Arial, sans-serif;
      font-size: 17px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 7px;
    }

    .f-ok-s {
      font-size: 12.5px;
      color: rgba(255, 255, 255, 0.36);
      line-height: 1.6;
    }

    /* ════════════════════════════════
   ABOUT US OVERLAY (footer)
════════════════════════════════ */
    #about-overlay {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 6000;
      background: #050009;
      border-top: 0.5px solid rgba(97, 37, 120, 0.18);
      transform: translateY(100%);
      transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
      max-height: calc(100vh - 64px);
      overflow-y: auto;
    }

    #about-overlay.open {
      transform: translateY(0);
    }

    .ao-inner {
      padding: 48px 72px 100px;
    }

    /* padding-bottom to avoid fixed button overlap */
    .ao-close {
      position: absolute;
      top: 20px;
      right: 32px;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: rgba(97, 37, 120, 0.2);
      border: 0.5px solid rgba(97, 37, 120, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: rgba(255, 255, 255, 0.5);
      font-size: 16px;
      transition: all 0.2s;
    }

    .ao-close:hover {
      background: rgba(97, 37, 120, 0.4);
      color: #fff;
    }

    .ft-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 44px;
      padding-bottom: 36px;
      border-bottom: 0.5px solid rgba(97, 37, 120, 0.1);
    }

    .ft-br {
      display: flex;
      align-items: center;
      gap: 9px;
      margin-bottom: 10px;
    }

    .ft-bn {
      font-family: 'Syne', 'Arial Black', Arial, sans-serif;
      font-size: 16px;
      font-weight: 700;
      color: #fff;
    }

    .ft-bn span {
      color: var(--violet);
      font-weight: 500;
    }

    .ft-ct {
      font-size: 8.5px;
      color: rgba(255, 255, 255, 0.45);
      letter-spacing: 2.5px;
      font-weight: 600;
      margin-bottom: 13px;
    }

    .ft-lk {
      display: block;
      font-size: 12px;
      color: rgba(255, 255, 255, 0.65);
      margin-bottom: 8px;
      text-decoration: none;
      cursor: pointer;
      transition: color 0.2s;
    }

    .ft-lk:hover {
      color: var(--lilac);
    }

    .ft-desc {
      font-size: 11.5px;
      color: rgba(255, 255, 255, 0.6);
      line-height: 1.7;
      max-width: 200px;
    }

    .ft-bot {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 20px;
    }

    .ft-copy {
      font-size: 10.5px;
      color: rgba(255, 255, 255, 0.4);
    }

    .ft-soc {
      display: flex;
      gap: 8px;
    }

    .fsc {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      border: 0.5px solid rgba(255, 255, 255, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.2s;
    }

    .fsc:hover {
      border-color: var(--plum);
      background: rgba(97, 37, 120, 0.15);
    }

    .fsc span {
      font-size: 8.5px;
      color: rgba(255, 255, 255, 0.6);
      font-weight: 700;
    }

    /* ════════════════════════════════
   MOBILE — full separate layout
   No JS scroll engine on mobile.
   Each section is a normal block.
════════════════════════════════ */
    @media(max-width:860px) {

      /* Override desktop lock */
      html,
      body {
        height: auto;
        overflow: auto;
      }

      body {
        overflow-x: hidden;
      }

      /* Stage becomes a normal vertical flow */
      #stage {
        position: relative !important;
        top: auto;
        left: auto;
        height: auto !important;
        width: 100% !important;
        display: block !important;
        transform: none !important;
      }

      .panel {
        width: 100% !important;
        height: auto !important;
        min-height: 100svh;
        display: block !important;
        padding-top: 80px;
        padding-bottom: 48px;
      }

      .pi {
        flex-direction: column !important;
        height: auto !important;
        padding: 24px !important;
        gap: 20px !important;
        align-items: flex-start !important;
      }

      .pi.col {
        justify-content: flex-start !important;
      }

      /* panels that use padding-left:120px for peek space */
      .pi[style*="padding-left:120px"] {
        padding-left: 24px !important;
      }

      .h-right {
        display: none;
      }

      .h-h1 {
        font-size: 38px !important;
        letter-spacing: -1.5px !important;
      }

      .h-btns {
        flex-wrap: wrap;
      }

      .svc-grid,
      .testi-grid,
      .price-grid,
      .port-grid-m {
        grid-template-columns: 1fr !important;
      }

      .proc-row {
        flex-direction: column !important;
      }

      /* portfolio on mobile: simple vertical stack */
      .port-track {
        flex-direction: column !important;
        transform: none !important;
      }

      .pk {
        width: 100% !important;
        padding-right: 0 !important;
        margin-bottom: 14px !important;
      }

      .port-carousel {
        overflow: visible !important;
      }

      .cl,
      .cr {
        width: 100%;
        max-width: 100% !important;
      }

      .fr {
        grid-template-columns: 1fr !important;
      }

      /* hide desktop-only chrome */
      #cur,
      #cur-ring,
      #counter,
      #hint,
      #peek,
      #prog {
        display: none !important;
      }

      /* about button — always show on mobile, fixed bottom */
      #about-btn {
        position: fixed;
        bottom: 16px;
        right: 16px;
        opacity: 1 !important;
        pointer-events: all !important;
        transform: none !important;
        font-size: 11px;
        padding: 10px 16px;
      }

      /* about overlay */
      #about-overlay {
        max-height: 85vh;
      }

      .ao-inner {
        padding: 40px 24px 100px;
      }

      .ft-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 24px;
      }

      #nav {
        padding: 0 20px;
      }

      .n-links {
        display: none;
      }

      #nav-toggle {
        display: flex;
      }

      .n-btn {
        display: none;
      }
    }

    #nav-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 38px;
      height: 38px;
      padding: 8px;
      cursor: pointer;
      z-index: 10001;
      border-radius: 50%;
      background: rgba(97, 37, 120, 0.1);
      transition: all 0.3s;
    }

    #nav-toggle span {
      display: block;
      width: 100%;
      height: 2px;
      background: #fff;
      border-radius: 2px;
      transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    }

    #nav-toggle.open span:nth-child(1) {
      transform: translateY(3.5px) rotate(45deg);
    }

    #nav-toggle.open span:nth-child(2) {
      transform: translateY(-3.5px) rotate(-45deg);
    }

    #mobile-menu {
      position: fixed;
      inset: 0;
      background: #050009;
      z-index: 10000;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    }

    #mobile-menu.open {
      opacity: 1;
      visibility: visible;
    }

    .m-links {
      list-style: none;
      padding: 0;
      margin: 0;
      text-align: center;
    }

    .m-links li {
      margin: 24px 0;
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.4s;
    }

    #mobile-menu.open .m-links li {
      opacity: 1;
      transform: translateY(0);
    }

    #mobile-menu.open .m-links li:nth-child(1) {
      transition-delay: 0.1s;
    }

    #mobile-menu.open .m-links li:nth-child(2) {
      transition-delay: 0.2s;
    }

    #mobile-menu.open .m-links li:nth-child(3) {
      transition-delay: 0.3s;
    }

    #mobile-menu.open .m-links li:nth-child(4) {
      transition-delay: 0.4s;
    }

    #mobile-menu.open .m-links li:nth-child(5) {
      transition-delay: 0.5s;
    }

    #mobile-menu.open .m-links li:nth-child(6) {
      transition-delay: 0.6s;
    }

    .m-links a {
      font-family: 'Syne', sans-serif;
      font-size: 38px;
      font-weight: 700;
      color: #fff;
      text-decoration: none;
      letter-spacing: -1.5px;
      transition: color 0.3s;
    }

    .m-links a:hover,
    .m-links a.active {
      color: var(--plum);
    }

    #preloader {
      position: fixed;
      inset: 0;
      background: #050009;
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: opacity 0.8s, visibility 0.8s;
    }

    #preloader.gone {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }

    .pre-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }

    .pre-logo {
      height: 44px;
      width: auto;
      opacity: 0;
      transform: translateY(10px);
      animation: preIn 0.8s forwards 0.2s;
      filter: invert(1) hue-rotate(180deg) brightness(1.1);
    }

    .pre-bar {
      width: 140px;
      height: 2px;
      background: rgba(255, 255, 255, 0.06);
      position: relative;
      overflow: hidden;
      border-radius: 2px;
    }

    .pre-prog {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 0;
      background: var(--plum);
      transition: width 0.4s;
    }

    @keyframes preIn {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ──────────────────────────────────────────────────────────────────────────
       RESPONSIVE MODS (MOBILE OVERRIDES)
       ────────────────────────────────────────────────────────────────────────── */
    @media(max-width: 860px) {
      #stage {
        overflow-y: auto;
        overflow-x: hidden;
        height: auto;
      }

      .panel {
        width: 100% !important;
        height: auto !important;
        min-height: 100vh;
        flex-direction: column !important;
      }

      #peek,
      #prog,
      #counter,
      #hint,
      #cur,
      #cur-ring {
        display: none !important;
      }

      #about-btn {
        padding: 10px 16px;
      }

      /* about overlay */
      #about-overlay {
        max-height: 85vh;
      }

      .ao-inner {
        padding: 40px 24px 100px;
      }

      .ft-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 24px;
      }

      #nav {
        padding: 0 20px;
      }

      .n-links {
        display: none;
      }

      #nav-toggle {
        display: flex;
      }

      .n-btn {
        display: none;
      }
    }
