      :root {
        --text: #0f172a;
        --muted: #64748b;
        --line: #e2e8f0;

        /* Blue theme */
        --blue1: #2563eb;
        --blue2: #0ea5e9;
        --blue3: #1d4ed8;

        --primary: var(--blue1);
        --radius: 18px;

        /* Section background */
        --soft-bg: #f7fbff;
      }

      * {
        box-sizing: border-box;
      }
      body {
        margin: 0;
        font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI,
          Roboto, Arial, sans-serif;
        color: var(--text);
        background: #fff;
      }

      /* =========================
         NAVBAR
         ========================= */
      .nav {
        position: sticky;
        top: 0;
        z-index: 50;
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(226, 232, 240, 0.7);
      }

      .nav-inner {
        max-width: 1120px;
        margin: 0 auto;
        padding: 14px 18px;
        display: flex;
        align-items: center;
        justify-content: space-between; /* ✅ brand left, button right */
        gap: 14px;
      }

      .nav-cta {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 10px 14px;
        border-radius: 999px;
        text-decoration: none;
        font-weight: 950;
        letter-spacing: -0.01em;
        color: #fff;
        background: linear-gradient(135deg, var(--blue1), var(--blue2));
        box-shadow: 0 14px 40px rgba(37, 99, 235, 0.25);
        border: 1px solid rgba(255, 255, 255, 0.12);
        transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
        white-space: nowrap;
      }

      .nav-cta:hover {
        transform: translateY(-1px);
        box-shadow: 0 18px 55px rgba(37, 99, 235, 0.32);
        filter: saturate(1.1);
      }

      .nav-cta:active {
        transform: translateY(0);
      }

      .nav-cta svg {
        width: 18px;
        height: 18px;
      }

      .brand {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        color: var(--text);
        font-weight: 900;
        letter-spacing: 0.2px;
        transform: translateY(0);
        transition: transform 0.2s ease, opacity 0.3s ease;
        opacity: 0;
        animation: navIn 0.7s ease 0.15s forwards;
      }

      @keyframes navIn {
        from {
          opacity: 0;
          transform: translateY(-10px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .brand:hover {
        transform: translateY(-1px);
      }

      .brand-logo {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        display: grid;
        place-items: center;
        overflow: hidden;
        border: 1px solid rgba(226, 232, 240, 0.9);
        background: #fff;
        box-shadow: 0 12px 30px rgba(2, 6, 23, 0.08);
      }

      .brand-logo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }

      .brand-name {
        display: flex;
        flex-direction: column;
        line-height: 1.1;
      }
      .brand-name strong {
        font-size: 0.95rem;
      }
      .brand-name span {
        font-size: 0.78rem;
        font-weight: 700;
        color: var(--muted);
      }

      /* =========================
         HERO SECTION
         ========================= */
      .hero {
        background: #fff;
        padding: 44px 18px 56px;
        overflow: hidden;
      }

      .hero-inner {
        max-width: 1120px;
        margin: 0 auto;
        min-height: 560px;
        display: grid;
        grid-template-columns: 1fr 1.05fr 0.85fr;
        gap: 34px;
        align-items: center;
      }

      .hero-left {
        animation: leftIn 0.8s ease both;
      }
      .hero-center {
        animation: fadeUp 0.9s ease 0.06s both;
      }
      .hero-right {
        opacity: 0;
        transform: translateY(10px);
        animation: rightIn 0.9s cubic-bezier(0.2, 0.9, 0.2, 1) 0.18s forwards;
      }

      @keyframes fadeUp {
        from {
          opacity: 0;
          transform: translateY(14px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      @keyframes leftIn {
        from {
          opacity: 0;
          transform: translateX(-14px);
        }
        to {
          opacity: 1;
          transform: translateX(0);
        }
      }
      @keyframes rightIn {
        from {
          opacity: 0;
          transform: translateY(14px);
          filter: blur(4px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
          filter: blur(0);
        }
      }

      .hero-title {
        margin: 0;
        font-size: clamp(22px, 2.4vw, 40px);
        letter-spacing: -0.03em;
      }

      .hero-subtitle {
        margin: 10px 0 18px;
        color: var(--muted);
        line-height: 1.6;
        max-width: 50ch;
      }

      .hero-points {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
        font-weight: 750;
      }

      .hero-points li {
        color: var(--text);
        display: flex;
        gap: 10px;
        align-items: flex-start;
      }

      .hero-points .bullet {
        width: 18px;
        color: var(--blue1);
        transform: translateY(1px);
        text-shadow: 0 6px 18px rgba(37, 99, 235, 0.25);
      }

      .typed-wrap {
        margin-top: 14px;
        display: flex;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
      }

      .typed-label {
        display: inline-flex;
        align-items: center;
        padding: 7px 12px;
        border-radius: 999px;
        background: #f1f5f9;
        border: 1px solid rgba(226, 232, 240, 0.95);
        font-size: 0.8rem;
        font-weight: 900;
        color: #334155;
      }

      .typed {
        font-weight: 900;
        color: var(--text);
        letter-spacing: -0.01em;
      }

      .cursor {
        display: inline-block;
        width: 10px;
        height: 18px;
        border-radius: 3px;
        background: rgba(15, 23, 42, 0.7);
        transform: translateY(3px);
        animation: blink 0.9s steps(1) infinite;
      }
      @keyframes blink {
        50% {
          opacity: 0;
        }
      }

      .mock-float {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        perspective: 1000px;
      }

      .mock-img {
        width: min(360px, 100%);
        height: auto;
        display: block;
        animation: floaty 3.8s ease-in-out infinite;
        transition: transform 0.25s ease, filter 0.25s ease;
        filter: drop-shadow(0 25px 65px rgba(2, 6, 23, 0.2));
      }

      @keyframes floaty {
        0%,
        100% {
          transform: translateY(0) rotate(-0.5deg);
        }
        50% {
          transform: translateY(-14px) rotate(0.5deg);
        }
      }

      .mock-float:hover .mock-img {
        transform: translateY(-18px) rotate(1deg) scale(1.01);
        filter: drop-shadow(0 35px 90px rgba(2, 6, 23, 0.25));
      }

      .hero-right {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-self: center;
        position: relative;
      }

      .hero-right::before {
        content: "";
        position: absolute;
        inset: -30px -20px -30px -20px;
        background: radial-gradient(
          circle at 20% 20%,
          rgba(37, 99, 235, 0.18),
          transparent 55%
        );
        pointer-events: none;
        opacity: 0.9;
        filter: blur(2px);
      }

      .btn {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 14px 16px;
        border-radius: 16px;
        border: 1px solid rgba(226, 232, 240, 0.92);
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(6px);
        text-decoration: none;
        color: var(--text);
        font-weight: 900;
        letter-spacing: -0.01em;
        transition: transform 0.12s ease, box-shadow 0.22s ease,
          background 0.22s ease, border-color 0.22s ease;
        box-shadow: 0 10px 26px rgba(2, 6, 23, 0.06);

        opacity: 0;
        transform: translateY(10px);
        animation: btnIn 0.65s ease forwards;
      }

      .btn:nth-child(1) {
        animation-delay: 0.28s;
      }
      .btn:nth-child(2) {
        animation-delay: 0.36s;
      }
      .btn:nth-child(3) {
        animation-delay: 0.44s;
      }
      .btn:nth-child(4) {
        animation-delay: 0.52s;
      }

      @keyframes btnIn {
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .btn:hover {
        transform: translateY(-2px) scale(1.01);
        box-shadow: 0 18px 44px rgba(2, 6, 23, 0.1);
        border-color: rgba(203, 213, 225, 0.95);
      }

      .btn:active {
        transform: translateY(0) scale(1);
      }

      .btn.primary {
        background: linear-gradient(135deg, var(--blue1), var(--blue2));
        color: #fff;
        border-color: transparent;
        box-shadow: 0 18px 55px rgba(37, 99, 235, 0.22);
        overflow: hidden;
      }

      .btn.primary:hover {
        background: linear-gradient(135deg, var(--blue3), var(--blue2));
      }

      .btn.primary::after {
        content: "";
        position: absolute;
        top: -40%;
        left: -60%;
        width: 60%;
        height: 180%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.18),
          transparent
        );
        transform: rotate(18deg);
        animation: sheen 3.4s ease-in-out infinite;
      }

      @keyframes sheen {
        0% {
          left: -70%;
          opacity: 0;
        }
        12% {
          opacity: 1;
        }
        30% {
          left: 120%;
          opacity: 0;
        }
        100% {
          left: 120%;
          opacity: 0;
        }
      }

      .tag {
        font-size: 0.8rem;
        font-weight: 900;
        padding: 7px 11px;
        border-radius: 999px;
        background: #f1f5f9;
        border: 1px solid rgba(226, 232, 240, 0.95);
        color: #475569;
        white-space: nowrap;
      }

      .btn.primary .tag {
        background: rgba(255, 255, 255, 0.12);
        border-color: rgba(255, 255, 255, 0.12);
        color: rgba(255, 255, 255, 0.92);
        position: relative;
        z-index: 1;
      }

      .side-contact {
        position: relative;
        margin-top: 10px;
        padding-top: 14px;
        border-top: 1px solid rgba(226, 232, 240, 0.85);
        display: flex;
        flex-direction: column;
        gap: 10px;

        opacity: 0;
        transform: translateY(10px);
        animation: btnIn 0.65s ease forwards;
        animation-delay: 0.6s;
      }

      .side-contact .title {
        font-weight: 950;
        letter-spacing: -0.01em;
      }

      .side-contact a {
        color: var(--muted);
        text-decoration: underline;
        text-underline-offset: 3px;
        font-size: 0.95rem;
      }

      /* =========================
         CORE FEATURES (NEW)
         ========================= */
      .features {
        padding: 70px 18px 76px;
        background: radial-gradient(
            circle at 20% 0%,
            rgba(14, 165, 233, 0.08),
            transparent 45%
          ),
          radial-gradient(
            circle at 85% 30%,
            rgba(37, 99, 235, 0.08),
            transparent 50%
          ),
          var(--soft-bg);
        border-top: 1px solid rgba(226, 232, 240, 0.8);
      }

      .features-inner {
        max-width: 1120px;
        margin: 0 auto;
      }

      .features-title {
        text-align: center;
        margin: 0 0 28px;
        font-size: clamp(26px, 3.2vw, 44px);
        letter-spacing: -0.03em;
        color: #0b5f8b; /* similar feel to your screenshot */
        font-weight: 950;
      }

      .features-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 18px;
        align-items: stretch;
      }

      .feature-card {
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(226, 232, 240, 0.95);
        border-radius: 22px;
        padding: 22px 18px 20px;
        box-shadow: 0 18px 50px rgba(2, 6, 23, 0.06);
        transition: transform 0.15s ease, box-shadow 0.2s ease,
          border-color 0.2s ease;
        text-align: center;
      }

      .feature-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 26px 70px rgba(2, 6, 23, 0.09);
        border-color: rgba(191, 219, 254, 0.9);
      }

      .feature-ico {
        width: 52px;
        height: 52px;
        margin: 0 auto 14px;
        display: grid;
        place-items: center;
        border-radius: 16px;
        background: rgba(37, 99, 235, 0.06);
        border: 1px solid rgba(37, 99, 235, 0.12);
      }

      .feature-ico svg {
        width: 28px;
        height: 28px;
        stroke: var(--blue1);
      }

      .feature-card h3 {
        margin: 0 0 8px;
        font-size: 1.08rem;
        font-weight: 950;
        letter-spacing: -0.01em;
        color: #0b5f8b;
      }

      .feature-card p {
        margin: 0;
        color: var(--muted);
        line-height: 1.5;
        font-size: 0.95rem;
      }

      /* make 2nd row cards align like screenshot */
      .features-grid.two-row {
        grid-auto-rows: 1fr;
      }
      .feature-card.span1 {
        grid-column: span 1;
      }

      /* Responsive */
      @media (max-width: 980px) {
        .nav-inner {
          justify-content: center;
        }
        .hero-inner {
          grid-template-columns: 1fr;
          gap: 20px;
          min-height: auto;
        }
        .hero-right {
          order: 3;
        }
        .hero-center {
          order: 2;
        }
        .hero-left {
          order: 1;
        }
        .mock-img {
          width: min(340px, 100%);
        }

        .features-grid {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }
      }

      @media (max-width: 560px) {
        .features-grid {
          grid-template-columns: 1fr;
        }
      }

      /* ===== Scroll reveal animation (DROP + LAND) ===== */
      .reveal {
        opacity: 0;
        transform: translateY(110px);
        filter: blur(6px);
        transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1),
          opacity 700ms ease, filter 900ms ease;
        will-change: transform, opacity, filter;
      }

      .reveal.in-view {
        opacity: 1;
        filter: blur(0);
        animation: land 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
      }

      /* stagger for cards */
      .reveal-stagger > * {
        opacity: 0;
        transform: translateY(70px);
        transition: transform 800ms cubic-bezier(0.16, 1, 0.3, 1),
          opacity 600ms ease;
        will-change: transform, opacity;
      }

      .reveal-stagger.in-view > * {
        opacity: 1;
        transform: translateY(0);
      }

      /* stagger delays */
      .reveal-stagger.in-view > *:nth-child(1) {
        transition-delay: 80ms;
      }
      .reveal-stagger.in-view > *:nth-child(2) {
        transition-delay: 160ms;
      }
      .reveal-stagger.in-view > *:nth-child(3) {
        transition-delay: 240ms;
      }
      .reveal-stagger.in-view > *:nth-child(4) {
        transition-delay: 320ms;
      }
      .reveal-stagger.in-view > *:nth-child(5) {
        transition-delay: 400ms;
      }
      .reveal-stagger.in-view > *:nth-child(6) {
        transition-delay: 480ms;
      }

      /* Respect reduced motion */
      @media (prefers-reduced-motion: reduce) {
        .reveal,
        .reveal-stagger > * {
          transition: none !important;
          transform: none !important;
          filter: none !important;
          opacity: 1 !important;
        }
      }

      @keyframes land {
        0% {
          transform: translateY(110px);
        }
        70% {
          transform: translateY(-6px);
        }
        100% {
          transform: translateY(0);
        }
      }

      /* =========================
   GLAM BLACK FOOTER
   ========================= */
      .footer {
        position: relative;
        padding: 70px 18px 26px;
        color: rgba(255, 255, 255, 0.88);
        background: radial-gradient(
            circle at 15% 20%,
            rgba(14, 165, 233, 0.18),
            transparent 42%
          ),
          radial-gradient(
            circle at 85% 30%,
            rgba(37, 99, 235, 0.18),
            transparent 45%
          ),
          radial-gradient(
            circle at 60% 100%,
            rgba(255, 255, 255, 0.06),
            transparent 55%
          ),
          linear-gradient(180deg, #070a12 0%, #03040a 100%);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        overflow: hidden;
      }

      .footer::before {
        content: "";
        position: absolute;
        inset: -2px;
        background: radial-gradient(
          circle at 50% 0%,
          rgba(255, 255, 255, 0.08),
          transparent 40%
        );
        pointer-events: none;
      }

      .footer-inner {
        max-width: 1120px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
      }

      .footer-grid {
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
        gap: 22px;
        align-items: start;
      }

      .footer-col {
        padding: 18px 18px;
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.07);
        box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
      }

      .footer-brand {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 12px;
      }

      .footer-logo {
        width: 44px;
        height: 44px;
        border-radius: 14px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: rgba(255, 255, 255, 0.06);
        box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
      }

      .footer-logo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }

      .footer-brand-text strong {
        display: block;
        letter-spacing: -0.02em;
        font-weight: 950;
        font-size: 1.05rem;
      }

      .footer-brand-text span {
        display: block;
        color: rgba(255, 255, 255, 0.62);
        font-weight: 800;
        font-size: 0.85rem;
        margin-top: 2px;
      }

      .footer-description {
        margin: 0 0 16px;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.6;
        max-width: 46ch;
      }

      .footer-title {
        margin: 0 0 12px;
        font-weight: 950;
        letter-spacing: -0.01em;
        color: rgba(255, 255, 255, 0.92);
        position: relative;
        padding-bottom: 10px;
      }

      .footer-title::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 58px;
        height: 2px;
        border-radius: 999px;
        background: linear-gradient(
          90deg,
          rgba(14, 165, 233, 0.95),
          rgba(37, 99, 235, 0.95)
        );
        box-shadow: 0 10px 30px rgba(37, 99, 235, 0.18);
      }

      .footer-list,
      .footer-contact-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        gap: 10px;
      }

      .footer-link {
        color: rgba(255, 255, 255, 0.72);
        text-decoration: none;
        font-weight: 800;
        transition: transform 0.15s ease, color 0.2s ease;
      }

      .footer-link:hover {
        color: rgba(255, 255, 255, 0.95);
        transform: translateX(2px);
      }

      .footer-socials {
        display: flex;
        gap: 10px;
      }

      .social-btn {
        width: 42px;
        height: 42px;
        border-radius: 14px;
        display: grid;
        place-items: center;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.88);
        transition: transform 0.15s ease, border-color 0.2s ease,
          background 0.2s ease;
      }

      .social-btn svg {
        width: 18px;
        height: 18px;
      }

      .social-btn:hover {
        transform: translateY(-2px);
        background: rgba(255, 255, 255, 0.07);
        border-color: rgba(14, 165, 233, 0.35);
      }

      .footer-contact-item {
        display: flex;
        gap: 10px;
        align-items: flex-start;
        color: rgba(255, 255, 255, 0.7);
      }

      .footer-ico {
        width: 34px;
        height: 34px;
        border-radius: 12px;
        display: grid;
        place-items: center;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.9);
        flex: 0 0 auto;
      }

      .footer-ico svg {
        width: 18px;
        height: 18px;
      }

      .footer-contact-text {
        line-height: 1.5;
      }

      .footer-bottom {
        margin-top: 18px;
        padding-top: 18px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 14px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        color: rgba(255, 255, 255, 0.6);
      }

      .footer-copy {
        margin: 0;
        font-weight: 800;
      }

      .footer-bottom-links {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
      }

      /* Responsive */
      @media (max-width: 980px) {
        .footer-grid {
          grid-template-columns: 1fr 1fr;
        }
        .footer-bottom {
          flex-direction: column;
          align-items: flex-start;
        }
      }

      @media (max-width: 560px) {
        .footer-grid {
          grid-template-columns: 1fr;
        }
      }

      /* Footer entrance animation */
      .footer {
        opacity: 0;
        transform: translateY(40px);
        filter: blur(6px);
        transition: opacity 900ms ease,
          transform 900ms cubic-bezier(0.16, 1, 0.3, 1), filter 900ms ease;
      }

      .footer.footer-in {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
      }

      /* subtle shimmer line */
      .footer::after {
        content: "";
        position: absolute;
        left: -40%;
        top: 0;
        width: 40%;
        height: 2px;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.18),
          transparent
        );
        animation: footerSheen 5.5s ease-in-out infinite;
        opacity: 0.9;
      }

      @keyframes footerSheen {
        0% {
          transform: translateX(0);
          opacity: 0;
        }
        15% {
          opacity: 1;
        }
        35% {
          transform: translateX(220%);
          opacity: 0;
        }
        100% {
          transform: translateX(220%);
          opacity: 0;
        }
      }

      /* cards pop in (nice glam stagger) */
      .footer-col {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 700ms ease,
          transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
      }

      .footer.footer-in .footer-col {
        opacity: 1;
        transform: translateY(0);
      }

      .footer.footer-in .footer-col:nth-child(1) {
        transition-delay: 120ms;
      }
      .footer.footer-in .footer-col:nth-child(2) {
        transition-delay: 220ms;
      }
      .footer.footer-in .footer-col:nth-child(3) {
        transition-delay: 320ms;
      }
      .footer.footer-in .footer-col:nth-child(4) {
        transition-delay: 420ms;
      }

      /* Integrations grid */
.footer-integrations{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 6px;
}

.integration-card{
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  transition: transform .15s ease, border-color .2s ease, background .2s ease;
  overflow: hidden;
}

.integration-card:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.07);
  border-color: rgba(14,165,233,0.35);
}

.integration-card img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  filter: saturate(1.05);
}

.footer-integrations-note{
  margin: 12px 0 0;
  color: rgba(255,255,255,0.65);
  font-weight: 700;
  line-height: 1.5;
  font-size: 0.92rem;
}


      /* =========================
   CUSTOM SCROLLBAR (WSoftline)
   ========================= */

      /* Firefox */
      html {
        scrollbar-width: thin;
        scrollbar-color: rgba(37, 99, 235, 0.65) rgba(226, 232, 240, 0.6);
      }

      /* WebKit (Chrome, Edge, Safari) */
      ::-webkit-scrollbar {
        width: 12px;
        height: 12px;
      }

      ::-webkit-scrollbar-track {
        background: linear-gradient(
          180deg,
          rgba(226, 232, 240, 0.7),
          rgba(241, 245, 249, 0.9)
        );
        border-left: 1px solid rgba(226, 232, 240, 0.9);
      }

      ::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, var(--blue1), var(--blue2));
        border-radius: 999px;
        border: 3px solid rgba(241, 245, 249, 0.95);
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35),
          0 6px 20px rgba(37, 99, 235, 0.35);
      }

      ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(180deg, var(--blue3), var(--blue2));
      }

      ::-webkit-scrollbar-thumb:active {
        background: linear-gradient(180deg, #1e40af, #0284c7);
      }

      ::-webkit-scrollbar-corner {
        background: transparent;
      }

      /* =========================
   MOBILE POLISH (Scanify)
   ========================= */
@media (max-width: 980px) {
  .nav-inner {
    justify-content: space-between; /* don't center everything */
  }

  .hero {
    padding: 22px 16px 34px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: auto;
  }

  /* Make the screenshot feel intentional on mobile */
  .hero-center {
    order: 2;
    display: flex;
    justify-content: center;
  }

  .mock-img {
    width: min(320px, 92vw);
    animation: none;              /* float animation looks “cheap” on phones */
    transform: none;
  }

  /* Text scale + spacing */
  .hero-title {
    font-size: clamp(26px, 8vw, 40px);
  }

  .hero-subtitle {
    max-width: 100%;
    margin: 10px 0 14px;
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .hero-points {
    gap: 9px;
    font-weight: 800;
  }

  .hero-points li {
    font-size: 0.95rem;
  }

  /* Right column becomes a clean stacked CTA block */
  .hero-right {
    order: 3;
    gap: 10px;
  }

  /* Remove the big radial glow behind CTAs on small screens */
  .hero-right::before {
    display: none;
  }

  .btn {
    padding: 14px 14px;
    border-radius: 16px;
  }

  .tag {
    font-size: 0.75rem;
    padding: 6px 10px;
  }
}

@media (max-width: 560px) {
  .nav-inner {
    padding: 12px 14px;
  }

  .brand-logo {
    width: 34px;
    height: 34px;
    border-radius: 12px;
  }

  .nav-cta {
    padding: 9px 12px;
    font-size: 0.9rem;
  }
}

@media (max-width: 980px) {
  .btn.primary {
    box-shadow: 0 14px 45px rgba(37,99,235,0.25);
  }
}

/* Put the hero image at the TOP on phone */
@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  /* ✅ move image first */
  .hero-center { order: 1; }

  /* then text */
  .hero-left { order: 2; }

  /* then buttons */
  .hero-right { order: 3; }

  /* optional: keep image nicely centered */
  .hero-center {
    display: flex;
    justify-content: center;
  }

  .mock-img {
    width: min(320px, 92vw);
    height: auto;
  }
}
