 
      /* ─── RESET & BASE ─── */
      *,
      *::before,
      *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
      :root {
        --navy: #0a1628;
        --blue: #1a4fd6;
        --blue-lt: #2d6ef0;
        --green: #22c97a;
        --green-dk: #17a361;
        --white: #ffffff;
        --off: #f4f6fb;
        --muted: #8896b3;
        --border: #e2e8f4;
        --text: #1c2b4a;
        --section-py: clamp(3rem, 8vw, 6.25rem);
        --section-px: clamp(1rem, 5vw, 5vw);
        --radius-card: 14px;
        --radius-img: clamp(10px, 1.5vw, 16px);
        --shadow-card: 0 16px 40px rgba(10, 22, 40, 0.1);
        --transition-base: 0.25s ease;
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        font-family: "DM Sans", sans-serif;
        color: var(--text);
        background: var(--white);
        -webkit-font-smoothing: antialiased;
        overflow-x: hidden;
      }
      img {
        max-width: 100%;
        display: block;
      }

      /* ─── NAVBAR ─── */
      .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 200;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 var(--section-px);
        height: 68px;
        gap: 1rem;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--border);
      }
      .nav-logo img {
        height: 52px;
        width: auto;
        object-fit: contain;
      }
      .nav-links {
        display: none;
        align-items: center;
        gap: clamp(1rem, 2.5vw, 2.25rem);
        list-style: none;
      }
      .nav-links a {
        text-decoration: none;
        font-size: 0.875rem;
        font-weight: 500;
        color: var(--text);
        letter-spacing: 0.01em;
        transition: color 0.2s;
        white-space: nowrap;
      }
      .nav-links a:hover {
        color: var(--blue);
      }
      .nav-ctas {
        display: none;
        gap: 0.5rem;
        align-items: center;
      }
      .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        min-width: 44px;
        min-height: 44px;
        margin-left: auto;
      }
      .nav-toggle span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--navy);
        border-radius: 2px;
        transition: all 0.3s ease;
        transform-origin: center;
      }
      .nav-toggle.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
      }
      .nav-toggle.open span:nth-child(2) {
        opacity: 0;
      }
      .nav-toggle.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
      }
      .nav-drawer {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        z-index: 199;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--border);
        padding: 1.25rem var(--section-px) 2rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        transform: translateY(-120%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 8px 32px rgba(10, 22, 40, 0.12);
      }
      .nav-drawer.open {
        transform: translateY(0);
      }
      .nav-drawer ul {
        list-style: none;
        display: flex;
        flex-direction: column;
      }
      .nav-drawer ul li a {
        display: block;
        padding: 0.875rem 0;
        font-size: 1rem;
        font-weight: 500;
        color: var(--text);
        text-decoration: none;
        border-bottom: 1px solid var(--border);
        transition: color 0.2s;
      }
      .nav-drawer ul li:last-child a {
        border-bottom: none;
      }
      .nav-drawer ul li a:hover {
        color: var(--blue);
      }
      .nav-drawer-ctas {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        padding-top: 1rem;
      }

      /* ─── BUTTONS ─── */
      .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        padding: 0.625rem 1.375rem;
        font-family: "DM Sans", sans-serif;
        font-size: 0.875rem;
        font-weight: 500;
        border-radius: 7px;
        cursor: pointer;
        text-decoration: none;
        transition: all 0.2s ease;
        border: 1.5px solid transparent;
        white-space: nowrap;
        min-height: 44px;
      }
      .btn-primary {
        background: var(--blue);
        color: #fff;
        border-color: var(--blue);
      }
      .btn-primary:hover {
        background: var(--blue-lt);
        border-color: var(--blue-lt);
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(26, 79, 214, 0.25);
      }
      .btn-green {
        background: var(--green);
        color: #fff;
        border-color: var(--green);
      }
      .btn-green:hover {
        background: var(--green-dk);
        border-color: var(--green-dk);
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(34, 201, 122, 0.3);
      }
      .btn-outline {
        background: transparent;
        color: var(--navy);
        border-color: var(--navy);
      }
      .btn-outline:hover {
        background: var(--navy);
        color: #fff;
        transform: translateY(-1px);
      }
      .btn-outline-blue {
        background: transparent;
        color: var(--blue);
        border-color: var(--blue);
      }
      .btn-outline-blue:hover {
        background: var(--blue);
        color: #fff;
        transform: translateY(-1px);
      }
      .btn-outline-white {
        background: transparent;
        color: #fff;
        border: 1.5px solid rgba(255, 255, 255, 0.35);
      }
      .btn-outline-white:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-1px);
      }
      .btn-lg {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
        border-radius: 8px;
      }
      .btn-full {
        width: 100%;
      }

      /* ─── HERO ─── */
      .hero {
        padding-top: calc(68px + clamp(2rem, 6vw, 4rem));
        padding-bottom: clamp(2.5rem, 6vw, 5rem);
        padding-left: var(--section-px);
        padding-right: var(--section-px);
        background: var(--white);
        position: relative;
        overflow: hidden;
      }
      .hero::before {
        content: "";
        position: absolute;
        right: -10%;
        top: -10%;
        width: 70%;
        height: 130%;
        background: radial-gradient(
          ellipse at 60% 40%,
          rgba(26, 79, 214, 0.06) 0%,
          rgba(34, 201, 122, 0.04) 50%,
          transparent 70%
        );
        pointer-events: none;
      }
      .hero-inner {
        display: grid;
        grid-template-columns: 1fr;
        gap: clamp(2rem, 5vw, 3.75rem);
        align-items: center;
      }
      .hero-tag {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(34, 201, 122, 0.1);
        border: 1px solid rgba(34, 201, 122, 0.3);
        color: var(--green-dk);
        padding: 5px 14px;
        border-radius: 100px;
        font-size: 0.75rem;
        font-weight: 500;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        margin-bottom: 1.25rem;
      }
      .hero-tag span {
        width: 6px;
        height: 6px;
        background: var(--green);
        border-radius: 50%;
        display: inline-block;
        animation: pulse 2s infinite;
      }
      .hero h1 {
        font-family: "Sora", sans-serif;
        font-size: clamp(1.875rem, 5vw, 3.5rem);
        font-weight: 700;
        line-height: 1.15;
        color: var(--navy);
        margin-bottom: 1.25rem;
        letter-spacing: -0.03em;
      }
      .hero h1 em {
        font-style: normal;
        color: var(--blue);
      }
      .hero-desc {
        font-size: clamp(0.9375rem, 2vw, 1.05rem);
        line-height: 1.75;
        color: #4a5d82;
        margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
        font-weight: 300;
      }
      .hero-ctas {
        display: flex;
        gap: 0.75rem;
        flex-wrap: wrap;
      }
      .hero-image {
        width: 100%;
        height: auto;
        aspect-ratio: 16/11;
        object-fit: cover;
        border-radius: clamp(12px, 2vw, 20px);
        box-shadow: 0 24px 64px rgba(10, 22, 40, 0.18);
      }

      /* ─── STATS BAR ─── */
      .stats-bar {
        background: var(--navy);
        padding: 0 var(--section-px);
      }
      .stats-inner {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      }
      .stat-item {
        display: flex;
        align-items: center;
        gap: 0.875rem;
        padding: clamp(1.25rem, 3vw, 2.5rem) clamp(0.75rem, 2vw, 1.5rem);
        border-right: 1px solid rgba(255, 255, 255, 0.08);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      }
      .stat-item:nth-child(2n) {
        border-right: none;
      }
      .stat-icon {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
      }
      .stat-val {
        font-family: "Sora", sans-serif;
        font-size: clamp(1rem, 2.5vw, 1.4rem);
        font-weight: 800;
        color: #fff;
        line-height: 1;
      }
      .stat-val span {
        color: var(--green);
      }
      .stat-desc {
        font-size: 0.75rem;
        color: #8896b3;
        margin-top: 3px;
      }

      /* ─── SECTION BASE ─── */
      section {
        padding: var(--section-py) var(--section-px);
      }
      .section-tag {
        display: inline-block;
        font-size: 0.72rem;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--blue);
        margin-bottom: 0.875rem;
      }
      .section-title {
        font-family: "Sora", sans-serif;
        font-size: clamp(1.375rem, 3vw, 2rem);
        font-weight: 700;
        color: var(--navy);
        line-height: 1.2;
        letter-spacing: -0.02em;
        margin-bottom: 0.875rem;
      }
      .section-sub {
        font-size: clamp(0.9rem, 1.8vw, 1rem);
        color: #4a5d82;
        line-height: 1.7;
        font-weight: 300;
      }
      .section-head {
        margin-bottom: clamp(2rem, 5vw, 3.75rem);
      }
      .section-head.centered {
        text-align: center;
      }
      .section-cta-inline {
        display: flex;
        gap: 0.75rem;
        flex-wrap: wrap;
        margin-top: clamp(1.75rem, 4vw, 2.75rem);
      }

      /* ─── PLATFORM ─── */
      .platform {
        background: var(--off);
      }
      .platform-layout {
        display: grid;
        grid-template-columns: 1fr;
        gap: clamp(2rem, 5vw, 3.75rem);
        align-items: start;
        margin-bottom: clamp(2rem, 4vw, 3rem);
      }
      .platform-features {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
      }
      .platform-feature-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
      }
      .pf-icon {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
        background: rgba(26, 79, 214, 0.08);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.05rem;
      }
      .pf-title {
        font-family: "Sora", sans-serif;
        font-size: 0.9rem;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 3px;
      }
      .pf-desc {
        font-size: 0.82rem;
        color: #4a5d82;
        line-height: 1.6;
      }
      .platform-dashboard {
        background: var(--navy);
        border-radius: clamp(12px, 2vw, 20px);
        padding: clamp(1.25rem, 3vw, 2rem);
        position: relative;
        overflow: hidden;
      }
      .platform-dashboard::before {
        content: "";
        position: absolute;
        bottom: -20%;
        right: -15%;
        width: 50%;
        height: 50%;
        background: radial-gradient(
          circle,
          rgba(34, 201, 122, 0.2) 0%,
          transparent 70%
        );
        pointer-events: none;
      }
      .dash-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.25rem;
      }
      .dash-title {
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: #8896b3;
        font-weight: 500;
      }
      .dash-badge {
        font-size: 0.7rem;
        color: var(--green);
        font-weight: 600;
      }
      .dash-kpis {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.625rem;
        margin-bottom: 1.25rem;
      }
      .dash-kpi {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 10px;
        padding: 0.75rem;
        text-align: center;
      }
      .dash-kpi-val {
        font-family: "Sora", sans-serif;
        font-size: 1rem;
        font-weight: 700;
        color: #fff;
      }
      .dash-kpi-val.green {
        color: var(--green);
      }
      .dash-kpi-key {
        font-size: 0.65rem;
        color: #8896b3;
        margin-top: 2px;
      }
      .dash-bars {
        display: flex;
        flex-direction: column;
        gap: 0.625rem;
      }
      .dash-bar-row {
        display: flex;
        align-items: center;
        gap: 0.625rem;
      }
      .dash-bar-row > span {
        font-size: 0.73rem;
        color: #8896b3;
        min-width: 68px;
      }
      .dash-pct {
        min-width: 30px;
        text-align: right;
        color: #fff;
        font-size: 0.73rem;
        font-weight: 600;
      }
      .dash-track {
        flex: 1;
        height: 5px;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 10px;
        overflow: hidden;
      }
      .dash-fill {
        height: 100%;
        border-radius: 10px;
        background: linear-gradient(90deg, var(--blue), var(--green));
        animation: fillBar 1.5s ease forwards;
      }
      .dash-footer {
        font-size: 0.7rem;
        color: #8896b3;
        margin-top: 1rem;
        text-align: center;
      }

      /* ═══════════════════════════════════════════════════
         PRODUCTS SECTION — Enhanced with Modal
      ═══════════════════════════════════════════════════ */
      .products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
        gap: 1.25rem;
      }

      /* ── Product Card ── */
      .product-card {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--radius-card);
        padding: clamp(1.25rem, 3vw, 2rem);
        transition:
          transform var(--transition-base),
          box-shadow var(--transition-base);
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
      }
      .product-card::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--blue), var(--green));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
      }
      .product-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-card);
      }
      .product-card:hover::after {
        transform: scaleX(1);
      }

      .product-card-thumb {
        width: 100%;
        aspect-ratio: 16 / 9;
        object-fit: cover;
        border-radius: var(--radius-img);
        margin-bottom: 1.25rem;
        background: var(--off);
      }

      .product-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        margin-bottom: 1.125rem;
      }
      .icon-blue {
        background: rgba(26, 79, 214, 0.1);
      }
      .icon-green {
        background: rgba(34, 201, 122, 0.1);
      }
      .icon-navy {
        background: rgba(10, 22, 40, 0.07);
      }
      .product-card h3 {
        font-family: "Sora", sans-serif;
        font-size: 1rem;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 5px;
      }
      .product-badge {
        font-size: 0.67rem;
        font-weight: 600;
        letter-spacing: 0.05em;
        color: var(--muted);
        text-transform: uppercase;
        margin-bottom: 0.75rem;
      }
      .product-card p {
        font-size: 0.875rem;
        color: #4a5d82;
        line-height: 1.65;
        margin-bottom: 1.25rem;
        flex: 1;
      }

      /* The "Learn More" button — styled as the existing product-link but now a real <button> */
      .product-learn-btn {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-family: "DM Sans", sans-serif;
        font-size: 0.875rem;
        font-weight: 500;
        color: var(--blue);
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        transition:
          gap 0.2s ease,
          color 0.2s ease;
        min-height: 44px;
        margin-top: auto;
      }
      .product-learn-btn:hover {
        gap: 10px;
        color: var(--blue-lt);
      }
      .product-learn-btn:focus-visible {
        outline: 2px solid var(--blue);
        outline-offset: 3px;
        border-radius: 4px;
      }
      .product-learn-btn .arrow {
        transition: transform 0.2s ease;
        display: inline-block;
      }
      .product-learn-btn:hover .arrow {
        transform: translateX(3px);
      }

      /* ═══════════════════════════════════════
         PRODUCT MODAL OVERLAY
      ═══════════════════════════════════════ */
      .modal-overlay {
        position: fixed;
        inset: 0;
        z-index: 400;
        background: rgba(10, 22, 40, 0.72);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        display: flex;
        align-items: flex-end; /* mobile: sheet from bottom */
        justify-content: center;
        padding: 0;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
      }
      .modal-overlay.is-open {
        opacity: 1;
        pointer-events: all;
      }

      /* ── Modal panel ── */
      .modal-panel {
        background: var(--white);
        width: 100%;
        max-height: 92dvh; /* leave a sliver of overlay visible */
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        border-radius: 20px 20px 0 0; /* bottom sheet on mobile */
        padding: clamp(1.25rem, 4vw, 2.5rem);
        position: relative;
        transform: translateY(40px);
        transition: transform 0.38s cubic-bezier(0.34, 1.28, 0.64, 1);
        /* Drag handle hint */
        padding-top: calc(clamp(1.25rem, 4vw, 2.5rem) + 16px);
      }
      .modal-panel::before {
        content: "";
        position: absolute;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 4px;
        background: var(--border);
        border-radius: 4px;
      }
      .modal-overlay.is-open .modal-panel {
        transform: translateY(0);
      }

      /* ── Modal inner layout ── */
      .modal-inner {
        display: grid;
        grid-template-columns: 1fr;
        gap: clamp(1.25rem, 4vw, 2.5rem);
        max-width: 900px;
        margin: 0 auto;
      }

      /* Modal image */
      .modal-img-wrap {
        width: 100%;
        border-radius: var(--radius-img);
        overflow: hidden;
        background: var(--off);
        position: relative;
      }
      .modal-img-wrap img {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
      }
      .modal-img-wrap:hover img {
        transform: scale(1.02);
      }

      /* Modal image badge */
      .modal-img-badge {
        position: absolute;
        top: 0.875rem;
        left: 0.875rem;
        background: rgba(10, 22, 40, 0.78);
        backdrop-filter: blur(6px);
        color: var(--green);
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        padding: 5px 12px;
        border-radius: 100px;
        border: 1px solid rgba(34, 201, 122, 0.3);
      }

      /* Modal content column */
      .modal-content {
      }

      .modal-tag {
        font-size: 0.7rem;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--muted);
        margin-bottom: 0.5rem;
      }
      .modal-title {
        font-family: "Sora", sans-serif;
        font-size: clamp(1.25rem, 3vw, 1.75rem);
        font-weight: 700;
        color: var(--navy);
        line-height: 1.2;
        letter-spacing: -0.02em;
        margin-bottom: 0.875rem;
      }
      .modal-desc {
        font-size: clamp(0.875rem, 1.8vw, 0.95rem);
        color: #4a5d82;
        line-height: 1.75;
        font-weight: 300;
        margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
      }

      /* Key specs strip */
      .modal-specs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.625rem;
        margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
      }
      .modal-spec-item {
        background: var(--off);
        border: 1px solid var(--border);
        border-radius: 10px;
        padding: 0.75rem 0.875rem;
      }
      .modal-spec-val {
        font-family: "Sora", sans-serif;
        font-size: clamp(0.9rem, 2vw, 1.05rem);
        font-weight: 700;
        color: var(--navy);
        line-height: 1.2;
      }
      .modal-spec-key {
        font-size: 0.7rem;
        color: var(--muted);
        margin-top: 2px;
        font-weight: 400;
      }

      /* Feature list */
      .modal-features-title {
        font-family: "Sora", sans-serif;
        font-size: 0.8rem;
        font-weight: 700;
        color: var(--navy);
        text-transform: uppercase;
        letter-spacing: 0.06em;
        margin-bottom: 0.75rem;
      }
      .modal-features {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: clamp(1.5rem, 3vw, 2rem);
      }
      .modal-features li {
        display: flex;
        align-items: flex-start;
        gap: 0.625rem;
        font-size: 0.875rem;
        color: #4a5d82;
        line-height: 1.55;
      }
      .modal-features li::before {
        content: "";
        width: 18px;
        height: 18px;
        flex-shrink: 0;
        background: rgba(34, 201, 122, 0.12);
        border-radius: 5px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%2322c97a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center;
        background-size: 12px;
        margin-top: 1px;
      }

      /* Modal CTA row */
      .modal-cta {
        display: flex;
        gap: 0.625rem;
        flex-wrap: wrap;
      }

      /* ── Close button ── */
      .modal-close {
        position: sticky;
        top: 0;
        float: right;
        width: 36px;
        height: 36px;
        background: var(--off);
        border: 1px solid var(--border);
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        color: var(--navy);
        transition:
          background 0.2s,
          transform 0.2s;
        z-index: 2;
        margin-bottom: 0.75rem;
        /* visually sit top-right */
        margin-left: auto;
      }
      .modal-close:hover {
        background: var(--border);
        transform: rotate(90deg);
      }
      .modal-close:focus-visible {
        outline: 2px solid var(--blue);
        outline-offset: 2px;
      }

      /* ── Tablet & up: centered dialog ── */
      @media (min-width: 600px) {
        .modal-overlay {
          align-items: center;
          padding: clamp(1rem, 3vw, 2rem);
        }
        .modal-panel {
          border-radius: clamp(14px, 2vw, 20px);
          max-width: min(96vw, 960px);
          max-height: 90dvh;
          width: 100%;
          padding-top: clamp(1.5rem, 3vw, 2.5rem);
        }
        /* Hide drag handle on non-mobile */
        .modal-panel::before {
          display: none;
        }
      }

      @media (min-width: 720px) {
        .modal-inner {
          grid-template-columns: 1fr 1fr;
          align-items: start;
        }
        .modal-specs {
          grid-template-columns: repeat(2, 1fr);
        }
      }

      @media (min-width: 900px) {
        .modal-specs {
          grid-template-columns: repeat(4, 1fr);
        }
      }

      /* ─── INDUSTRIES ─── */
      .industries-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
      }
      .ind-card {
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 1.25rem;
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        transition:
          border-color 0.2s,
          box-shadow 0.2s;
        background: var(--white);
      }
      .ind-card:hover {
        border-color: var(--blue);
        box-shadow: 0 8px 24px rgba(26, 79, 214, 0.1);
      }
      .ind-icon {
        font-size: 1.5rem;
        flex-shrink: 0;
      }
      .ind-card h4 {
        font-family: "Sora", sans-serif;
        font-size: 0.9rem;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 4px;
      }
      .ind-card p {
        font-size: 0.8rem;
        color: var(--muted);
        line-height: 1.55;
      }

      /* ─── MID CTA ─── */
      .mid-cta {
        background: var(--navy);
        text-align: center;
        padding: clamp(3rem, 8vw, 5.625rem) var(--section-px);
        position: relative;
        overflow: hidden;
      }
      .mid-cta::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: min(700px, 90%);
        height: 400px;
        background: radial-gradient(
          ellipse,
          rgba(34, 201, 122, 0.15) 0%,
          transparent 60%
        );
        pointer-events: none;
      }
      .mid-cta h2 {
        font-family: "Sora", sans-serif;
        font-size: clamp(1.375rem, 3vw, 2rem);
        font-weight: 700;
        color: #fff;
        margin-bottom: 1rem;
        letter-spacing: -0.02em;
        position: relative;
      }
      .mid-cta p {
        color: #8896b3;
        font-size: clamp(0.875rem, 1.8vw, 1rem);
        margin-bottom: 2rem;
        font-weight: 300;
        position: relative;
      }
      .mid-cta-btns {
        display: flex;
        gap: 0.75rem;
        justify-content: center;
        flex-wrap: wrap;
        position: relative;
      }

      /* ─── CLIENTS ─── */
      .clients {
        background: var(--white);
        padding: clamp(2.5rem, 5vw, 3.75rem) var(--section-px);
      }
      .clients-label {
        text-align: center;
        font-size: 0.75rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--muted);
        font-weight: 500;
        margin-bottom: 2rem;
      }
      .clients-row {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: clamp(1.5rem, 4vw, 3.125rem);
        flex-wrap: wrap;
      }
      .client-logo {
        font-family: "Sora", sans-serif;
        font-size: 0.9rem;
        font-weight: 700;
        color: #c2cedf;
        letter-spacing: 0.02em;
        transition: color 0.2s;
      }
      .client-logo:hover {
        color: var(--navy);
      }

      /* ─── WHY US ─── */
      .why {
        background: var(--off);
      }
      .why-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: clamp(2rem, 5vw, 3.75rem);
        align-items: start;
      }
      .why-list {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
      }
      .why-item {
        display: flex;
        gap: 1.125rem;
      }
      .why-dot {
        width: 38px;
        height: 38px;
        flex-shrink: 0;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.95rem;
      }
      .why-dot.blue {
        background: rgba(26, 79, 214, 0.1);
      }
      .why-dot.green {
        background: rgba(34, 201, 122, 0.1);
      }
      .why-item h4 {
        font-family: "Sora", sans-serif;
        font-size: 0.9rem;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 4px;
      }
      .why-item p {
        font-size: 0.84rem;
        color: #4a5d82;
        line-height: 1.65;
      }
      .why-visual {
        background: var(--navy);
        border-radius: clamp(12px, 2vw, 20px);
        padding: clamp(1.5rem, 3vw, 2.5rem);
        position: relative;
        overflow: hidden;
      }
      .why-visual::before {
        content: "";
        position: absolute;
        top: -30%;
        right: -20%;
        width: 60%;
        height: 60%;
        background: radial-gradient(
          circle,
          rgba(26, 79, 214, 0.3) 0%,
          transparent 70%
        );
        pointer-events: none;
      }
      .sys-title {
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: #8896b3;
        margin-bottom: 1.25rem;
        font-weight: 500;
      }
      .sys-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.07);
        border-radius: 10px;
        padding: 0.875rem 1.125rem;
        margin-bottom: 0.625rem;
      }
      .sys-row-left {
        display: flex;
        align-items: center;
        gap: 0.75rem;
      }
      .sys-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        flex-shrink: 0;
      }
      .sys-dot.on {
        background: var(--green);
        box-shadow: 0 0 7px var(--green);
      }
      .sys-dot.idle {
        background: var(--blue);
      }
      .sys-name {
        font-size: 0.8rem;
        color: #d0daf0;
        font-weight: 400;
      }
      .sys-val {
        font-family: "Sora", sans-serif;
        font-size: 0.85rem;
        color: #fff;
        font-weight: 600;
        flex-shrink: 0;
      }

      /* ─── CONTACT FORM ─── */
      .form-cta {
        background: var(--white);
        display: grid;
        grid-template-columns: 1fr;
        gap: clamp(2rem, 5vw, 3.75rem);
      }
      .trust-items {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
      }
      .trust-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-size: 0.875rem;
        color: #4a5d82;
      }
      .trust-check {
        width: 22px;
        height: 22px;
        flex-shrink: 0;
        background: rgba(34, 201, 122, 0.1);
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.72rem;
        color: var(--green);
      }
      .contact-form {
        background: var(--off);
        border: 1px solid var(--border);
        border-radius: clamp(12px, 2vw, 20px);
        padding: clamp(1.5rem, 4vw, 2.5rem);
      }
      .form-title {
        font-family: "Sora", sans-serif;
        font-size: 1.15rem;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 5px;
      }
      .form-sub {
        font-size: 0.84rem;
        color: var(--muted);
        margin-bottom: 1.5rem;
      }
      .form-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
      }
      .form-group {
        display: flex;
        flex-direction: column;
        gap: 5px;
        margin-bottom: 0.875rem;
      }
      .form-group label {
        font-size: 0.775rem;
        font-weight: 500;
        color: var(--text);
      }
      .form-group input,
      .form-group select,
      .form-group textarea {
        padding: 0.6875rem 0.875rem;
        border: 1.5px solid var(--border);
        border-radius: 8px;
        font-family: "DM Sans", sans-serif;
        font-size: 0.875rem;
        color: var(--text);
        background: var(--white);
        outline: none;
        transition: border-color 0.2s;
        min-height: 44px;
        width: 100%;
      }
      .form-group input:focus,
      .form-group select:focus,
      .form-group textarea:focus {
        border-color: var(--blue);
      }
      .form-group textarea {
        resize: vertical;
        min-height: 88px;
      }

      /* ─── FOOTER ─── */
      footer {
        background: var(--navy);
        padding: clamp(2.5rem, 6vw, 4.375rem) var(--section-px) 2rem;
      }
      .footer-top {
        display: grid;
        grid-template-columns: 1fr;
        gap: clamp(1.5rem, 4vw, 2rem);
        padding-bottom: clamp(2rem, 4vw, 3.125rem);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        margin-bottom: 1.5rem;
      }
      .footer-logo {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-family: "Sora", sans-serif;
        font-weight: 800;
        font-size: 1rem;
        color: #fff;
      }
      .footer-logo .logo-icon {
        width: 34px;
        height: 34px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        flex-shrink: 0;
      }
      .footer-logo .logo-icon::after {
        content: "";
        position: absolute;
        width: 12px;
        height: 18px;
        background: var(--green);
        clip-path: polygon(
          50% 0%,
          100% 40%,
          65% 40%,
          65% 100%,
          35% 100%,
          35% 40%,
          0% 40%
        );
      }
      .footer-brand p {
        font-size: 0.84rem;
        color: #8896b3;
        line-height: 1.7;
        margin-top: 0.875rem;
      }
      .footer-cols {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
      }
      .footer-col h5 {
        font-family: "Sora", sans-serif;
        font-size: 0.75rem;
        font-weight: 700;
        color: #fff;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        margin-bottom: 1rem;
      }
      .footer-col ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0.625rem;
      }
      .footer-col ul li a {
        font-size: 0.84rem;
        color: #8896b3;
        text-decoration: none;
        transition: color 0.2s;
      }
      .footer-col ul li a:hover {
        color: var(--green);
      }
      .footer-bottom {
        display: flex;
        flex-direction: column;
        gap: 0.625rem;
        align-items: center;
        text-align: center;
      }
      .footer-copy {
        font-size: 0.75rem;
        color: #8896b3;
      }
      .footer-links {
        display: flex;
        gap: 1.25rem;
        flex-wrap: wrap;
        justify-content: center;
      }
      .footer-links a {
        font-size: 0.75rem;
        color: #8896b3;
        text-decoration: none;
        transition: color 0.2s;
      }
      .footer-links a:hover {
        color: #fff;
      }
      .green-line {
        height: 3px;
        background: linear-gradient(
          90deg,
          var(--blue) 0%,
          var(--green) 50%,
          transparent 100%
        );
      }

      /* ─── ANIMATIONS ─── */
      @keyframes pulse {
        0%,
        100% {
          opacity: 1;
          transform: scale(1);
        }
        50% {
          opacity: 0.5;
          transform: scale(0.8);
        }
      }
      @keyframes fillBar {
        from {
          width: 0;
        }
      }
      .fade-up {
        opacity: 0;
        transform: translateY(20px);
        transition:
          opacity 0.6s ease,
          transform 0.6s ease;
      }
      .fade-up.visible {
        opacity: 1;
        transform: none;
      }

      /* ── sm: 480px ── */
      @media (min-width: 480px) {
        .form-row {
          grid-template-columns: 1fr 1fr;
          gap: 0.875rem;
        }
        .industries-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .stats-inner {
          grid-template-columns: repeat(3, 1fr);
        }
        .stat-item:nth-child(2n) {
          border-right: 1px solid rgba(255, 255, 255, 0.08);
        }
        .stat-item:nth-child(3n) {
          border-right: none;
        }
        .dash-kpis {
          grid-template-columns: repeat(4, 1fr);
        }
      }
      /* ── md: 768px ── */
      @media (min-width: 768px) {
        .nav-links {
          display: flex;
        }
        .nav-ctas {
          display: flex;
        }
        .nav-toggle {
          display: none;
        }
        .nav-drawer {
          display: none !important;
        }
        .hero-inner {
          grid-template-columns: 1fr 1fr;
        }
        .hero h1 {
          font-size: clamp(2.25rem, 4vw, 3.5rem);
        }
        .platform-layout {
          grid-template-columns: 1fr 1fr;
          align-items: center;
        }
        .why-grid {
          grid-template-columns: 1fr 1fr;
          align-items: center;
        }
        .form-cta {
          grid-template-columns: 1fr 1fr;
          align-items: center;
        }
        .stats-inner {
          grid-template-columns: repeat(5, 1fr);
        }
        .stat-item {
          border-right: 1px solid rgba(255, 255, 255, 0.08);
          border-bottom: none;
        }
        .stat-item:nth-child(3n) {
          border-right: 1px solid rgba(255, 255, 255, 0.08);
        }
        .stat-item:last-child {
          border-right: none;
        }
        .industries-grid {
          grid-template-columns: repeat(3, 1fr);
        }
        .footer-top {
          grid-template-columns: 1.5fr 1fr 1fr 1fr;
          gap: clamp(2rem, 4vw, 3.75rem);
        }
        .footer-cols {
          display: contents;
        }
        .footer-bottom {
          flex-direction: row;
          justify-content: space-between;
          text-align: left;
        }
      }
      /* ── lg: 1024px ── */
      @media (min-width: 1024px) {
        :root {
          --section-px: clamp(4rem, 7vw, 7vw);
        }
        .hero h1 {
          font-size: clamp(2.6rem, 4.5vw, 4rem);
        }
        .platform-layout,
        .why-grid,
        .form-cta {
          gap: clamp(3rem, 5vw, 5rem);
        }
        .dash-kpis {
          grid-template-columns: repeat(4, 1fr);
        }
      }
      /* ── xl: 1280px ── */
      @media (min-width: 1280px) {
        .hero-inner,
        .stats-inner,
        .platform-layout,
        .products-grid,
        .industries-grid,
        .why-grid,
        .form-cta,
        .footer-top {
          max-width: 1200px;
          margin-left: auto;
          margin-right: auto;
        }
      }

      /* ── Prevent body scroll when modal open ── */
      body.modal-open {
        overflow: hidden;
      }
  