@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;900&family=Syne:wght@700;800&display=swap");
      :root {
        --bg: #f5f8f5;
        --surface: #ffffff;
        --surface2: #eef4ee;
        --border: rgba(22, 163, 74, 0.14);
        --gm: #0d4a2a;
        --gg: #16a34a;
        --gb: #22c55e;
        --gn: #15803d;
        --gold: #b8860b;
        --gl: #d4a017;
        --txt: #0d1f14;
        --txt2: #3d5a45;
        --txt3: #6b8c74;
      }
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        background: #f5f8f5;
        color: #0d1f14;
        overflow-x: hidden;
      }
      ::-webkit-scrollbar {
        width: 3px;
      }
      ::-webkit-scrollbar-track {
        background: #f5f8f5;
      }
      ::-webkit-scrollbar-thumb {
        background: var(--gg);
        border-radius: 4px;
      }

      /* FIXED BG */
      #bgCanvas {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 0;
      }
      #mouseGlow {
        position: fixed;
        width: 500px;
        height: 500px;
        background: radial-gradient(
          circle,
          rgba(22, 163, 74, 0.1) 0%,
          transparent 70%
        );
        border-radius: 50%;
        pointer-events: none;
        z-index: 1;
        transform: translate(-50%, -50%);
        transition:
          left 0.1s,
          top 0.1s;
      }

      /* NAV */
      nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        padding: 14px 48px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        backdrop-filter: blur(24px);
        background: rgba(255, 255, 255, 0.92);
        border-bottom: 1px solid rgba(22, 163, 74, 0.18);
      }
      .nav-logo {
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
      }
      .nav-logo-mark {
        width: 38px;
        height: 38px;
        background: linear-gradient(135deg, #0d4a2a, #16a34a);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        box-shadow: 0 0 24px rgba(22, 163, 74, 0.45);
      }
      .nav-logo-text {
        font-size: 20px;
        font-weight: 800;
        color: #0d1f14;
        letter-spacing: -0.5px;
      }
      .nav-logo-text span {
        color: var(--gl);
      }
      .nav-links {
        display: flex;
        gap: 28px;
        list-style: none;
      }
      .nav-links a {
        color: #000;
        text-decoration: none;
        font-size: 18px;
        font-weight: 500;
        transition: color 0.3s;
      }
      .nav-links a:hover {
        color: var(--gg);
      }
      .nav-cta {
        background: linear-gradient(135deg, var(--gg), var(--gb));
        color: #fff;
        padding: 15px 25px;
        border-radius: 50px;
        font-size: 18px;
        font-weight: 700;
        text-decoration: none;
        box-shadow: 0 0 28px rgba(22, 163, 74, 0.5);
        transition: all 0.3s;
      }
      .nav-cta-desktop {
        display: inline-flex;
      }
      .nav-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 0 50px rgba(22, 163, 74, 0.8);
      }

      /* SECTION COMMON */
      section {
        position: relative;
        z-index: 10;
        overflow: hidden;
      }
      .container {
        max-width: 1140px;
        margin: 0 auto;
        padding: 0 clamp(16px, 4vw, 48px);
      }
      .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        color: var(--gg);
        margin-bottom: 14px;
      }
      .eyebrow::before {
        content: "";
        width: 18px;
        height: 1px;
        background: var(--gg);
      }
      .section-title {
        font-size: clamp(30px, 3.8vw, 52px);
        font-weight: 800;
        line-height: 1.08;
        letter-spacing: -1.5px;
        margin-bottom: 14px;
        color: #0d1f14;
      }
      .section-title .hl {
        background: linear-gradient(120deg, var(--gg), var(--gl));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }
      .section-sub {
        font-size: 15.5px;
        color: #4a6b54;
        line-height: 1.75;
        max-width: 480px;
      }
      .reveal {
        opacity: 0;
        transform: translateY(36px);
        transition:
          opacity 0.8s ease,
          transform 0.8s ease;
      }
      .reveal.visible {
        opacity: 1;
        transform: translateY(0);
      }
      .d1 {
        transition-delay: 0.1s;
      }
      .d2 {
        transition-delay: 0.2s;
      }
      .d3 {
        transition-delay: 0.3s;
      }
      .d4 {
        transition-delay: 0.4s;
      }
      .d5 {
        transition-delay: 0.5s;
      }

      /* =========================================================
   HERO
   ========================================================= */
      #hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        overflow: hidden;
        padding: 110px 0 60px;
        background: linear-gradient(
          160deg,
          #e8f5ec 0%,
          #f5f8f5 55%,
          #fff8e8 100%
        );
      }
      .hero-grid-bg {
        position: absolute;
        inset: 0;
        background-image:
          linear-gradient(rgba(22, 163, 74, 0.07) 1px, transparent 1px),
          linear-gradient(90deg, rgba(22, 163, 74, 0.07) 1px, transparent 1px);
        background-size: 64px 64px;
        z-index: 1;
      }
      .hero-orb-1 {
        position: absolute;
        width: 700px;
        height: 700px;
        background: radial-gradient(
          circle,
          rgba(22, 163, 74, 0.22) 0%,
          transparent 65%
        );
        top: -180px;
        left: -180px;
        z-index: 1;
        animation: orb 8s ease-in-out infinite;
      }
      .hero-orb-2 {
        position: absolute;
        width: 600px;
        height: 600px;
        background: radial-gradient(
          circle,
          rgba(184, 134, 11, 0.18) 0%,
          transparent 65%
        );
        bottom: -150px;
        right: -120px;
        z-index: 1;
        animation: orb 10s ease-in-out infinite reverse;
      }
      @keyframes orb {
        0%,
        100% {
          transform: scale(1);
        }
        50% {
          transform: scale(1.15);
        }
      }

      .hero-inner {
        position: relative;
        z-index: 10;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(24px, 4vw, 60px);
        align-items: center;
        max-width: 1140px;
        margin: 0 auto;
        padding: 0 clamp(16px, 4vw, 48px);
        width: 100%;
      }

      /* Left */
      .hero-left {
      }
      .hero-live-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(22, 163, 74, 0.1);
        border: 1px solid rgba(22, 163, 74, 0.3);
        padding: 7px 18px;
        border-radius: 50px;
        font-size: 12px;
        font-weight: 700;
        color: var(--gg);
        margin-bottom: 28px;
        letter-spacing: 0.5px;
      }
      .hero-live-dot {
        width: 6px;
        height: 6px;
        background: var(--gg);
        border-radius: 50%;
        animation: blink 1.4s infinite;
      }
      @keyframes blink {
        0%,
        100% {
          opacity: 1;
        }
        50% {
          opacity: 0.2;
        }
      }
      .hero-h1 {
        font-size: clamp(38px, 4.5vw, 68px);
        font-weight: 800;
        line-height: 1;
        letter-spacing: -2px;
        margin-bottom: 22px;
      }
      .hero-h1 .w1 {
        color: #0d1f14;
      }
      .hero-h1 .w2 {
        background: linear-gradient(120deg, #16a34a 0%, #b8860b 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }
      .hero-p {
        font-size: 17px;
        color: #4a6b54;
        line-height: 1.75;
        margin-bottom: 36px;
        max-width: 440px;
      }
      .hero-btns {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
        margin-bottom: 48px;
      }
      .btn-p {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        background: linear-gradient(135deg, var(--gg), var(--gb));
        color: #fff;
        padding: 15px 32px;
        border-radius: 50px;
        font-size: 15px;
        font-weight: 700;
        text-decoration: none;
        box-shadow:
          0 0 50px rgba(22, 163, 74, 0.55),
          inset 0 1px 0 rgba(255, 255, 255, 0.18);
        transition: all 0.3s;
        position: relative;
        overflow: hidden;
      }
      .btn-p::after {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.13),
          transparent
        );
        transition: left 0.5s;
      }
      .btn-p:hover::after {
        left: 100%;
      }
      .btn-p:hover {
        transform: translateY(-3px);
        box-shadow:
          0 0 90px rgba(22, 163, 74, 0.75),
          inset 0 1px 0 rgba(255, 255, 255, 0.18);
      }
      .btn-s {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        background: #fff;
        border: 1px solid rgba(22, 163, 74, 0.25);
        color: #0d1f14;
        padding: 15px 32px;
        border-radius: 50px;
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
        backdrop-filter: blur(10px);
        transition: all 0.3s;
      }
      .btn-s:hover {
        background: #e8f5ec;
        border-color: var(--gg);
        transform: translateY(-3px);
      }

      .hero-pills {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
      }
      .hero-pill {
        display: flex;
        align-items: center;
        gap: 6px;
        background: #fff;
        border: 1px solid rgba(22, 163, 74, 0.2);
        padding: 6px 14px;
        border-radius: 50px;
        font-size: 12px;
        color: #3d5a45;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        font-weight: 500;
      }
      .hero-pill span {
        color: var(--gg);
      }

      /* Right — phone universe */
      .hero-right {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        height: clamp(400px, 50vw, 580px);
      }
      .phone-universe {
        position: relative;
        width: 320px;
        height: 520px;
      }
      .orbit {
        position: absolute;
        border-radius: 50%;
        border: 1px solid;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        animation: spin linear infinite;
      }
      .o1 {
        width: 360px;
        height: 360px;
        border-color: rgba(34, 197, 94, 0.18);
        animation-duration: 22s;
      }
      .o2 {
        width: 480px;
        height: 480px;
        border-color: rgba(212, 160, 23, 0.12);
        animation-duration: 35s;
        animation-direction: reverse;
      }
      .o3 {
        width: 580px;
        height: 580px;
        border-color: rgba(34, 197, 94, 0.07);
        animation-duration: 50s;
      }
      @keyframes spin {
        from {
          transform: translate(-50%, -50%) rotate(0deg);
        }
        to {
          transform: translate(-50%, -50%) rotate(360deg);
        }
      }

      .phone-wrap {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 220px;
        height: 440px;
        z-index: 10;
        animation: phoneFloat 7s ease-in-out infinite;
      }
      @keyframes phoneFloat {
        0%,
        100% {
          transform: translate(-50%, -50%) translateY(0) rotate(-1.5deg);
        }
        50% {
          transform: translate(-50%, -50%) translateY(-18px) rotate(1.5deg);
        }
      }
      .phone-body {
        width: 100%;
        height: 100%;
        background: linear-gradient(160deg, #141c1a, #0a110e);
        border-radius: 34px;
        border: 1.5px solid rgba(34, 197, 94, 0.3);
        box-shadow:
          0 0 0 1px rgba(255, 255, 255, 0.04),
          0 40px 80px rgba(0, 0, 0, 0.85),
          0 0 80px rgba(22, 163, 74, 0.22),
          inset 0 1px 0 rgba(255, 255, 255, 0.08);
        overflow: hidden;
        display: flex;
        flex-direction: column;
      }
      .phone-notch {
        width: 70px;
        height: 18px;
        background: #0d1f14;
        border-radius: 0 0 12px 12px;
        margin: 0 auto;
      }
      .phone-screen {
        flex: 1;
        padding: 8px 10px 12px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        gap: 0;
      }
      .chat-bar {
        display: flex;
        align-items: center;
        gap: 7px;
        padding: 6px 2px 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        margin-bottom: 10px;
      }
      .chat-av {
        width: 28px;
        height: 28px;
        background: linear-gradient(135deg, #0d4a2a, #16a34a);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        flex-shrink: 0;
      }
      .chat-nm {
        font-size: 10px;
        font-weight: 700;
        color: #fff;
        line-height: 1.2;
      }
      .chat-st {
        font-size: 8px;
        color: var(--gn);
        display: flex;
        align-items: center;
        gap: 3px;
      }
      .chat-st::before {
        content: "";
        width: 5px;
        height: 5px;
        background: var(--gn);
        border-radius: 50%;
      }
      .chat-vf {
        margin-left: auto;
        font-size: 8px;
        color: var(--gn);
      }

      .pmsg {
        opacity: 0;
        transform: translateY(8px);
        animation: mPop 0.45s ease forwards;
      }
      @keyframes mPop {
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      .pmsg + .pmsg {
        margin-top: 7px;
      }
      .mb-h {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
      }
      .mb-p {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
      }
      .mt {
        max-width: 90%;
        padding: 7px 10px;
        border-radius: 11px;
        font-size: clamp(7px, 1.2vw, 9px);
        line-height: 1.5;
        color: #fff;
      }
      .mb-h .mt {
        background: #1a3325;
        border-radius: 3px 11px 11px 11px;
        border-left: 2px solid var(--gg);
      }
      .mb-p .mt {
        background: #0d4a2a;
        border-radius: 11px 3px 11px 11px;
      }
      .mm {
        font-size: 7px;
        color: rgba(255, 255, 255, 0.35);
        margin-top: 2px;
        padding: 0 3px;
      }
      .mb-p .mm {
        display: flex;
        align-items: center;
        gap: 3px;
      }
      .blue {
        color: #60a5fa;
      }
      .nchip {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        background: rgba(34, 197, 94, 0.18);
        border: 1px solid rgba(34, 197, 94, 0.35);
        padding: 3px 8px;
        border-radius: 20px;
        font-size: 7.5px;
        color: var(--gn);
        font-weight: 700;
        margin-bottom: 6px;
        align-self: flex-start;
      }
      .gchip {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        background: rgba(245, 200, 66, 0.12);
        border: 1px solid rgba(245, 200, 66, 0.3);
        padding: 3px 8px;
        border-radius: 20px;
        font-size: 7.5px;
        color: var(--gl);
        font-weight: 700;
        margin-bottom: 6px;
        align-self: flex-start;
      }
      .m1 {
        animation-delay: 0.3s;
      }
      .m2 {
        animation-delay: 1.1s;
      }
      .m3 {
        animation-delay: 1.9s;
      }
      .m4 {
        animation-delay: 2.7s;
      }
      .m5 {
        animation-delay: 3.3s;
      }
      .m6 {
        animation-delay: 3.9s;
      }

      /* floating icons */
      .flt {
        position: absolute;
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid rgba(22, 163, 74, 0.25);
        border-radius: 13px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        backdrop-filter: blur(12px);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
      }
      .f1 {
        top: 60px;
        left: -10px;
        animation: fi 4.2s ease-in-out infinite;
      }
      .f2 {
        top: 140px;
        right: -15px;
        animation: fi 5.1s ease-in-out infinite 0.8s;
      }
      .f3 {
        bottom: 180px;
        left: -20px;
        animation: fi 3.8s ease-in-out infinite 0.3s;
      }
      .f4 {
        bottom: 100px;
        right: -5px;
        animation: fi 4.8s ease-in-out infinite 1.2s;
      }
      .f5 {
        top: 20px;
        right: 30px;
        animation: fi 5.5s ease-in-out infinite 1.8s;
      }
      .f6 {
        bottom: 40px;
        left: 40px;
        animation: fi 3.5s ease-in-out infinite 0.6s;
      }
      @keyframes fi {
        0%,
        100% {
          transform: translateY(0) rotate(0);
        }
        50% {
          transform: translateY(-14px) rotate(6deg);
        }
      }

      /* notification popups */
      .notif-pop {
        position: absolute;
        background: #fff;
        border: 1px solid rgba(22, 163, 74, 0.22);
        border-radius: 12px;
        padding: 10px 14px;
        backdrop-filter: blur(20px);
        min-width: 160px;
        animation: notifPop 3s ease-in-out infinite;
      }
      .np1 {
        top: 30px;
        right: -80px;
        animation-delay: 0s;
      }
      .np2 {
        bottom: 90px;
        right: -90px;
        animation-delay: 1.5s;
      }
      .np3 {
        bottom: 180px;
        left: -100px;
        animation-delay: 0.8s;
      }
      @keyframes notifPop {
        0%,
        100% {
          transform: translateY(0) scale(1);
          opacity: 0.9;
        }
        50% {
          transform: translateY(-5px) scale(1.02);
          opacity: 1;
        }
      }
      .np-icon {
        font-size: 14px;
        margin-bottom: 4px;
      }
      .np-title {
        font-size: 18px;
        font-weight: 700;
        color: var(--gg);
        margin-bottom: 2px;
      }
      .np-text {
        font-size: 15px;
        color: #6b8c74;
      }
      .np-val {
        font-size: 14px;
        font-weight: 800;
        color: var(--gg);
      }

      /* particles near phone */
      .ptl {
        position: absolute;
        width: 3px;
        height: 3px;
        background: var(--gn);
        border-radius: 50%;
        animation: ptlFloat linear infinite;
        opacity: 0;
      }
      @keyframes ptlFloat {
        0% {
          transform: translateY(0) scale(0);
          opacity: 0;
        }
        15% {
          opacity: 1;
          transform: translateY(-18px) scale(1);
        }
        85% {
          opacity: 0.4;
        }
        100% {
          transform: translateY(-90px) scale(0.5);
          opacity: 0;
        }
      }

      /* =========================================================
   STATS BAR
   ========================================================= */
      #stats {
        position: relative;
        z-index: 10;
        padding: 0 40px 80px;
        background: #f5f8f5;
      }
      .stats-wrap {
        max-width: 1000px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1px;
        background: rgba(22, 163, 74, 0.12);
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid rgba(22, 163, 74, 0.18);
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
      }
      .stat-cell {
        padding: 30px 20px;
        text-align: center;
        background: #fff;
        transition: background 0.3s;
        position: relative;
        overflow: hidden;
      }
      .stat-cell::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--gg), transparent);
        opacity: 0;
        transition: opacity 0.4s;
      }
      .stat-cell:hover {
        background: #e8f5ec;
      }
      .stat-cell:hover::before {
        opacity: 1;
      }
      .stat-n {
        font-size: clamp(24px, 3.5vw, 42px);
        font-weight: 800;
        line-height: 1;
        margin-bottom: 4px;
        background: linear-gradient(135deg, var(--gn), var(--gl));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }
      .stat-l {
        font-size: 12.5px;
        color: #4a6b54;
        font-weight: 500;
      }

      /* =========================================================
   INDUSTRIES
   ========================================================= */
      #industries {
        padding: 0px 0px 20px 0px;
        background: #f5f8f5;
      }
      .sec-hdr {
        margin-bottom: 60px;
      }
      .ind-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
        gap: clamp(12px, 2vw, 18px);
      }
      .ind-card {
        position: relative;
        background: #fff;
        border: 1px solid rgba(22, 163, 74, 0.12);
        border-radius: 22px;
        padding: 32px 26px;
        overflow: hidden;
        cursor: default;
        transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
      }
      .ind-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(
          circle at 50% 0%,
          rgba(22, 163, 74, 0.14),
          transparent 60%
        );
        opacity: 0;
        transition: opacity 0.5s;
      }
      .ind-card::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--gg), transparent);
        opacity: 0;
        transition: opacity 0.5s;
      }
      .ind-card:hover {
        transform: translateY(-8px) scale(1.015);
        border-color: rgba(22, 163, 74, 0.4);
        box-shadow:
          0 28px 56px rgba(0, 0, 0, 0.45),
          0 0 36px rgba(22, 163, 74, 0.13);
      }
      .ind-card:hover::before,
      .ind-card:hover::after {
        opacity: 1;
      }
      .ind-em {
        font-size: 44px;
        margin-bottom: 18px;
        display: block;
        filter: drop-shadow(0 0 18px rgba(34, 197, 94, 0.35));
        transition: transform 0.35s;
      }
      .ind-card:hover .ind-em {
        transform: rotate(6deg);
      }
      .ind-nm {
        font-size: 18px;
        font-weight: 800;
        color: #0d1f14;
        margin-bottom: 8px;
      }
      .ind-ds {
        font-size: 12.5px;
        color: #4a6b54;
        line-height: 1.65;
        margin-bottom: 18px;
      }
      .ind-tag {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        background: #e8f5ec;
        border: 1px solid rgba(22, 163, 74, 0.25);
        padding: 4px 11px;
        border-radius: 20px;
        font-size: 14px;
        color: var(--gg);
        font-weight: 700;
      }
      .ind-tag::before {
        content: "↑";
        font-size: 9px;
      }

      /* =========================================================
   BENEFITS — COMPARISON
   ========================================================= */
      #benefits {
        padding: 20px 0;
        background: linear-gradient(180deg, #f5f8f5, #edf5ef, #f5f8f5);
      }
      .cmp-grid {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        gap: clamp(16px, 2vw, 28px);
        align-items: center;
        margin-top: 64px;
      }
      .cmp-panel {
        background: #fff;
        border: 1px solid rgba(22, 163, 74, 0.12);
        border-radius: 24px;
        padding: 36px 30px;
      }
      .cmp-panel.bad {
        border-color: rgba(239, 68, 68, 0.22);
        background: #fff5f5;
      }
      .cmp-panel.good {
        border-color: rgba(22, 163, 74, 0.3);
        background: #e8f5ec;
        box-shadow: 0 0 60px rgba(22, 163, 74, 0.1);
      }
      .cmp-lbl {
        font-size: clamp(10px, 1.2vw, 11px);
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 26px;
      }
      .bad .cmp-lbl {
        color: #f87171;
      }
      .good .cmp-lbl {
        color: var(--gn);
      }
      .cmp-row {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 16px;
        font-size: 13.5px;
        font-weight: 500;
      }
      .bad .cmp-row {
        color: #6b3030;
      }
      .good .cmp-row {
        color: #1a3d26;
      }
      .ci {
        width: 22px;
        height: 22px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        flex-shrink: 0;
        margin-top: 1px;
      }
      .ci.x {
        background: rgba(239, 68, 68, 0.14);
        color: #f87171;
      }
      .ci.ch {
        background: rgba(34, 197, 94, 0.14);
        color: var(--gn);
      }
      .vs-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
      }
      .vs-circle {
        width: 58px;
        height: 58px;
        background: linear-gradient(135deg, var(--gg), var(--gb));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        font-weight: 800;
        box-shadow: 0 0 40px rgba(22, 163, 74, 0.5);
      }
      .vs-arr {
        font-size: 22px;
        color: var(--gn);
        animation: arrPulse 2s ease-in-out infinite;
      }
      @keyframes arrPulse {
        0%,
        100% {
          transform: translateX(0);
        }
        50% {
          transform: translateX(6px);
        }
      }

      /* =========================================================
   FEATURES MARQUEE
   ========================================================= */
      #marquee {
        padding: 0 0 80px;
        overflow: hidden;
        position: relative;
        z-index: 10;
        background: #f5f8f5;
      }
      .mq-track {
        display: flex;
        gap: 16px;
        width: max-content;
        animation: marqueeScroll 28s linear infinite;
      }
      #marquee:hover .mq-track {
        animation-play-state: paused;
      }
      @keyframes marqueeScroll {
        from {
          transform: translateX(0);
        }
        to {
          transform: translateX(-50%);
        }
      }
      .mq-chip {
        display: flex;
        align-items: center;
        gap: 10px;
        background: #fff;
        border: 1px solid rgba(22, 163, 74, 0.15);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        border-radius: 50px;
        padding: 10px 22px;
        white-space: nowrap;
        font-size: 14px;
        font-weight: 600;
        color: #3d5a45;
      }
      .mq-chip .dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--gn);
        flex-shrink: 0;
      }
      .mq-chip .ico {
        font-size: 16px;
      }

      /* =========================================================
   LIVE MESSAGE FLOW
   ========================================================= */
      #flow {
        /* padding: 20px 0; */
        background: #f5f8f5;
      }
      .flow-wrap {
        max-width: 860px;
        margin: 64px auto 0;
        position: relative;
      }
      .flow-nodes {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
      }
      .fn {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 14px;
        z-index: 2;
      }
      .fn-icon {
        width: 78px;
        height: 78px;
        background: #fff;
        border: 1px solid rgba(22, 163, 74, 0.15);
        border-radius: 22px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 34px;
        transition: all 0.4s;
      }
      .fn-icon.active {
        border-color: rgba(22, 163, 74, 0.4);
        background: #e8f5ec;
        box-shadow: 0 0 36px rgba(22, 163, 74, 0.28);
      }
      .fn-lbl {
        font-size: 12px;
        font-weight: 600;
        color: #3d5a45;
        text-align: center;
      }
      .fc {
        flex: 1;
        height: 2px;
        position: relative;
        margin: 0 -8px;
        margin-bottom: 38px;
        z-index: 1;
      }
      .fl {
        width: 100%;
        height: 100%;
        background: linear-gradient(
          90deg,
          rgba(34, 197, 94, 0.25),
          rgba(34, 197, 94, 0.6),
          rgba(34, 197, 94, 0.25)
        );
        position: relative;
        overflow: hidden;
      }
      .fp {
        position: absolute;
        top: -3px;
        width: 22px;
        height: 8px;
        background: var(--gn);
        border-radius: 4px;
        filter: blur(2px);
        box-shadow: 0 0 12px var(--gn);
        animation: fpAnim 2.2s linear infinite;
        opacity: 0;
      }
      .fp:nth-child(2) {
        animation-delay: 0.75s;
      }
      .fp:nth-child(3) {
        animation-delay: 1.5s;
      }
      @keyframes fpAnim {
        0% {
          left: -22px;
          opacity: 0;
        }
        8% {
          opacity: 1;
        }
        90% {
          opacity: 1;
        }
        100% {
          left: 100%;
          opacity: 0;
        }
      }

      .flow-cards {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(min(100%, 180px), 1fr));
        gap: clamp(10px, 1.5vw, 16px);
        margin-top: 48px;
      }
      .flow-card {
        background: #fff;
        border: 1px solid rgba(22, 163, 74, 0.12);
        border-radius: 16px;
        padding: 20px;
        text-align: center;
        transition: all 0.3s;
      }
      .flow-card:hover {
        background: #e8f5ec;
        border-color: rgba(22, 163, 74, 0.3);
        transform: translateY(-4px);
      }
      .flow-card .ico {
        font-size: 26px;
        margin-bottom: 10px;
      }
      .flow-card .nm {
        font-size: 12.5px;
        font-weight: 700;
        color: #0d1f14;
        margin-bottom: 4px;
      }
      .flow-card .ds {
        font-size: 14px;
        color: #4a6b54;
      }

      /* =========================================================
   SERVICES DEEP-DIVE (new section)
   ========================================================= */
      #services {
        padding: 40px 0;
        background: linear-gradient(180deg, #f5f8f5, #edf5ef, #f5f8f5);
      }
      .srv-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(min(100%, 440px), 1fr));
        gap: clamp(14px, 2vw, 24px);
        margin-top: 64px;
      }
      .srv-card {
        background: #fff;
        border: 1px solid rgba(22, 163, 74, 0.12);
        border-radius: 24px;
        padding: 36px;
        overflow: hidden;
        position: relative;
        transition: all 0.45s;
      }
      .srv-card::before {
        content: "";
        position: absolute;
        bottom: 0;
        right: 0;
        width: 120px;
        height: 120px;
        border-radius: 50%;
        opacity: 0.06;
        transition: opacity 0.45s;
      }
      .srv-card:hover {
        transform: translateY(-6px);
        border-color: rgba(22, 163, 74, 0.35);
        box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
      }
      .srv-card:hover::before {
        opacity: 0.14;
      }
      .srv-card.c1::before {
        background: var(--gn);
      }
      .srv-card.c2::before {
        background: var(--gl);
      }
      .srv-card.c3::before {
        background: #60a5fa;
      }
      .srv-card.c4::before {
        background: #f87171;
      }
      .srv-card-top {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 20px;
      }
      .srv-icon-box {
        width: 52px;
        height: 52px;
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        flex-shrink: 0;
      }
      .c1 .srv-icon-box {
        background: rgba(34, 197, 94, 0.15);
      }
      .c2 .srv-icon-box {
        background: rgba(245, 200, 66, 0.15);
      }
      .c3 .srv-icon-box {
        background: rgba(96, 165, 250, 0.15);
      }
      .c4 .srv-icon-box {
        background: rgba(248, 113, 113, 0.15);
      }
      .srv-title {
        font-size: 20px;
        font-weight: 800;
        color: #0d1f14;
      }
      .srv-sub {
        font-size: 12px;
        color: #6b8c74;
        margin-top: 2px;
      }
      .srv-desc {
        font-size: 13.5px;
        color: #4a6b54;
        line-height: 1.7;
        margin-bottom: 22px;
      }
      .srv-list {
        display: flex;
        flex-direction: column;
        gap: 10px;
      }
      .srv-li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        color: #3d5a45;
      }
      .srv-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        flex-shrink: 0;
      }
      .c1 .srv-dot {
        background: var(--gn);
      }
      .c2 .srv-dot {
        background: var(--gl);
      }
      .c3 .srv-dot {
        background: #60a5fa;
      }
      .c4 .srv-dot {
        background: #f87171;
      }

      /* =========================================================
   DOCUMENTS (Activation requirements)
   ========================================================= */
      #docs {
        padding: 20px 0;
        background: #f5f8f5;
      }
      .docs-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(min(100%, 440px), 1fr));
        gap: clamp(14px, 2vw, 24px);
        margin-top: 64px;
      }
      .doc-card {
        background: #fff;
        border: 1px solid rgba(22, 163, 74, 0.12);
        border-radius: 24px;
        padding: 36px;
      }
      .doc-card-title {
        font-size: 17px;
        font-weight: 800;
        color: #0d1f14;
        margin-bottom: 22px;
        display: flex;
        align-items: center;
        gap: 10px;
      }
      .doc-icon {
        width: 34px;
        height: 34px;
        background: rgba(34, 197, 94, 0.14);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
      }
      .doc-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 11px 0;
        border-bottom: 1px solid rgba(22, 163, 74, 0.1);
        font-size: 13.5px;
        color: #3d5a45;
      }
      .doc-item:last-child {
        border-bottom: none;
      }
      .doc-check {
        width: 20px;
        height: 20px;
        background: rgba(34, 197, 94, 0.15);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 10px;
        color: var(--gn);
        flex-shrink: 0;
      }
      .doc-or {
        text-align: center;
        font-size: 14px;
        font-weight: 700;
        color: #9ab8a2;
        letter-spacing: 1px;
        padding: 4px 0;
      }

      /* =========================================================
   PRICING
   ========================================================= */
      #pricing {
        padding: 20px 0;
        background: linear-gradient(180deg, #f5f8f5, #edf5ef, #f5f8f5);
      }
      .pricing-outer {
        max-width: min(680px, 100%);
        margin: 64px auto 0;
        position: relative;
      }
      .pricing-ambient {
        position: absolute;
        inset: -60px;
        background: radial-gradient(
          circle,
          rgba(212, 160, 23, 0.14) 0%,
          rgba(22, 163, 74, 0.09) 40%,
          transparent 70%
        );
        pointer-events: none;
        animation: orb 5s ease-in-out infinite;
      }
      .pricing-card {
        position: relative;
        background: linear-gradient(148deg, #0d2a18, #0a1e10);
        border: 1px solid rgba(212, 160, 23, 0.28);
        border-radius: 32px;
        padding: 52px 48px;
        backdrop-filter: blur(32px);
        overflow: hidden;
      }
      .pricing-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(
          90deg,
          transparent,
          var(--gold),
          transparent
        );
      }
      .pricing-card::after {
        content: "";
        position: absolute;
        top: -40px;
        right: -40px;
        width: 140px;
        height: 140px;
        background: radial-gradient(
          circle,
          rgba(212, 160, 23, 0.2),
          transparent
        );
        border-radius: 50%;
      }
      .pricing-tag {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: linear-gradient(
          135deg,
          rgba(212, 160, 23, 0.18),
          rgba(245, 200, 66, 0.1)
        );
        border: 1px solid rgba(212, 160, 23, 0.38);
        padding: 5px 15px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 700;
        color: var(--gl);
        letter-spacing: 1px;
        margin-bottom: 22px;
      }
      .pricing-prod {
        font-size: 14px;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.65);
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 6px;
      }
      .pricing-price {
        font-size: clamp(44px, 7vw, 72px);
        font-weight: 800;
        line-height: 1;
        margin-bottom: 4px;
      }
      .pricing-price .cur {
        font-size: 32px;
        vertical-align: super;
        color: var(--gl);
      }
      .pricing-price .num {
        background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.72));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }
      .pricing-gst {
        font-size: 12.5px;
        color: rgba(255, 255, 255, 0.5);
        margin-bottom: 8px;
      }
      .pricing-val {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: rgba(34, 197, 94, 0.1);
        border: 1px solid rgba(34, 197, 94, 0.2);
        padding: 5px 14px;
        border-radius: 20px;
        font-size: 11.5px;
        color: var(--gn);
        font-weight: 700;
        margin-bottom: 36px;
      }
      .pricing-hr {
        height: 1px;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.1),
          transparent
        );
        margin-bottom: 30px;
      }
      .pricing-feats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-bottom: 36px;
      }
      .pf {
        display: flex;
        align-items: center;
        gap: 9px;
        font-size: 13.5px;
        color: rgba(255, 255, 255, 0.75);
        font-weight: 500;
      }
      .pf-ic {
        width: 20px;
        height: 20px;
        background: rgba(34, 197, 94, 0.14);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 10px;
        color: var(--gn);
        flex-shrink: 0;
      }
      .pricing-extras {
        background: rgba(0, 0, 0, 0.22);
        border-radius: 16px;
        padding: 20px 22px;
        margin-bottom: 32px;
      }
      .pe-ttl {
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.35);
        margin-bottom: 14px;
      }
      .pe-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 9px;
        font-size: 12.5px;
      }
      .pe-row:last-child {
        margin-bottom: 0;
      }
      .pe-nm {
        color: rgba(255, 255, 255, 0.7);
      }
      .pe-val {
        color: var(--gl);
        font-weight: 700;
        font-family: "Syne", sans-serif;
      }
      .btn-gold {
        display: block;
        text-align: center;
        background: linear-gradient(135deg, var(--gold), var(--gl));
        color: #0a2218;
        padding: 17px 40px;
        border-radius: 50px;
        font-size: 15.5px;
        font-weight: 800;
        text-decoration: none;
        box-shadow:
          0 0 55px rgba(212, 160, 23, 0.4),
          inset 0 1px 0 rgba(255, 255, 255, 0.28);
        transition: all 0.3s;
        letter-spacing: 0.4px;
      }
      .btn-gold:hover {
        transform: translateY(-3px);
        box-shadow:
          0 0 100px rgba(212, 160, 23, 0.65),
          inset 0 1px 0 rgba(255, 255, 255, 0.28);
      }

      /* =========================================================
   ONBOARDING STEPS
   ========================================================= */
      #onboarding {
        padding: 20px 0;
        background: #f5f8f5;
      }
      .steps-outer {
        position: relative;
        margin-top: 64px;
      }
      .steps-bar {
        position: absolute;
        top: 36px;
        left: 80px;
        right: 80px;
        height: 2px;
        background: linear-gradient(90deg, var(--gg), var(--gl), var(--gg));
        z-index: 1;
        border-radius: 2px;
      }
      .steps-bar::after {
        content: "";
        position: absolute;
        top: -2px;
        left: 0;
        right: 0;
        height: 6px;
        background: linear-gradient(90deg, var(--gg), var(--gl), var(--gg));
        filter: blur(4px);
        opacity: 0.6;
      }
      .steps-row {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: clamp(6px, 1.2vw, 10px);
        position: relative;
        z-index: 2;
      }
      .step {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 14px;
        text-align: center;
      }
      .step-num-wrap {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--gg), var(--gb));
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 19px;
        font-weight: 800;
        color: #fff;
        box-shadow: 0 0 28px rgba(22, 163, 74, 0.5);
        border: 3px solid #f5f8f5;
        transition: all 0.3s;
        cursor: default;
      }
      .step:hover .step-num-wrap {
        transform: scale(1.18);
        box-shadow: 0 0 50px rgba(22, 163, 74, 0.8);
      }
      .step-em {
        font-size: 26px;
      }
      .step-nm {
        font-size: 11.5px;
        font-weight: 700;
        color: #0d1f14;
        line-height: 1.3;
      }
      .step-ds {
        font-size: 9.5px;
        color: #6b8c74;
        line-height: 1.45;
      }

      /* =========================================================
   TRUST BADGES
   ========================================================= */
      #trust {
        padding: 20px 0;
        background: linear-gradient(180deg, #f5f8f5, #edf5ef, #f5f8f5);
      }
      .trust-flex {
        display: flex;
        flex-wrap: wrap;
        gap: 18px;
        justify-content: center;
        margin-top: 60px;
      }
      .trust-badge {
        display: flex;
        align-items: center;
        gap: 14px;
        background: #fff;
        border: 1px solid rgba(22, 163, 74, 0.14);
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        border-radius: 20px;
        padding: 18px 26px;
        backdrop-filter: blur(20px);
        transition: all 0.4s;
        cursor: default;
      }
      .trust-badge:hover {
        background: #e8f5ec;
        border-color: rgba(22, 163, 74, 0.35);
        transform: translateY(-6px) scale(1.03);
        box-shadow:
          0 20px 40px rgba(0, 0, 0, 0.3),
          0 0 28px rgba(22, 163, 74, 0.14);
      }
      .tb-icon {
        font-size: 30px;
        filter: drop-shadow(0 0 8px rgba(212, 160, 23, 0.4));
      }
      .tb-name {
        font-size: 13.5px;
        font-weight: 700;
        color: #0d1f14;
        display: block;
        margin-bottom: 2px;
      }
      .tb-desc {
        font-size: 14px;
        color: #6b8c74;
      }

      /* =========================================================
   SOCIAL PROOF / ANIMATED STATS
   ========================================================= */
      #social {
        padding: 20px 0;
        background: #f5f8f5;
      }
      .social-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
        gap: clamp(12px, 2vw, 20px);
        margin-top: 64px;
      }
      .social-card {
        background: #fff;
        border: 1px solid rgba(22, 163, 74, 0.12);
        border-radius: 22px;
        padding: 36px 28px;
        text-align: center;
        position: relative;
        overflow: hidden;
        transition: all 0.4s;
      }
      .social-card::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, transparent, var(--gg), transparent);
        opacity: 0;
        transition: opacity 0.4s;
      }
      .social-card:hover {
        background: #e8f5ec;
        border-color: rgba(22, 163, 74, 0.3);
        transform: translateY(-6px);
      }
      .social-card:hover::after {
        opacity: 1;
      }
      .sc-num {
        font-size: clamp(32px, 4vw, 52px);
        font-weight: 800;
        line-height: 1;
        margin-bottom: 8px;
        background: linear-gradient(135deg, var(--gn), var(--gl));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }
      .sc-lbl {
        font-size: 14px;
        color: #0d1f14;
        font-weight: 600;
        margin-bottom: 6px;
      }
      .sc-sub {
        font-size: 11.5px;
        color: #6b8c74;
      }

      /* Testimonials */
      .test-wrap {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
        gap: clamp(12px, 2vw, 20px);
        margin-top: 40px;
      }
      .test-card {
        background: #fff;
        border: 1px solid rgba(22, 163, 74, 0.12);
        box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
        border-radius: 20px;
        padding: 28px 24px;
        transition: all 0.35s;
      }
      .test-card:hover {
        background: #e8f5ec;
        border-color: rgba(22, 163, 74, 0.28);
        transform: translateY(-5px);
      }
      .test-stars {
        color: #d4a017;
        font-size: 14px;
        margin-bottom: 14px;
        letter-spacing: 2px;
      }
      .test-text {
        font-size: 13.5px;
        color: #4a6b54;
        line-height: 1.7;
        margin-bottom: 18px;
        font-style: italic;
      }
      .test-aut {
        display: flex;
        align-items: center;
        gap: 10px;
      }
      .test-av {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        flex-shrink: 0;
      }
      .test-nm {
        font-size: 12.5px;
        font-weight: 700;
        color: #0d1f14;
      }
      .test-role {
        font-size: 10.5px;
        color: #6b8c74;
      }

      /* =========================================================
   POLICY HIGHLIGHTS
   ========================================================= */
      #policy {
        padding: 20px 0;
        background: linear-gradient(180deg, #f5f8f5, #edf5ef, #f5f8f5);
      }
      .policy-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(min(100%, 420px), 1fr));
        gap: clamp(10px, 1.5vw, 14px);
        margin-top: 60px;
      }
      .pol-item {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        background: #fff;
        border: 1px solid rgba(22, 163, 74, 0.1);
        border-radius: 16px;
        padding: 18px 20px;
        transition: background 0.3s;
      }
      .pol-item:hover {
        background: #e8f5ec;
      }
      .pol-num {
        width: 28px;
        height: 28px;
        background: linear-gradient(135deg, var(--gg), var(--gb));
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-weight: 800;
        color: #fff;
        flex-shrink: 0;
      }
      .pol-text {
        font-size: 12.5px;
        color: #3d5a45;
        line-height: 1.65;
      }

      /* =========================================================
   CTA FINAL
   ========================================================= */
      #cta {
        padding: 20px 40px;
        text-align: center;
        position: relative;
        overflow: hidden;
        background: linear-gradient(
          160deg,
          #e8f5ec 0%,
          #f5f8f5 50%,
          #fff8e8 100%
        );
      }
      .cta-ambient {
        position: absolute;
        width: 900px;
        height: 500px;
        background: radial-gradient(
          ellipse,
          rgba(22, 163, 74, 0.18) 0%,
          rgba(212, 160, 23, 0.09) 40%,
          transparent 70%
        );
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        animation: orb 6s ease-in-out infinite;
        pointer-events: none;
      }
      .cta-inner {
        position: relative;
        z-index: 2;
      }
      .cta-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(22, 163, 74, 0.1);
        border: 1px solid rgba(22, 163, 74, 0.28);
        padding: 7px 18px;
        border-radius: 50px;
        font-size: 12px;
        font-weight: 700;
        color: var(--gg);
        margin-bottom: 24px;
        letter-spacing: 0.5px;
      }
      .cta-h2 {
        font-size: clamp(34px, 5vw, 62px);
        font-weight: 800;
        line-height: 1.08;
        letter-spacing: -2px;
        margin-bottom: 18px;
        color: #0d1f14;
      }
      .cta-sub {
        font-size: 17px;
        color: #4a6b54;
        margin-bottom: 44px;
      }
      .cta-btns {
        display: flex;
        gap: 14px;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 40px;
      }
      .cta-contacts {
        display: flex;
        gap: 18px;
        justify-content: center;
        flex-wrap: wrap;
      }
      .cc {
        display: flex;
        align-items: center;
        gap: 8px;
        background: #fff;
        border: 1px solid rgba(22, 163, 74, 0.18);
        padding: 11px 20px;
        border-radius: 50px;
        font-size: 13.5px;
        color: #3d5a45;
        text-decoration: none;
        transition: all 0.3s;
      }
      .cc:hover {
        background: #e8f5ec;
        border-color: rgba(22, 163, 74, 0.35);
        color: #0d1f14;
      }
      .cta-address {
        margin-top: 22px;
        font-size: 16px;
        color: #6b8c74;
      }

      /* =========================================================
   FOOTER
   ========================================================= */
      footer {
        position: relative;
        z-index: 10;
        padding: 15px 48px;
        border-top: 1px solid rgba(22, 163, 74, 0.14);
        background: #fff;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px;
      }
      .foot-brand {
        font-weight: 800;
        font-size: 18px;
        color: #0d1f14;
      }
      .foot-brand span {
        color: var(--gl);
      }
      .foot-copy {
        font-size: 16px;
        color: #6b8c74;
      }
      .foot-links {
        display: flex;
        gap: 22px;
      }
      .foot-links a {
        font-size: 12px;
        color: #6b8c74;
        text-decoration: none;
        transition: color 0.3s;
      }
      .foot-links a:hover {
        color: var(--gg);
      }

      /* =========================================================
   RESPONSIVE
   ========================================================= */

      /* =====================================================
   FLUID LAYOUT — applies to all elements baseline
   ===================================================== */
      .container {
        width: 100%;
        max-width: 1140px;
        margin: 0 auto;
        padding: 0 clamp(16px, 4vw, 48px);
      }
      section {
        /* padding-top: clamp(60px, 8vw, 110px);
        padding-bottom: clamp(60px, 8vw, 110px); */
      }
      #hero {
        padding-top: clamp(90px, 10vw, 130px);
        padding-bottom: clamp(40px, 6vw, 80px);
      }
      #stats {
        padding: 0 clamp(16px, 4vw, 40px) clamp(40px, 6vw, 80px);
      }
      #cta {
        padding: clamp(70px, 10vw, 130px) clamp(16px, 4vw, 40px);
        overflow: hidden;
      }
      .section-title {
        font-size: clamp(26px, 4vw, 52px);
      }
      .hero-h1 {
        font-size: clamp(32px, 5vw, 68px);
      }
      .cta-h2 {
        font-size: clamp(28px, 5vw, 62px);
      }

      /* =====================================================
   HAMBURGER MENU (mobile nav)
   ===================================================== */
      .nav-hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 4px;
        background: none;
        border: none;
        z-index: 1100;
      }
      .nav-hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: #0d1f14;
        border-radius: 2px;
        transition: all 0.3s;
      }
      .nav-hamburger.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
      }
      .nav-hamburger.open span:nth-child(2) {
        opacity: 0;
      }
      .nav-hamburger.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
      }
      .nav-mobile-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(20px);
        z-index: 1050;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
      }
      .nav-mobile-menu.open {
        display: flex;
      }
      .nav-mobile-menu a {
        font-size: 28px;
        font-weight: 800;
        color: #0d1f14;
        text-decoration: none;
        transition: color 0.2s;
      }
      .nav-mobile-menu a:hover {
        color: var(--gg);
      }
      .nav-mobile-close {
        position: absolute;
        top: 20px;
        right: 24px;
        font-size: 28px;
        cursor: pointer;
        color: #0d1f14;
        background: none;
        border: none;
        font-weight: 300;
      }

      /* =====================================================
   ULTRA-WIDE (≥1440px)
   ===================================================== */
      @media (min-width: 1440px) {
        .container {
          max-width: 1320px;
        }
        .hero-inner {
          gap: 80px;
        }
        .ind-grid {
          grid-template-columns: repeat(3, 1fr);
        }
        .social-grid {
          grid-template-columns: repeat(4, 1fr);
        }
        .test-wrap {
          grid-template-columns: repeat(3, 1fr);
        }
        .stats-wrap {
          grid-template-columns: repeat(4, 1fr);
        }
        .pricing-outer {
          max-width: 740px;
        }
      }

      /* =====================================================
   LARGE DESKTOP (1200px – 1439px) — default layout
   ===================================================== */
      @media (min-width: 1200px) and (max-width: 1439px) {
        .ind-grid {
          grid-template-columns: repeat(3, 1fr);
        }
        .social-grid {
          grid-template-columns: repeat(4, 1fr);
        }
      }

      /* =====================================================
   MEDIUM DESKTOP / TABLET LANDSCAPE (1024px – 1199px)
   ===================================================== */
      @media (max-width: 1199px) {
        .hero-inner {
          gap: 40px;
        }
        .hero-right {
          height: 520px;
        }
        .ind-grid {
          grid-template-columns: repeat(3, 1fr);
        }
        .srv-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .docs-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .social-grid {
          grid-template-columns: repeat(4, 1fr);
        }
        .test-wrap {
          grid-template-columns: repeat(3, 1fr);
        }
        .steps-row {
          grid-template-columns: repeat(7, 1fr);
        }
        .cmp-grid {
          grid-template-columns: 1fr 48px 1fr;
        }
      }

      /* =====================================================
   TABLET PORTRAIT (768px – 1023px)
   ===================================================== */
      @media (max-width: 1023px) {
        nav {
          padding: 14px clamp(16px, 3vw, 32px);
        }
        .nav-links {
          display: none;
        }
        .nav-hamburger {
          display: flex;
        }
        .nav-cta-desktop {
          display: none !important;
        }

        .hero-inner {
          grid-template-columns: 1fr;
          text-align: center;
          gap: 48px;
          padding: 0 clamp(16px, 4vw, 40px);
        }
        .hero-left {
          display: flex;
          flex-direction: column;
          align-items: center;
        }
        .hero-p {
          max-width: 560px;
          text-align: center;
        }
        .hero-pills {
          justify-content: center;
          max-width: 100%;
        }
        .hero-btns {
          justify-content: center;
        }
        .hero-right {
          height: 500px;
          width: 100%;
        }

        .phone-wrap {
          width: 200px;
          height: 400px;
        }
        .o1 {
          width: 300px;
          height: 300px;
        }
        .o2 {
          width: 420px;
          height: 420px;
        }
        .o3 {
          width: 520px;
          height: 520px;
        }
        .np1 {
          right: -60px;
          top: 20px;
        }
        .np2 {
          right: -60px;
          bottom: 70px;
        }
        .np3 {
          left: -70px;
          bottom: 160px;
        }

        .stats-wrap {
          grid-template-columns: repeat(2, 1fr);
        }
        .stat-n {
          font-size: clamp(28px, 5vw, 42px);
        }

        .ind-grid {
          grid-template-columns: repeat(2, 1fr);
        }

        .cmp-grid {
          grid-template-columns: 1fr;
          gap: 20px;
        }
        .vs-col {
          flex-direction: row;
          justify-content: center;
          padding: 8px 0;
        }

        .srv-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .docs-grid {
          grid-template-columns: repeat(2, 1fr);
        }

        .steps-row {
          grid-template-columns: repeat(4, 1fr);
          gap: 16px;
        }
        .steps-bar {
          display: none;
        }

        .social-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .sc-num {
          font-size: clamp(36px, 6vw, 52px);
        }
        .test-wrap {
          grid-template-columns: repeat(2, 1fr);
        }

        .pricing-outer {
          max-width: 100%;
        }
        .pricing-card {
          padding: clamp(28px, 5vw, 52px) clamp(24px, 4vw, 48px);
        }
        .pricing-feats {
          grid-template-columns: 1fr 1fr;
        }
        .pricing-price {
          font-size: clamp(48px, 8vw, 72px);
        }

        .policy-grid {
          grid-template-columns: 1fr;
        }

        .trust-flex {
          gap: 14px;
        }
        .trust-badge {
          padding: 14px 20px;
        }

        .flow-nodes {
          flex-wrap: nowrap;
        }
        .fn-icon {
          width: 60px;
          height: 60px;
          font-size: 26px;
          border-radius: 16px;
        }
        .flow-cards {
          grid-template-columns: repeat(2, 1fr);
        }

        footer {
          flex-direction: column;
          text-align: center;
          padding: 24px 20px;
          gap: 14px;
        }
        .foot-links {
          justify-content: center;
        }
      }

      /* =====================================================
   MOBILE LARGE (480px – 767px)
   ===================================================== */
      @media (max-width: 767px) {
        nav {
          padding: 12px 16px;
        }
        .nav-hamburger {
          display: flex;
        }

        #hero {
          padding-top: 90px;
          padding-bottom: 40px;
        }
        .hero-inner {
          gap: 36px;
          padding: 0 16px;
        }
        .hero-h1 {
          font-size: clamp(28px, 7vw, 42px);
          letter-spacing: -1px;
        }
        .hero-p {
          font-size: 15px;
        }
        .btn-p,
        .btn-s {
          padding: 13px 24px;
          font-size: 14px;
        }
        .hero-right {
          height: 440px;
        }

        .phone-wrap {
          width: 180px;
          height: 360px;
        }
        .phone-body {
          border-radius: 26px;
        }
        .o1 {
          width: 260px;
          height: 260px;
        }
        .o2 {
          width: 360px;
          height: 360px;
        }
        .o3 {
          display: none;
        }
        .notif-pop {
          display: none;
        }
        .f5,
        .f6 {
          display: none;
        }

        .stats-wrap {
          grid-template-columns: repeat(2, 1fr);
        }
        .stat-n {
          font-size: clamp(26px, 6vw, 36px);
        }
        .stat-l {
          font-size: 14px;
        }

        .ind-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 12px;
        }
        .ind-card {
          padding: 22px 18px;
        }
        .ind-em {
          font-size: 36px;
        }
        .ind-nm {
          font-size: 16px;
        }
        .ind-ds {
          font-size: 12px;
        }

        .cmp-grid {
          grid-template-columns: 1fr;
          gap: 16px;
        }
        .cmp-panel {
          padding: 28px 22px;
        }

        .srv-grid {
          grid-template-columns: 1fr;
        }
        .docs-grid {
          grid-template-columns: 1fr;
        }

        .steps-row {
          grid-template-columns: repeat(2, 1fr);
          gap: 20px;
          row-gap: 28px;
        }
        .steps-bar {
          display: none;
        }

        .flow-nodes {
          gap: 0;
        }
        .fn-icon {
          width: 52px;
          height: 52px;
          font-size: 22px;
        }
        .fc {
          flex: 1;
          min-width: 0;
        }
        .flow-cards {
          grid-template-columns: repeat(2, 1fr);
          gap: 12px;
        }

        .social-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 12px;
        }
        .social-card {
          padding: 24px 16px;
        }
        .sc-num {
          font-size: clamp(30px, 7vw, 44px);
        }
        .test-wrap {
          grid-template-columns: 1fr;
        }

        .pricing-outer {
          max-width: 100%;
        }
        .pricing-card {
          padding: 32px 24px;
        }
        .pricing-price {
          font-size: clamp(42px, 10vw, 64px);
        }
        .pricing-feats {
          grid-template-columns: 1fr;
        }

        .policy-grid {
          grid-template-columns: 1fr;
          gap: 10px;
        }

        .trust-flex {
          flex-direction: column;
          align-items: stretch;
          gap: 12px;
        }
        .trust-badge {
          justify-content: flex-start;
        }

        footer {
          padding: 20px 16px;
          gap: 12px;
        }
        .foot-links {
          justify-content: center;
          flex-wrap: wrap;
          gap: 16px;
        }

        #cta {
          padding: 70px 16px;
        }
        .cta-contacts {
          flex-direction: column;
          align-items: center;
          gap: 10px;
        }
        .cc {
          justify-content: center;
          width: 100%;
          max-width: 300px;
        }
      }

      /* =====================================================
   MOBILE SMALL (≤479px)
   ===================================================== */
      @media (max-width: 479px) {
        .hero-h1 {
          font-size: clamp(24px, 8vw, 34px);
          letter-spacing: -0.5px;
        }
        .hero-inner {
          padding: 0 12px;
        }
        .hero-right {
          height: 380px;
        }
        .phone-wrap {
          width: 160px;
          height: 320px;
        }
        .phone-notch {
          width: 55px;
          height: 15px;
        }
        .o1 {
          width: 220px;
          height: 220px;
        }
        .o2 {
          width: 300px;
          height: 300px;
        }
        .f1,
        .f2,
        .f3,
        .f4 {
          width: 36px;
          height: 36px;
          font-size: 16px;
          display: none;
        }

        .stat-n {
          font-size: clamp(22px, 7vw, 32px);
        }
        .stats-wrap {
          grid-template-columns: repeat(2, 1fr);
        }

        .ind-grid {
          grid-template-columns: 1fr;
          gap: 12px;
        }

        .steps-row {
          grid-template-columns: repeat(2, 1fr);
        }

        .flow-nodes {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 16px;
          row-gap: 24px;
        }
        .fc {
          display: none;
        }
        .flow-cards {
          grid-template-columns: 1fr;
        }

        .social-grid {
          grid-template-columns: 1fr;
        }

        .pricing-price {
          font-size: clamp(38px, 10vw, 54px);
        }
        .pricing-card {
          padding: 28px 18px;
        }
        .btn-gold {
          font-size: 14px;
          padding: 15px 24px;
        }

        .cta-h2 {
          font-size: clamp(24px, 7vw, 38px);
          letter-spacing: -1px;
        }
        .cta-sub {
          font-size: 15px;
        }

        .test-wrap {
          grid-template-columns: 1fr;
        }
        .trust-flex {
          gap: 10px;
        }
      }

      /* =====================================================
   TINY (≤359px) — very small phones
   ===================================================== */
      @media (max-width: 359px) {
        nav {
          padding: 10px 12px;
        }
        .nav-logo-text {
          font-size: 17px;
        }
        .nav-logo-mark {
          width: 32px;
          height: 32px;
          font-size: 15px;
        }
        .hero-h1 {
          font-size: 22px;
        }
        .hero-right {
          height: 340px;
        }
        .phone-wrap {
          width: 140px;
          height: 285px;
        }
        .btn-p,
        .btn-s {
          padding: 11px 18px;
          font-size: 14px;
        }
        .stat-n {
          font-size: 22px;
        }
        .section-title {
          font-size: 22px;
        }
      }

      /* =====================================================
   PRINT
   ===================================================== */
      @media print {
        #bgCanvas,
        #mouseGlow,
        .orbit,
        .flt,
        .ptl,
        .notif-pop,
        nav {
          display: none;
        }
        body {
          background: #fff;
          color: #000;
        }
        section {
          break-inside: avoid;
          padding: 24px 0;
        }
        .container {
          max-width: 100%;
        }
      }



      /* =========================================================
   WHATSAPP FLOATING CTA
   ========================================================= */
            #waFloat {
                position: fixed;
                right: 22px;
                bottom: 24px;
                z-index: 950;
                display: flex;
                align-items: center;
                gap: 0;
            }
            .wa-ring {
                position: absolute;
                inset: 0;
                border-radius: 50px;
                background: #25d366;
                opacity: 0.55;
                animation: waPulse 2.2s ease-out infinite;
            }
            @keyframes waPulse {
                0% {
                    transform: scale(1);
                    opacity: 0.55;
                }
                100% {
                    transform: scale(1.7);
                    opacity: 0;
                }
            }
            .wa-btn {
                position: relative;
                display: flex;
                align-items: center;
                gap: 10px;
                background: linear-gradient(135deg, #25d366, #1ebe57);
                color: #fff;
                text-decoration: none;
                padding: 15px 22px 15px 14px;
                border-radius: 50px;
                box-shadow:
                    0 10px 30px rgba(37, 211, 102, 0.55),
                    0 0 0 1px rgba(255, 255, 255, 0.2) inset;
                font-weight: 700;
                font-size: 14.5px;
                white-space: nowrap;
                transition:
                    transform 0.25s,
                    box-shadow 0.25s;
            }
            .wa-btn:hover {
                transform: translateY(-3px) scale(1.04);
                box-shadow:
                    0 16px 44px rgba(37, 211, 102, 0.7),
                    0 0 0 1px rgba(255, 255, 255, 0.25) inset;
            }
            .wa-btn-ico {
                width: 38px;
                height: 38px;
                background: #fff;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                flex-shrink: 0;
            }
            .wa-btn-ico svg {
                width: 22px;
                height: 22px;
                fill: #25d366;
            }
            .wa-btn-text {
                display: flex;
                flex-direction: column;
                line-height: 1.25;
            }
            .wa-btn-text .wa-top {
                font-size: 13.5px;
                font-weight: 800;
                letter-spacing: 0.2px;
            }
            .wa-btn-text .wa-sub {
                font-size: 10.5px;
                font-weight: 500;
                opacity: 0.92;
            }
            .wa-badge {
                position: absolute;
                top: -6px;
                left: -6px;
                background: #ffc107;
                color: #3d2b00;
                font-size: 9px;
                font-weight: 800;
                padding: 2px 7px;
                border-radius: 10px;
                box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
                animation: badgeBounce 1.8s ease-in-out infinite;
            }
            @keyframes badgeBounce {
                0%,
                100% {
                    transform: translateY(0);
                }
                50% {
                    transform: translateY(-3px);
                }
            }
            @media (max-width: 680px) {
                #waFloat {
                    right: 14px;
                    bottom: 16px;
                }
                .wa-btn {
                    padding: 13px 18px 13px 12px;
                }
                .wa-btn-text .wa-top {
                    font-size: 12.5px;
                }
                .wa-btn-text .wa-sub {
                    font-size: 9.5px;
                }
                .wa-btn-ico {
                    width: 34px;
                    height: 34px;
                }
                .wa-btn-ico svg {
                    width: 19px;
                    height: 19px;
                }
            }
            @media (max-width: 420px) {
                .wa-btn-text {
                    display: none;
                }
                .wa-btn {
                    padding: 0;
                    width: 58px;
                    height: 58px;
                    border-radius: 50%;
                    justify-content: center;
                }
                .wa-btn-ico {
                    width: 58px;
                    height: 58px;
                }
                .wa-btn-ico svg {
                    width: 30px;
                    height: 30px;
                }
            }


             /* =========================================================
   SOCIAL SIDEBAR
   ========================================================= */
           .demo-tab{
    position: fixed;
    left: -92px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);

    z-index: 99999;

    background: #25D366;
    color: #fff !important;

    text-decoration: none !important;

    display: flex;
    align-items: center;
    gap: 8px;

    padding: 12px 25px;

    border-radius: 8px 8px 0 0;

    font-size: 18px;
    font-weight: 600;
    border-radius: 0px 0px 20px 20px !important;

    box-shadow: 0 4px 15px rgba(0,0,0,0.25);

    transition: all 0.3s ease;
}

.demo-tab:hover{
    background: #1ebe5d;
    color: #fff !important;

}

.demo-tab i{
    font-size: 20px;
}

/* Mobile */
@media (max-width: 768px){
    .demo-tab{
        left: -92px;
        font-size: 14px;
        padding: 10px 20px;
    }

    .demo-tab i{
        font-size: 18px;
    }
}