
    /* ── LOCAL FONT ── */
    @font-face {
      font-family: 'Inter';
      src: url('Font/Inter Font Family/Inter-VariableFont_opsz,wght.ttf') format('truetype');
      font-weight: 100 900;
      font-style: normal;
      font-display: swap;
    }
    @font-face {
      font-family: 'Inter';
      src: url('Font/Inter Font Family/Inter-Italic-VariableFont_opsz,wght.ttf') format('truetype');
      font-weight: 100 900;
      font-style: italic;
      font-display: swap;
    }

    /* ── DESIGN TOKENS ── */
    :root {
      /* Color Palette */
      --dark:    #1f2b37;
      --green:   #77f1a1;
      --blue:    #5076f6;
      --white:   #ffffff;
      --light:   #f9f9f9;
      --muted:   #6b7a8d;
      --border:  #e4e7ed;
      --card:    #ffffff;

      /* Typography Scale (image 2) */
      /* H1  : 28px / 34px / Black  (900) */
      /* H2  : 22px / 28px / Bold   (700) */
      /* H3  : 18px / 24px / SemiBold (600) */
      /* Body Large: 16px / 24px / Regular (400) */
      /* Body      : 15px / 22px / Regular (400) */
      /* Body Small: 14px / 20px / Regular (400) */
      /* Label     : 13px / 18px / ExtraLight (200) */
      /* Caption   : 12px / 16px / ExtraLight (200) */
    }

    /* ── RESET ── */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', system-ui, sans-serif;
      font-size: 15px;
      line-height: 22px;
      font-weight: 400;
      color: var(--dark);
      background: var(--white);
      overflow-x: hidden;
    }
    a { text-decoration: none; color: inherit; }
    img { display: block; max-width: 100%; }

    /* ── TYPE SCALE ── */
    .t-h1     { font-size: 28px;  line-height: 34px;  font-weight: 900; }
    .t-h2     { font-size: 22px;  line-height: 28px;  font-weight: 700; }
    .t-h3     { font-size: 18px;  line-height: 24px;  font-weight: 600; }
    .t-body-l { font-size: 16px;  line-height: 24px;  font-weight: 400; }
    .t-body   { font-size: 15px;  line-height: 22px;  font-weight: 400; }
    .t-body-s { font-size: 14px;  line-height: 20px;  font-weight: 400; }
    .t-label  { font-size: 13px;  line-height: 18px;  font-weight: 200; }
    .t-caption{ font-size: 12px;  line-height: 16px;  font-weight: 200; }

    /* ── NAV ── */
    nav {
      position: sticky; top: 0; z-index: 100;
      background: var(--dark);
      padding: 0 5vw;
      height: 64px;
      display: flex; align-items: center; justify-content: space-between;
      gap: 1rem;
    }
    .nav-logo img { height: 50px; object-fit: contain; }
    .nav-links {
      display: flex; align-items: center; gap: 2px;
      list-style: none;
    }
    .nav-links a {
      font-size: 14px; font-weight: 400;
      color: rgba(255,255,255,0.65);
      padding: 8px 14px;
      border-radius: 8px;
      transition: all .2s;
    }
    .nav-links a:hover { color: #fff; background: rgba(255,255,255,0.08); }
    .nav-right { display: flex; align-items: center; gap: 12px; }
    .nav-indicator {
      width: 10px; height: 10px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 10px rgba(119,241,161,.7);
    }
    .nav-cta {
      background: var(--blue); color: #fff;
      padding: 9px 20px; border-radius: 8px;
      font-size: 14px; font-weight: 600;
      transition: all .2s;
    }
    .nav-cta:hover { background: #3d63f5; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(80,118,246,.4); }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
    .hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }

    /* ── HERO ── */
    .hero {
      background: var(--dark);
      padding: 72px 5vw 64px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3.5rem;
      align-items: center;
      position: relative;
      overflow: hidden;
      min-height: calc(100vh - 64px);
    }
    .hero::before {
      content: '';
      position: absolute; top: -180px; right: -120px;
      width: 560px; height: 560px;
      background: radial-gradient(circle, rgba(80,118,246,.16) 0%, transparent 65%);
      pointer-events: none;
    }
    .hero::after {
      content: '';
      position: absolute; bottom: -80px; left: 30%;
      width: 360px; height: 360px;
      background: radial-gradient(circle, rgba(119,241,161,.07) 0%, transparent 65%);
      pointer-events: none;
    }
    .hero-left { position: relative; z-index: 1; }

    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(119,241,161,.1);
      border: 1px solid rgba(119,241,161,.25);
      padding: 6px 14px; border-radius: 100px;
      font-size: 13px; font-weight: 500; color: var(--green);
      margin-bottom: 24px;
    }
    .hero-badge::before {
      content: ''; width: 6px; height: 6px;
      border-radius: 50%; background: var(--green);
    }

    .hero-h1 {
      font-size: clamp(34px, 4.2vw, 54px);
      line-height: 1.12;
      font-weight: 900;
      color: #fff;
      letter-spacing: -0.025em;
      margin-bottom: 20px;
    }
    .hero-h1 .accent { color: var(--green); }

    .hero-desc {
      font-size: 16px; line-height: 26px;
      color: rgba(255,255,255,.58);
      max-width: 460px;
      margin-bottom: 36px;
    }

    .hero-actions {
      display: flex; gap: 12px; flex-wrap: wrap;
      margin-bottom: 40px;
    }
    .btn-primary {
      background: var(--blue); color: #fff;
      padding: 14px 28px; border-radius: 10px;
      font-size: 15px; font-weight: 600;
      transition: all .2s;
      display: inline-flex; align-items: center; gap: 8px;
    }
    .btn-primary:hover { background: #3d63f5; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(80,118,246,.4); }
    .btn-outline {
      background: transparent; color: #fff;
      border: 1px solid rgba(255,255,255,.25);
      padding: 14px 28px; border-radius: 10px;
      font-size: 15px; font-weight: 500;
      transition: all .2s;
      display: inline-flex; align-items: center; gap: 8px;
    }
    .btn-outline:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.45); }

    /* Feature cards inside hero */
    .hero-features {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 10px; margin-bottom: 20px;
    }
    .hero-feat {
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 12px; padding: 14px;
    }
    .feat-icon {
      width: 34px; height: 34px; border-radius: 8px;
      background: rgba(80,118,246,.2);
      display: flex; align-items: center; justify-content: center;
      font-size: 15px; margin-bottom: 9px;
    }
    .feat-icon.g { background: rgba(119,241,161,.15); }
    .feat-icon.t { background: rgba(119,241,161,.12); }
    .hero-feat h4 {
      font-size: 13px; font-weight: 600; color: #fff;
      margin-bottom: 3px;
    }
    .hero-feat p { font-size: 12px; line-height: 16px; color: rgba(255,255,255,.4); font-weight: 200; }

    .hero-caption { font-size: 12px; line-height: 16px; color: rgba(255,255,255,.3); font-weight: 200; }

    /* ── PHONE MOCKUP ── */
    .hero-right {
      display: flex; align-items: center; justify-content: center;
      position: relative; z-index: 1;
    }
    .phone-wrap { position: relative; }
    .phone-shell {
      width: 280px;
      background: #141e28;
      border-radius: 38px;
      border: 1.5px solid rgba(255,255,255,.13);
      box-shadow: 0 40px 80px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.04);
      overflow: hidden;
      aspect-ratio: 9/19;
    }
    .phone-inner {
      padding: 22px 14px 14px;
      background: linear-gradient(170deg,#1a2535 0%,#1f2b37 55%,#151f2a 100%);
      height: 100%;
      display: flex; flex-direction: column; gap: 7px;
    }
    .p-topbar {
      display: flex; align-items: center; justify-content: space-between;
      margin-bottom: 2px;
    }
    .p-greet h5 { font-size: 11px; font-weight: 600; color: #fff; }
    .p-greet p  { font-size: 8.5px; color: rgba(255,255,255,.4); font-weight: 200; }
    .p-avatar {
      width: 26px; height: 26px; border-radius: 50%;
      background: linear-gradient(135deg, var(--blue), var(--green));
      display: flex; align-items: center; justify-content: center;
      font-size: 9px; font-weight: 700; color: #fff;
    }
    .p-section-lbl { font-size: 8px; color: rgba(255,255,255,.3); font-weight: 200; }
    .p-card {
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 10px; padding: 9px 11px;
    }
    .p-card-lbl { font-size: 7.5px; color: rgba(255,255,255,.4); font-weight: 200; margin-bottom: 3px; }
    .p-card-val { font-size: 20px; font-weight: 800; color: var(--green); line-height: 1; }
    .p-card-sub { font-size: 7.5px; color: rgba(255,255,255,.3); margin-top: 2px; }
    .p-row { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
    .p-mini {
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 10px; padding: 9px;
    }
    .p-mini-lbl { font-size: 7px; color: rgba(255,255,255,.4); font-weight: 200; margin-bottom: 2px; }
    .p-mini-val { font-size: 14px; font-weight: 800; color: #fff; }
    .p-chart {
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 10px; padding: 9px;
    }
    .p-chart-lbl { font-size: 7px; color: rgba(255,255,255,.35); font-weight: 200; margin-bottom: 7px; }
    .bars { display: flex; align-items: flex-end; gap: 3px; height: 32px; }
    .bar { flex: 1; border-radius: 2px; background: var(--blue); opacity: .55; }
    .bar.hi { opacity: 1; background: var(--green); }
    .p-rating {
      display: flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 10px; padding: 9px;
    }
    .p-rating-val { font-size: 14px; font-weight: 800; color: var(--green); }
    .p-rating-lbl { font-size: 7px; color: rgba(255,255,255,.35); font-weight: 200; }
    .stars { font-size: 8px; color: #fbbf24; }

    /* Floating callout cards */
    .callout {
      position: absolute;
      background: rgba(26,36,50,.96);
      border: 1px solid rgba(255,255,255,.13);
      border-radius: 12px; padding: 10px 14px;
      backdrop-filter: blur(12px);
      box-shadow: 0 8px 28px rgba(0,0,0,.35);
    }
    .callout-1 { right: -32px; top: 14%; width: 154px; }
    .callout-2 { left: -28px; bottom: 18%; width: 138px; }
    .c-title  { font-size: 10px; font-weight: 600; color: #fff; margin-bottom: 2px; }
    .c-sub    { font-size: 9px; color: rgba(255,255,255,.4); font-weight: 200; }
    .c-big    { font-size: 22px; font-weight: 900; color: var(--green); line-height: 1; margin: 4px 0; }

    /* ── STATS BAR ── */
    .stats-bar {
      background: var(--dark);
      border-top: 1px solid rgba(255,255,255,.08);
      padding: 28px 5vw;
      display: flex; justify-content: center; align-items: center;
      flex-wrap: wrap;
    }
    .s-item {
      display: flex; flex-direction: column; align-items: center;
      padding: 0 36px;
      border-right: 1px solid rgba(255,255,255,.1);
    }
    .s-item:last-child { border-right: none; }
    .s-val { font-size: 22px; font-weight: 900; color: #fff; line-height: 1.2; }
    .s-lbl { font-size: 13px; color: rgba(255,255,255,.4); font-weight: 200; margin-top: 3px; }

    /* ── TRUST STRIP ── */
    .trust-strip {
      background: #f4f6f9;
      padding: 28px 5vw;
      text-align: center;
    }
    .trust-strip .t-label { color: var(--muted); margin-bottom: 16px; }
    .trust-logos {
      display: flex; align-items: center; justify-content: center;
      gap: 40px; flex-wrap: wrap;
    }
    .trust-logos span {
      font-size: 14px; font-weight: 700;
      color: #b8bfd0; letter-spacing: .08em; text-transform: uppercase;
    }

    /* ── SECTION BASE ── */
    .section { padding: 80px 5vw; }
    .section.alt { background: var(--light); }
    .eyebrow {
      font-size: 13px; font-weight: 600;
      color: var(--blue); letter-spacing: .08em;
      text-transform: uppercase; margin-bottom: 10px;
    }
    .sec-h2 {
      font-size: 28px; line-height: 34px; font-weight: 900;
      color: var(--dark); margin-bottom: 12px;
    }
    .sec-desc {
      font-size: 16px; line-height: 24px;
      color: var(--muted); max-width: 520px;
    }
    .sec-head { margin-bottom: 48px; }

    /* ── PRODUCTS ── */
    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
      gap: 20px;
    }
    .prod-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      display: block; color: inherit;
      transition: all .3s ease;
    }
    .prod-card:hover { transform: translateY(-5px); box-shadow: 0 18px 48px rgba(31,43,55,.13); border-color: var(--blue); }
    .prod-img { height: 200px; overflow: hidden; background: var(--light); display: flex; align-items: center; justify-content: center; }
    .prod-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
    .prod-card:hover .prod-img img { transform: scale(1.04); }
    .prod-body { padding: 24px; }
    .prod-eye {
      font-size: 12px; font-weight: 600; color: var(--blue);
      letter-spacing: .08em; text-transform: uppercase;
      margin-bottom: 8px;
    }
    .prod-name { font-size: 18px; line-height: 24px; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
    .prod-desc { font-size: 14px; line-height: 20px; color: var(--muted); margin-bottom: 16px; }
    .prod-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
    .prod-tags span {
      font-size: 12px; font-weight: 200; color: var(--muted);
      background: var(--light); border: 1px solid var(--border);
      padding: 4px 11px; border-radius: 100px;
    }
    .prod-link {
      font-size: 14px; font-weight: 600; color: var(--blue);
      display: inline-flex; align-items: center; gap: 6px;
      transition: gap .2s;
    }
    .prod-card:hover .prod-link { gap: 10px; }

    /* ── PROCESS ── */
    .process-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
      gap: 20px; margin-top: 48px;
    }
    .proc-step {
      background: var(--card); border: 1px solid var(--border);
      border-radius: 16px; padding: 32px;
      transition: all .3s;
    }
    .proc-step:hover { box-shadow: 0 12px 36px rgba(31,43,55,.1); transform: translateY(-4px); border-color: var(--blue); }
    .step-num {
      width: 44px; height: 44px; border-radius: 10px;
      background: rgba(80,118,246,.1); color: var(--blue);
      font-weight: 900; font-size: 18px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 20px;
    }
    .proc-step h3 { font-size: 18px; line-height: 24px; font-weight: 600; color: var(--dark); margin-bottom: 10px; }
    .proc-step p  { font-size: 14px; line-height: 20px; color: var(--muted); }

    /* ── ADVANTAGES ── */
    .adv-grid {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr));
      gap: 16px; margin-top: 48px;
    }
    .adv-card {
      background: var(--card); border: 1px solid var(--border);
      border-radius: 16px; padding: 24px;
      transition: all .3s;
    }
    .adv-card:hover { box-shadow: 0 8px 24px rgba(31,43,55,.09); border-color: var(--blue); transform: translateY(-3px); }
    .adv-icon {
      width: 44px; height: 44px; border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 20px; margin-bottom: 14px;
    }
    .adv-icon.b { background: rgba(80,118,246,.1); }
    .adv-icon.g { background: rgba(119,241,161,.15); }
    .adv-card h3 { font-size: 15px; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
    .adv-card p  { font-size: 14px; line-height: 20px; color: var(--muted); }

    /* ── ABOUT ── */
    .about-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
      align-items: center; margin-top: 48px;
    }
    .about-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .about-metric {
      background: var(--dark); border-radius: 16px;
      padding: 28px 24px; text-align: center;
    }
    .about-metric .mv {
      font-size: 34px; font-weight: 900; color: var(--green);
      line-height: 1; display: block;
    }
    .about-metric .ml {
      font-size: 13px; color: rgba(255,255,255,.45);
      font-weight: 200; margin-top: 6px; display: block;
    }
    .about-text p { font-size: 15px; line-height: 22px; color: var(--muted); margin-bottom: 16px; }

    /* ── REFERENCES ── */
    .refs-wrap { padding: 72px 5vw; background: var(--light); border-top: 1px solid var(--border); }
    .refs-wrap img { max-width: 100%; border-radius: 14px; margin-top: 40px; }

    /* ── CONTACT ── */
    .contact-grid {
      display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px;
      margin-top: 48px; align-items: start;
    }
    .contact-info h3 { font-size: 18px; line-height: 24px; font-weight: 600; color: var(--dark); margin-bottom: 28px; }
    .c-item { margin-bottom: 24px; }
    .c-item strong {
      display: block; font-size: 12px; text-transform: uppercase;
      letter-spacing: .1em; color: var(--muted); font-weight: 200; margin-bottom: 5px;
    }
    .c-item span { font-size: 15px; line-height: 22px; color: var(--dark); }
    .form-card {
      background: var(--card); border: 1px solid var(--border);
      border-radius: 20px; padding: 36px;
      box-shadow: 0 4px 24px rgba(31,43,55,.06);
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .form-group { margin-bottom: 16px; }
    .form-group label {
      display: block; font-size: 13px; font-weight: 200;
      color: var(--muted); margin-bottom: 6px; letter-spacing: .02em;
    }
    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%; padding: 11px 14px;
      border: 1px solid var(--border); border-radius: 10px;
      font-size: 15px; font-family: 'Inter', sans-serif;
      background: var(--light); color: var(--dark);
      outline: none; transition: border-color .2s, box-shadow .2s;
    }
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      border-color: var(--blue); background: #fff;
      box-shadow: 0 0 0 3px rgba(80,118,246,.1);
    }
    .form-submit {
      width: 100%; background: var(--blue); color: #fff;
      border: none; padding: 14px 28px; border-radius: 10px;
      font-size: 15px; font-weight: 600; cursor: pointer;
      transition: all .2s; font-family: 'Inter', sans-serif;
    }
    .form-submit:hover { background: #3d63f5; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(80,118,246,.35); }

    /* ── FOOTER ── */
    footer {
      background: var(--dark); color: rgba(255,255,255,.55);
      padding: 56px 5vw 32px;
    }
    .footer-top {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(255,255,255,.08);
      margin-bottom: 28px;
    }
    .footer-brand img {
	height: 40px;
	/* [disabled]filter: brightness(0) invert(1) opacity(.9); */
	margin-bottom: 16px;
}
    .footer-brand p { font-size: 14px; line-height: 20px; max-width: 260px; }
    .footer-col h4 {
      color: #fff; font-size: 13px; font-weight: 600;
      letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul a { font-size: 14px; color: rgba(255,255,255,.42); transition: color .2s; }
    .footer-col ul a:hover { color: rgba(255,255,255,.9); }
    .footer-bottom {
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 12px;
      font-size: 13px; font-weight: 200;
    }
    .footer-bottom a { color: rgba(255,255,255,.32); transition: color .2s; }
    .footer-bottom a:hover { color: rgba(255,255,255,.75); }

    /* ── REVEAL ── */
    .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
    .reveal.visible { opacity: 1; transform: none; }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .hero { grid-template-columns: 1fr; min-height: auto; }
      .hero-right { order: -1; }
      .phone-shell { width: 240px; }
      .callout-1 { right: -16px; }
      .callout-2 { left: -12px; }
      .footer-top { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
      .form-row { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr 1fr; }
      .s-item { padding: 0 20px; }
      .hero-features { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 540px) {
      .products-grid { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr; }
      .hero-features { grid-template-columns: 1fr; }
      .about-metrics { grid-template-columns: 1fr 1fr; }
      .phone-shell { width: 200px; }
      .callout { display: none; }
    }
  