:root {
        --navy: #0a1628;
        --blue: #1455f6;
        --cyan: #00d4ff;
        --off: #f4f7ff;
        --gray: #6b7a9b;
        --bd: rgba(20, 85, 246, 0.12);
        --sh: 0 8px 40px rgba(20, 85, 246, 0.1);
        --green: #10b981;
      }
      *,
      *::before,
      *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        font-family: "DM Sans", sans-serif;
        background: var(--off);
        color: var(--navy);
        overflow-x: hidden;
      }
      a {
        text-decoration: none;
      }
      .page{display:block;animation:fi .32s ease}
      
      @keyframes fi {
        from {
          opacity: 0;
          transform: translateY(8px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      /* HEADER */
      header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 999;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(14px);
        border-bottom: 1px solid var(--bd);
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 70px;
        padding: 0 4%;
        transition: box-shadow 0.3s;
      }
      header.sc {
        box-shadow: 0 4px 24px rgba(10, 22, 40, 0.1);
      }
      .logo {
        display: flex;
        align-items: center;
        gap: 10px;
        cursor: pointer;
        text-decoration: none;
        border: none;
        background: none;
        font-family: inherit;
      }
      .lbox {
        width: 42px;
        height: 42px;
        border-radius: 10px;
        background: linear-gradient(135deg, var(--blue), var(--cyan));
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: "Syne", sans-serif;
        font-weight: 800;
        font-size: 15px;
        color: #fff;
        flex-shrink: 0;
      }
      .lname {
        font-family: "Syne", sans-serif;
        font-weight: 800;
        font-size: 14.5px;
        color: var(--navy);
        line-height: 1.1;
      }
      .lname span {
        color: var(--blue);
      }
      .lsub {
        font-size: 9px;
        color: var(--gray);
      }
      nav {
        display: flex;
        align-items: center;
        gap: 2px;
      }
      .ni {
        position: relative;
      }
      .nl {
        font-size: 13px;
        font-weight: 500;
        color: var(--navy);
        padding: 7px 11px;
        border-radius: 7px;
        background: none;
        border: none;
        text-decoration: none;
        font-family: inherit;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 4px;
        transition: all 0.2s;
      }
      .nl:hover,
      .nl.active {
        background: var(--off);
        color: var(--blue);
      }
      .nl svg {
        width: 9px;
        height: 9px;
        transition: transform 0.2s;
      }
      .ni:hover .nl svg {
        transform: rotate(180deg);
      }
      .dd {
        display: none;
        position: absolute;
        top: calc(100%+6px);
        left: 0;
        background: #fff;
        border: 1px solid var(--bd);
        border-radius: 12px;
        box-shadow: var(--sh);
        min-width: 230px;
        padding: 6px 0;
        z-index: 200;
      }
      .ni:hover .dd {
        display: block;
      }
      .dd a {
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
        padding: 8px 14px;
        font-size: 13px;
        color: var(--navy);
        background: none;
        border: none;
        font-family: inherit;
        cursor: pointer;
        text-align: left;
        transition: background 0.15s;
        text-decoration: none;
      }
      .dd a:hover {
        background: var(--off);
        color: var(--blue);
      }
      .di {
        font-size: 15px;
        width: 22px;
        text-align: center;
      }
      .di i {
        color: inherit;
      }
      .di .fab.fa-whatsapp {
        color: #25d366;
      }
      .di .fab.fa-facebook {
        color: #1877f2;
      }
      .di .fab.fa-instagram {
        color: #e4405f;
      }
      .di .fab.fa-youtube {
        color: #ff0000;
      }
      .di .fab.fa-linkedin {
        color: #0077b5;
      }
      .di .fas.fa-sms {
        color: #ff6600;
      }
      .di .fas.fa-phone {
        color: #2196f3;
      }
      .di .fas.fa-robot {
        color: #9c27b0;
      }
      .di .fas.fa-microphone {
        color: #f44336;
      }
      .di .fas.fa-comment-dots {
        color: #4caf50;
      }
      .di .fas.fa-lightbulb {
        color: #ffc107;
      }
      .di .fas.fa-shopping-cart {
        color: #ff9800;
      }
      .di .fas.fa-heartbeat {
        color: #e91e63;
      }
      .di .fas.fa-home {
        color: #795548;
      }
      .di .fas.fa-university {
        color: #607d8b;
      }
      .di .fas.fa-graduation-cap {
        color: #3f51b5;
      }
      .di .fas.fa-credit-card {
        color: #009688;
      }
      .ncta {
        background: var(--blue) !important;
        color: #fff !important;
        border-radius: 8px !important;
        font-weight: 600 !important;
        margin-left: 6px;
        box-shadow: 0 4px 14px rgba(20, 85, 246, 0.3);
      }
      .ncta:hover {
        background: #0d3fd4 !important;
        transform: translateY(-1px) !important;
      }
      .hbg {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 8px;
        background: none;
        border: none;
        position: relative;
        transition: transform 0.3s ease;
      }
      .hbg:hover {
        transform: scale(1.05);
      }
      .hbg:active {
        transform: scale(0.95);
      }
      .hbg span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--navy);
        border-radius: 2px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        transform-origin: center;
      }
      .hbg.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
      }
      .hbg.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
      }
      .hbg.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
      }
      .mob {
        position: fixed;
        inset: 0;
        top: 70px;
        background: rgba(10, 22, 40, 0.97);
        z-index: 998;
        flex-direction: column;
        padding: 18px 4%;
       
        overflow-y: auto;
        opacity: 0;
        transform: translateX(100%);
        transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.3s;
        visibility: hidden;
        backdrop-filter: blur(10px);
        pointer-events: none;
      }
      .mob.open {
        opacity: 1;
        transform: translateX(0);
        display: flex;
        justify-content: flex-start;
            gap: 24px;
        transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0s;
        visibility: visible;
        pointer-events: auto;
      }
      .mob button {
        color: #fff;
        font-size: 15px;
        font-weight: 600;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        background: none;
        border-left: none;
        border-right: none;
        border-top: none;
        font-family: inherit;
        cursor: pointer;
        text-align: left;
      }
      .mob .mcta {
        background: var(--blue) !important;
        border-radius: 8px !important;
        border: none !important;
        padding: 13px !important;
        text-align: center !important;
        margin-top: 10px;
        color: #fff;
        font-size: 14px;
        font-weight: 700;
      }
      .mob i {
        color: inherit;
        margin-right: 8px;
      }
      .mob .fas.fa-home {
        color: #795548;
      }
      .mob .fas.fa-info-circle {
        color: #2196f3;
      }
      .mob .fab.fa-whatsapp {
        color: #25d366;
      }
      .mob .fas.fa-sms {
        color: #ff6600;
      }
      .mob .fas.fa-phone {
        color: #2196f3;
      }
      .mob .fas.fa-robot {
        color: #9c27b0;
      }
      .mob .fas.fa-microphone {
        color: #f44336;
      }
      .mob .fas.fa-comment-dots {
        color: #4caf50;
      }
      .mob .fas.fa-lightbulb {
        color: #ffc107;
      }
      .mob .fas.fa-shopping-cart {
        color: #ff9800;
      }
      .mob .fas.fa-heartbeat {
        color: #e91e63;
      }
      .mob .fas.fa-university {
        color: #607d8b;
      }
      .mob .fas.fa-graduation-cap {
        color: #3f51b5;
      }
      .mob .fas.fa-credit-card {
        color: #009688;
      }
      .mob .fas.fa-chart-line {
        color: #ff9800;
      }
      .mob .fas.fa-handshake {
        color: #4caf50;
      }
      .hci i {
        color: inherit;
      }
      .hci .fas.fa-comments {
        color: #25d366;
      }
      .hci .fas.fa-robot {
        color: #9c27b0;
      }
      .hci .fas.fa-chart-line {
        color: #ff9800;
      }
      .pfii i {
        color: inherit;
      }
      .pfii .fas.fa-bullseye {
        color: #ffc107;
      }
      .pfii .fas.fa-sync-alt {
        color: #2196f3;
      }
      .pfii .fas.fa-inbox {
        color: #ff9800;
      }
      .icn i {
        color: inherit;
      }
      .icn .fas.fa-shopping-cart {
        color: #ff9800;
      }
      .icn .fas.fa-heartbeat {
        color: #e91e63;
      }
      .icn .fas.fa-home {
        color: #795548;
      }
      .icn .fas.fa-university {
        color: #607d8b;
      }
      .icn .fas.fa-graduation-cap {
        color: #3f51b5;
      }
      .icn .fas.fa-credit-card {
        color: #009688;
      }
      .faddr i {
        color: inherit;
        margin-right: 8px;
      }
      .faddr .fas.fa-map-marker-alt {
        color: #e91e63;
      }
      .faddr .fas.fa-phone {
        color: #2196f3;
      }
      .faddr .fas.fa-envelope {
        color: #2196f3;
      }
      .aval-icon i {
        color: inherit;
      }
      .aval-icon .fas.fa-rocket {
        color: #FF6B35;
      }
      .aval-icon .fas.fa-handshake {
        color: #4CAF50;
      }
      .aval-icon .fas.fa-lock {
        color: #2196F3;
      }
      .aval-icon .fas.fa-globe {
        color: #00BCD4;
      }
      .aval-icon .fas.fa-lightbulb {
        color: #FFC107;
      }
      .aval-icon .fas.fa-bolt {
        color: #FFC107;
      }
      .ptico i {
        color: inherit;
      }
      .ptico .fas.fa-building {
        color: #FF9800;
      }
      .ptico .fas.fa-link {
        color: #2196F3;
      }
      .ptbadge i {
        color: inherit;
        margin-right: 6px;
      }
      .ptbadge .fas.fa-star {
        color: #FFC107;
      }
      .ptbadge .fas.fa-link{color:#2196F3}
      .citco i{color:inherit}
      .citco .fas.fa-building{color:#FF9800}
      .citco .fas.fa-map-marker-alt{color:#E91E63}
      .citco .fas.fa-phone{color:#2196F3}
      .citco .fas.fa-envelope{color:#2196F3}
      .citco .fab.fa-whatsapp{color:#25D366}
      .citco .fas.fa-globe{color:#00BCD4}
.sico i{color:inherit}
.sico .fas.fa-shopping-cart{color:#FF9800}
.sico .fas.fa-heartbeat{color:#E91E63}
.sico .fas.fa-home{color:#795548}
.sico .fas.fa-university{color:#607D8B}
.sico .fas.fa-graduation-cap{color:#3F51B5}
.sico .fas.fa-credit-card{color:#009688}
.pbi i{color:inherit}
.pbi .fas.fa-clock{color:#FF9800}
.pbi .fas.fa-chart-line{color:#F44336}
.pbi .fas.fa-building{color:#795548}
.pbi .fas.fa-calendar{color:#2196F3}
.pbi .fas.fa-comments{color:#25D366}
.pbi .fas.fa-sync-alt{color:#2196F3}
.pbadge i{color:inherit;margin-right:6px}
.pbadge .fas.fa-shopping-cart{color:#FF9800}
.pbadge .fas.fa-heartbeat{color:#E91E63}
.pbadge .fas.fa-home{color:#795548}
.pbadge .fas.fa-university{color:#607D8B}
.pbadge .fas.fa-graduation-cap{color:#3F51B5}
.pbadge .fas.fa-credit-card{color:#009688}
.waav i{color:inherit}
.waav .fas.fa-heartbeat{color:#E91E63}
.waav .fas.fa-home{color:#795548}
.waav .fas.fa-university{color:#607D8B}
.waav .fas.fa-graduation-cap{color:#3F51B5}
.waav .fas.fa-credit-card{color:#009688}
.wbtn i{color:inherit;margin-right:4px}
.wbtn .fas.fa-credit-card{color:#009688}
.wbtn .fas.fa-exclamation-triangle{color:#FF5722}
.wbtn .fas.fa-clipboard-list{color:#2196F3}
.csc-ind i{color:inherit;margin-right:4px}
.csc-ind .fas.fa-shopping-cart{color:#FF9800}
.csc-ind .fas.fa-heartbeat{color:#E91E63}
.csc-ind .fas.fa-home{color:#795548}
.csc-ind .fas.fa-university{color:#607D8B}
.csc-ind .fas.fa-graduation-cap{color:#3F51B5}
.csc-ind .fas.fa-credit-card{color:#009688}
.fcdi i{color:inherit}
.fcdi .fas.fa-shopping-cart{color:#FF9800}
.fcdi .fas.fa-sms{color:#FF6600}
.bp i{color:inherit;margin-right:4px}
.bp .fas.fa-shopping-cart{color:#FF9800}
.bp .fas.fa-heartbeat{color:#E91E63}
.bp .fas.fa-home{color:#795548}
      .mob-dd {
        display: flex;
        flex-direction: column;
      }
      .mob-dd > button {
        display: flex;
        align-items: center;
        justify-content: space-between;
      }
      .mob-arrow {
        width: 9px;
        height: 9px;
        transition: transform 0.3s;
      }
      .mob-dd.open .mob-arrow {
        transform: rotate(180deg);
      }
      .mob a{
        text-decoration: none;
        color: white;
      }
      .mob-dd-content {
        display: grid;
    gap: 11px;
        max-height: 0;
        overflow: hidden;
        transition:
          max-height 0.3s ease-out,
          opacity 0.2s ease-out;
        opacity: 0;
      }
      .mob-dd.open .mob-dd-content {
        max-height: 500px;
        opacity: 1;
      }
      .mob-dd-content a {
        padding-left: 16px;
        font-size: 14px;
        text-decoration: none;
      }
      /* COMMON */
      section {
        padding: 76px 4%;
      }
      .wrap {
        max-width: 1160px;
        margin: 0 auto;
      }
      .tag {
        display: inline-block;
        background: rgba(20, 85, 246, 0.08);
        color: var(--blue);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 1.4px;
        text-transform: uppercase;
        padding: 5px 13px;
        border-radius: 100px;
        margin-bottom: 12px;
        border: 1px solid rgba(20, 85, 246, 0.14);
      }
      .h2 {
        font-family: "Syne", sans-serif;
        font-size: clamp(25px, 3.6vw, 40px);
        font-weight: 800;
        line-height: 1.15;
        margin-bottom: 12px;
      }
      .h2 em {
        font-style: normal;
        color: var(--blue);
      }
      .desc {
        font-size: 15px;
        line-height: 1.75;
        color: var(--gray);
        max-width: 530px;
      }
      .tc {
        text-align: center;
      }
      .tc .desc {
        margin: 0 auto;
      }
      .bp {
        background: var(--blue);
        color: #fff;
        padding: 11px 24px;
        border-radius: 9px;
        font-size: 14px;
        font-weight: 600;
        border: none;
        cursor: pointer;
        font-family: inherit;
        box-shadow: 0 4px 16px rgba(20, 85, 246, 0.3);
        transition: all 0.2s;
        text-decoration: none;
        display: inline-block;
      }
      .bp:hover {
        transform: translateY(-2px);
        box-shadow: 0 7px 22px rgba(20, 85, 246, 0.4);
      }
.bg{
    background: transparent;
    color: #1455f6;
    padding: 11px 24px;
    border-radius: 9px;
    font-size: 16px;
    font-weight: 600;
    border: 1.5px solid var(--bd);
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
}


      .bg:hover {
        border-color: var(--blue);
        color: var(--blue);
      }
      .bgs {
        background: transparent;
        color: rgba(255, 255, 255, 0.65);
        padding: 11px 24px;
        border-radius: 9px;
        font-size: 14px;
        font-weight: 500;
        border: 1.5px solid rgba(255, 255, 255, 0.2);
        cursor: pointer;
        font-family: inherit;
        transition: all 0.2s;
      }
      .bgs:hover {
        background: rgba(255, 255, 255, 0.1);
      }
    .bw {
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  color: var(--blue);
  padding: 6px 30px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(0, 0, 0, 0.06);
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
 

  box-shadow:
    0 4px 14px rgba(15, 23, 42, 0.08),
    0 2px 6px rgba(15, 23, 42, 0.05);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.bw:hover {
  transform: translateY(-2px);
  background: var(--blue);
  color: #fff;

  box-shadow:
    0 10px 22px rgba(37, 99, 235, 0.28),
    0 4px 10px rgba(37, 99, 235, 0.18);
}

.bw:active {
  transform: scale(0.97);
}

.bw:focus-visible {
  outline: 3px solid rgba(59, 130, 246, 0.35);
  outline-offset: 2px;
}
      .row {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        align-items: center;
      }
      /* BLOBS */
      .blob {
        position: absolute;
        border-radius: 50%;
        filter: blur(72px);
        opacity: 0.14;
        animation: fl 8s ease-in-out infinite;
        pointer-events: none;
      }
      @keyframes fl {
        0%,
        100% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(-22px);
        }
      }
      /* HERO */
      .hero {
        min-height: 100vh;
        background: var(--navy);
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 108px 4% 76px;
        position: relative;
        overflow: hidden;
      }
      .hgrid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 52px;
        align-items: center;
        max-width: 1160px;
        margin: 0 auto;
        width: 100%;
        position: relative;
        z-index: 1;
      }
      .htag {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        background: rgba(0, 212, 255, 0.11);
        border: 1px solid rgba(0, 212, 255, 0.22);
        color: var(--cyan);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        padding: 5px 12px;
        border-radius: 100px;
        margin-bottom: 18px;
      }
      .htag::before {
        content: "●";
        font-size: 7px;
        animation: pulse 1.5s infinite;
      }
      @keyframes pulse {
        0%,
        100% {
          opacity: 1;
        }
        50% {
          opacity: 0.3;
        }
      }
      .hero h1 {
        font-family: "Syne", sans-serif;
        font-size: clamp(32px, 4.6vw, 56px);
        font-weight: 800;
        line-height: 1.08;
        color: #fff;
        margin-bottom: 16px;
      }
      .hero h1 em {
        font-style: normal;
        color: var(--cyan);
      }
      .hero p {
        font-size: 15.5px;
        line-height: 1.75;
        color: rgba(255, 255, 255, 0.58);
        max-width: 460px;
        margin-bottom: 28px;
      }
      .hstats {
        display: flex;
        gap: 24px;
        margin-top: 36px;
        padding-top: 24px;
        border-top: 1px solid rgba(255, 255, 255, 0.09);
      }
      .hsn {
        font-family: "Syne", sans-serif;
        font-size: 24px;
        font-weight: 800;
        color: #fff;
      }
      .hsn span {
        color: var(--cyan);
      }
      .hsl {
        font-size: 10.5px;
        color: rgba(255, 255, 255, 0.4);
        margin-top: 2px;
      }
      .hcards {
        position: relative;
        width: 320px;
        height: 320px;
        margin: 0 auto;
      }
      .hc {
        position: absolute;
        border: 1px solid rgba(255, 255, 255, 0.11);
        border-radius: 16px;
        padding: 17px 19px;
        backdrop-filter: blur(10px);
        color: #fff;
        transition: 0.3s;
      }
      .hc:hover {
        transform: scale(1.03);
      }
      .hc1 {
        top: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.06);
      }
      .hc2 {
        top: 108px;
        left: 13px;
        right: -18px;
        background: rgba(20, 85, 246, 0.23);
        border-color: rgba(20, 85, 246, 0.36);
      }
      .hc3 {
        top: 216px;
        left: 0;
        right: 13px;
        background: rgba(0, 212, 255, 0.09);
        border-color: rgba(0, 212, 255, 0.22);
      }
      .hci {
        font-size: 18px;
        margin-bottom: 5px;
      }
      .hct {
        font-family: "Syne", sans-serif;
        font-size: 12.5px;
        font-weight: 700;
        margin-bottom: 2px;
      }
      .hcs {
        font-size: 10.5px;
        color: rgba(255, 255, 255, 0.46);
      }
      .hcn {
        font-family: "Syne", sans-serif;
        font-size: 21px;
        font-weight: 800;
        color: var(--cyan);
        margin-top: 4px;
      }
      /* LOGOS */
      .lbar {
        background: #fff;
        padding: 30px 4%;
        border-top: 1px solid var(--bd);
        border-bottom: 1px solid var(--bd);
      }
      .llab {
        text-align: center;
        font-size: 10.5px;
        color: var(--gray);
        letter-spacing: 0.9px;
        text-transform: uppercase;
        font-weight: 600;
        margin-bottom: 16px;
      }
      .lrow {
        display: flex;
        gap: 32px;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
      }
      .li {
        font-family: "Syne", sans-serif;
        font-weight: 700;
        font-size: 13px;
        color: #b5bdd0;
        cursor: default;
        transition: color 0.2s;
      }
      .li:hover {
        color: var(--blue);
      }
      /* PROD CARDS */
      .pgrid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
        margin-top: 44px;
      }
      .pc {
        background: #fff;
        border: 1px solid var(--bd);
        border-radius: 16px;
        padding: 26px 22px;
        transition: all 0.3s;
        position: relative;
        overflow: hidden;
        cursor: pointer;
      }
      .pc::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--blue), var(--cyan));
        transform: scaleX(0);
        transition: 0.3s;
        transform-origin: left;
      }
      .pc:hover {
        transform: translateY(-4px);
        box-shadow: var(--sh);
      }
      .pc:hover::before {
        transform: scaleX(1);
      }
      .pci {
        width: 46px;
        height: 46px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        margin-bottom: 13px;
      }
      .pci .fab.fa-whatsapp {
        color: #25d366;
      }
      .pci .fas.fa-sms {
        color: #ff6600;
      }
      .pci .fas.fa-phone {
        color: #2196f3;
      }
      .pci .fas.fa-robot {
        color: #9c27b0;
      }
      .pci .fas.fa-microphone {
        color: #f44336;
      }
      .pci .fas.fa-comment-dots {
        color: #4caf50;
      }
      .pc h3 {
        font-family: "Syne", sans-serif;
        font-size: 15px;
        font-weight: 700;
        margin-bottom: 7px;
      }
      .pc p {
        font-size: 13px;
        color: var(--gray);
        line-height: 1.65;
        margin-bottom: 12px;
      }
      .pcl {
        font-size: 12px;
        font-weight: 600;
        color: var(--blue);
        display: inline-flex;
        align-items: center;
        gap: 4px;
      }
      /* PLATFORM */
      .plat {
        background: var(--navy);
        color: #fff;
      }
      .plat .h2 {
        color: #fff;
      }
      .plat .desc {
        color: rgba(255, 255, 255, 0.5);
      }
      .plat .tag {
        background: rgba(0, 212, 255, 0.11);
        color: var(--cyan);
        border-color: rgba(0, 212, 255, 0.2);
      }
      .platg {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        align-items: center;
        margin-top: 48px;
      }
      .pfi {
        display: flex;
        gap: 12px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.07);
        border-radius: 12px;
        padding: 16px 18px;
        transition: 0.3s;
        margin-bottom: 12px;
      }
      .pfi:hover {
        background: rgba(20, 85, 246, 0.14);
        border-color: rgba(20, 85, 246, 0.28);
      }
      .pfii {
        font-size: 18px;
        flex-shrink: 0;
        margin-top: 1px;
      }
      .pfit {
        font-family: "Syne", sans-serif;
        font-size: 13px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 2px;
      }
      .pfid {
        font-size: 11.5px;
        color: rgba(255, 255, 255, 0.46);
        line-height: 1.55;
      }
      .dash {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.09);
        border-radius: 18px;
        padding: 24px;
      }
      .ddots {
        display: flex;
        gap: 5px;
        margin-bottom: 13px;
      }
      .ddot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
      }
      .dm {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        padding: 10px 13px;
        margin-bottom: 7px;
      }
      .dl {
        font-size: 11.5px;
        color: rgba(255, 255, 255, 0.5);
      }
      .dv {
        font-family: "Syne", sans-serif;
        font-size: 15.5px;
        font-weight: 700;
        color: var(--cyan);
      }
      .br {
        margin: 13px 0;
      }
      .brl {
        display: flex;
        justify-content: space-between;
        font-size: 10.5px;
        color: rgba(255, 255, 255, 0.36);
        margin-bottom: 4px;
      }
      .brt {
        height: 6px;
        background: rgba(255, 255, 255, 0.07);
        border-radius: 100px;
        overflow: hidden;
      }
      .brf {
        height: 100%;
        border-radius: 100px;
      }
      /* IND GRID (home) */
      .igrid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        margin-top: 44px;
      }
      .ic {
        background: var(--off);
        border: 1px solid var(--bd);
        border-radius: 13px;
        padding: 22px 18px;
        text-align: center;
        transition: 0.3s;
        cursor: pointer;
      }
      .ic:hover {
        background: var(--blue);
        border-color: var(--blue);
        transform: translateY(-3px);
      }
      .ic:hover .icn,
      .ic:hover .ict {
        color: #fff;
      }
      .ic:hover .icd {
        color: rgba(255, 255, 255, 0.7);
      }
      .icn {
        font-size: 26px;
        margin-bottom: 8px;
        display: block;
        transition: 0.3s;
      }
      .ict {
        font-family: "Syne", sans-serif;
        font-size: 13.5px;
        font-weight: 700;
        margin-bottom: 4px;
        transition: 0.3s;
      }
      .icd {
        font-size: 12px;
        color: var(--gray);
        line-height: 1.5;
        transition: 0.3s;
      }
      /* CTA */
      .gcta {
        background: linear-gradient(135deg, var(--blue), #0d3fd4 55%, #1a1463);
        text-align: center;
        padding: 80px 4%;
        color: #fff;
        position: relative;
        overflow: hidden;
      }
      .gcta::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg width=\'60\' height=\'60\' viewBox=\'0 0 60 60\' xmlns=\'http://www.w3.org/2000/svg\'%3E%3Cpath d=\'M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z\' fill=\'%23fff\' fill-opacity=\'.03\'/%3E%3C/svg%3E");
      }
      .gcta h2 {
        font-family: "Syne", sans-serif;
        font-size: clamp(22px, 3.6vw, 40px);
        font-weight: 800;
        margin-bottom: 12px;
        position: relative;
      }
      .gcta p {
        font-size: 15px;
        color: rgba(255, 255, 255, 0.7);
        max-width: 460px;
        margin: 0 auto 28px;
        line-height: 1.7;
        position: relative;
      }
      .gbtns {
        display: flex;
        gap: 11px;
        justify-content: center;
        flex-wrap: wrap;
        position: relative;
      }
      /* FOOTER */
      footer {
        background: #f7f9fe;
        color: var(--navy);
        padding: 56px 4% 30px;
      }
      .fg {
        display: grid;
        grid-template-columns: 1.8fr 1fr 1fr 1fr;
        gap: 38px;
        margin-bottom: 44px;
      }
      .fb p {
        font-size: 12.5px;
        line-height: 1.75;
        color: var(--gray);
        max-width: 240px;
        margin: 12px 0 16px;
      }
      .faddr {
        font-size: 12px;
        color: var(--gray);
        line-height: 1.8;
        margin-bottom: 14px;
      }
      .faddr a {
        color: var(--blue);
        text-decoration: none;
      }
      .fsoc {
        display: flex;
        gap: 7px;
      }
      .fs {
        width: 30px;
        height: 30px;
        border-radius: 7px;
        background: var(--off);
        border: 1px solid var(--bd);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 11.5px;
        text-decoration: none;
        color: var(--gray);
        transition: 0.2s;
      }
      .fs:hover {
        background: var(--blue);
        border-color: var(--blue);
        color: #fff;
      }
      .fc h4 {
        font-family: "Syne", sans-serif;
        font-size: 11px;
        font-weight: 700;
        color: var(--navy);
        letter-spacing: 0.8px;
        text-transform: uppercase;
        margin-bottom: 13px;
      }
      .fc a,
      .fc button {
        display: block;
        font-size: 12.5px;
        color: var(--gray);
        text-decoration: none;
        margin-bottom: 8px;
        transition: color 0.2s;
        cursor: pointer;
        background: none;
        border: none;
        font-family: inherit;
        text-align: left;
        padding: 0;
      }
      .fc a:hover,
      .fc button:hover {
        color: var(--blue);
      }
      .fbtm {
        border-top: 1px solid var(--bd);
        padding-top: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 9px;
        font-size: 11.5px;
        color: var(--gray);
      }
      .fbtm a {
        color: var(--gray);
        text-decoration: none;
        transition: color 0.2s;
      }
      .fbtm a:hover {
        color: var(--blue);
      }
      .flinks {
        display: flex;
        gap: 14px;
      }
      /* PRODUCT PAGE HERO */
      .phero {
        padding: 108px 4% 66px;
        background: var(--navy);
        position: relative;
        overflow: hidden;
      }
      .phg {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 52px;
        align-items: center;
        max-width: 1160px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
      }
      .phero h1 {
        font-family: "Syne", sans-serif;
        font-size: clamp(28px, 4vw, 48px);
        font-weight: 800;
        color: #fff;
        line-height: 1.1;
        margin-bottom: 13px;
      }
      .phero h1 em {
        font-style: normal;
        color: var(--cyan);
      }
      .phero p {
        font-size: 15px;
        color: rgba(255, 255, 255, 0.56);
        line-height: 1.75;
        margin-bottom: 24px;
        max-width: 440px;
      }
      .pbadge {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        background: rgba(0, 212, 255, 0.11);
        border: 1px solid rgba(0, 212, 255, 0.22);
        color: var(--cyan);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        padding: 5px 11px;
        border-radius: 100px;
        margin-bottom: 16px;
      }
      .back {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: rgba(255, 255, 255, 0.52);
        font-size: 12px;
        padding: 6px 13px;
        border-radius: 7px;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.1);
        cursor: pointer;
        transition: 0.2s;
        margin-bottom: 18px;
        font-family: inherit;
      }
      .back:hover {
        background: rgba(255, 255, 255, 0.11);
        color: #fff;
      }
      /* DEMO BOX */
      .dbox {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.11);
        border-radius: 17px;
        overflow: hidden;
      }
      .dhdr {
        background: rgba(255, 255, 255, 0.06);
        padding: 11px 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
      }
      .ddts {
        display: flex;
        gap: 4px;
      }
      .ddt {
        width: 8px;
        height: 8px;
        border-radius: 50%;
      }
      .dtit {
        font-size: 10.5px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.44);
        letter-spacing: 0.4px;
      }
      .live {
        display: flex;
        align-items: center;
        gap: 4px;
        font-size: 9.5px;
        font-weight: 700;
        color: #10b981;
        letter-spacing: 0.4px;
      }
      .live::before {
        content: "";
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: #10b981;
        animation: pulse 1.5s infinite;
      }
      .dbody {
        padding: 14px;
      }
      /* WA PHONE */
      .waph {
        background: #0b141a;
        border-radius: 13px;
        overflow: hidden;
        max-width: 290px;
        margin: 0 auto;
      }
      .wahdr {
        background: #1f2c33;
        padding: 9px 13px;
        display: flex;
        align-items: center;
        gap: 9px;
      }
      .waav {
        width: 31px;
        height: 31px;
        border-radius: 50%;
        background: linear-gradient(135deg, #25d366, #128c7e);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
      }
      .wain {
        font-size: 12px;
        font-weight: 600;
        color: #e9edef;
      }
      .wast {
        font-size: 9.5px;
        color: #8696a0;
      }
      .wabody {
        padding: 9px;
        min-height: 200px;
        background: #0b141a;
        display: flex;
        flex-direction: column;
        gap: 6px;
        overflow-y: auto;
        max-height: 250px;
      }
      .wm {
        max-width: 82%;
        padding: 7px 11px;
        border-radius: 7px;
        font-size: 11.5px;
        line-height: 1.5;
      }
      .wm.bot {
        background: #1f2c33;
        color: #e9edef;
        align-self: flex-start;
        border-bottom-left-radius: 2px;
      }
      .wm.usr {
        background: #005c4b;
        color: #e9edef;
        align-self: flex-end;
        border-bottom-right-radius: 2px;
      }
      .wmt {
        font-size: 9px;
        color: #8696a0;
        margin-top: 2px;
        text-align: right;
      }
      .wbtns {
        display: flex;
        gap: 4px;
        flex-wrap: wrap;
        margin-top: 4px;
      }
      .wbtn {
        background: rgba(0, 180, 130, 0.13);
        border: 1px solid rgba(0, 180, 130, 0.26);
        color: #25d366;
        font-size: 10px;
        padding: 4px 8px;
        border-radius: 100px;
        cursor: pointer;
        transition: 0.2s;
        font-family: inherit;
      }
      .wbtn:hover {
        background: rgba(0, 180, 130, 0.26);
      }
      .wainp {
        background: #1f2c33;
        padding: 7px 11px;
        display: flex;
        align-items: center;
        gap: 7px;
      }
      .wainp input {
        flex: 1;
        background: transparent;
        border: none;
        color: #e9edef;
        font-size: 11px;
        font-family: inherit;
        outline: none;
      }
      .wainp input::placeholder {
        color: #8696a0;
      }
      .wasnd {
        background: #00a884;
        border: none;
        color: #fff;
        width: 26px;
        height: 26px;
        border-radius: 50%;
        cursor: pointer;
        font-size: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      /* STATS */
      .srow {
        background: var(--navy);
        padding: 48px 4%;
      }
      .sins {
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-wrap: wrap;
        gap: 24px;
        max-width: 920px;
        margin: 0 auto;
      }
      .si {
        text-align: center;
      }
      .sb {
        font-family: "Syne", sans-serif;
        font-size: 32px;
        font-weight: 800;
        color: #fff;
      }
      .sb span {
        color: var(--cyan);
      }
      .ss {
        font-size: 11px;
        color: rgba(255, 255, 255, 0.4);
        margin-top: 2px;
      }
      /* FEATURES */
      .fsec {
        padding: 68px 4%;
        background: #fff;
      }
      .fgd {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 17px;
        margin-top: 40px;
      }
      .fcd {
        background: var(--off);
        border: 1px solid var(--bd);
        border-radius: 13px;
        padding: 22px 19px;
        transition: 0.3s;
      }
      .fcd:hover {
        transform: translateY(-3px);
        box-shadow: var(--sh);
        background: #fff;
      }
      .fcdi {
        font-size: 22px;
        margin-bottom: 9px;
      }
      .fcdt {
        font-family: "Syne", sans-serif;
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 5px;
      }
      .fcdd {
        font-size: 12.5px;
        color: var(--gray);
        line-height: 1.65;
      }
      /* INDUSTRY / SOLUTION PAGES */
      .ihero {
        padding: 106px 4% 64px;
        background: var(--navy);
        position: relative;
        overflow: hidden;
      }
      .ihinn {
        max-width: 1040px;
        margin: 0 auto;
        text-align: center;
        position: relative;
        z-index: 1;
      }
      .ihero h1 {
        font-family: "Syne", sans-serif;
        font-size: clamp(28px, 4vw, 50px);
        font-weight: 800;
        color: #fff;
        line-height: 1.1;
        margin-bottom: 13px;
      }
      .ihero h1 em {
        font-style: normal;
        color: var(--cyan);
      }
      .ihero p {
        font-size: 15px;
        color: rgba(255, 255, 255, 0.56);
        max-width: 560px;
        margin: 0 auto 26px;
        line-height: 1.75;
      }
      /* PROBLEM BOXES */
      .psec {
        padding: 64px 4%;
        background: var(--off);
      }
      .pgd {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        margin-top: 38px;
      }
      .pbox {
        background: #fff;
        border: 1px solid var(--bd);
        border-left: 4px solid var(--blue);
        border-radius: 13px;
        padding: 22px 18px;
        transition: 0.3s;
      }
      .pbox:hover {
        transform: translateY(-3px);
        box-shadow: var(--sh);
      }
      .pbi {
        font-size: 22px;
        margin-bottom: 8px;
      }
      .pbt {
        font-family: "Syne", sans-serif;
        font-size: 13.5px;
        font-weight: 700;
        margin-bottom: 5px;
      }
      .pbd {
        font-size: 12.5px;
        color: var(--gray);
        line-height: 1.65;
      }
      .pbfix {
        display: flex;
        align-items: flex-start;
        gap: 5px;
        font-size: 11.5px;
        font-weight: 600;
        color: var(--blue);
        margin-top: 8px;
        line-height: 1.55;
      }
      /* DEMO SECTION */
      .idsec {
        padding: 64px 4%;
        background: #fff;
      }
      .idg {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 44px;
        align-items: center;
        max-width: 1060px;
        margin: 0 auto;
      }
      .idtxt h2 {
        font-family: "Syne", sans-serif;
        font-size: clamp(21px, 2.7vw, 32px);
        font-weight: 800;
        margin-bottom: 11px;
        line-height: 1.2;
      }
      .idtxt h2 em {
        font-style: normal;
        color: var(--blue);
      }
      .idtxt p {
        font-size: 14px;
        color: var(--gray);
        line-height: 1.75;
        margin-bottom: 16px;
      }
      .chk {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-bottom: 20px;
      }
      .chk li {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        font-size: 13px;
        color: var(--navy);
        line-height: 1.55;
      }
      .chk li::before {
        content: "✅";
        flex-shrink: 0;
      }
      /* SOLUTIONS HUB */
      .sgrid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 44px;
      }
      .scard {
        background: #fff;
        border: 1px solid var(--bd);
        border-radius: 17px;
        padding: 28px;
        transition: 0.3s;
        cursor: pointer;
      }
      .scard:hover {
        transform: translateY(-4px);
        box-shadow: var(--sh);
      }
      .snum {
        font-family: "Syne", sans-serif;
        font-size: 10px;
        font-weight: 700;
        color: var(--blue);
        letter-spacing: 1.8px;
        text-transform: uppercase;
        margin-bottom: 9px;
      }
      .sico {
        font-size: 28px;
        margin-bottom: 11px;
      }
      .st {

        font-size: 16px;
        font-weight: 800;
        margin-bottom: 8px;
      }
      .sd {
        font-size: 13px;
        color: var(--gray);
        line-height: 1.65;
        max-width: 300px;
      }
      .stags {
        display: flex;
        gap: 5px;
        flex-wrap: wrap;
        margin-top: 11px;
      }
      .stag {
        font-size: 10.5px;
        padding: 3px 8px;
        border-radius: 100px;
        background: rgba(20, 85, 246, 0.07);
        color: var(--blue);
        border: 1px solid rgba(20, 85, 246, 0.13);
        font-weight: 600;
      }
      /* PARTNERS */
      .ptg {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 42px;
      }
      .ptc {
        border-radius: 17px;
        padding: 32px 26px;
        transition: 0.3s;
        border: 1px solid var(--bd);
      }
      .ptc:hover {
        transform: translateY(-4px);
      }
      .ptc.gold {
        background: linear-gradient(135deg, #fffbeb, #fef3c7);
        border-color: #fbbf24;
      }
      .ptc.blue {
        background: linear-gradient(135deg, #f0f4ff, #e8f0ff);
        border-color: var(--blue);
      }
      .ptbadge {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.9px;
        text-transform: uppercase;
        padding: 4px 10px;
        border-radius: 100px;
        margin-bottom: 12px;
      }
      .ptc.gold .ptbadge {
        background: rgba(251, 191, 36, 0.17);
        color: #92400e;
        border: 1px solid rgba(251, 191, 36, 0.36);
      }
      .ptc.blue .ptbadge {
        background: rgba(20, 85, 246, 0.1);
        color: var(--blue);
        border: 1px solid rgba(20, 85, 246, 0.2);
      }
      .ptico {
        font-size: 32px;
        margin-bottom: 11px;
        display: block;
      }
      .ptt {
        
        font-size: 18px;
        font-weight: 800;
        margin-bottom: 7px;
      }
      .ptd {
        font-size: 13px;
        color: var(--gray);
        line-height: 1.7;
        margin-bottom: 14px;
      }
      .ptlist {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 7px;
        margin-bottom: 20px;
      }
      .ptlist li {
        display: flex;
        align-items: flex-start;
        gap: 7px;
        font-size: 12.5px;
        color: var(--navy);
      }
      .ptlist li::before {
        content: "✓";
        color: var(--blue);
        font-weight: 700;
        flex-shrink: 0;
      }
      .ptcta {
        display: inline-block;
        padding: 10px 22px;
        border-radius: 8px;
        font-size: 13px;
        font-weight: 700;
        cursor: pointer;
        border: none;
        font-family: inherit;
        transition: 0.2s;
      }
      .ptc.gold .ptcta {
        background: #f59e0b;
        color: #fff;
      }
      .ptc.blue .ptcta {
        background: var(--blue);
        color: #fff;
      }
      .ptcta:hover {
        transform: translateY(-2px);
      }
      .egrid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        margin-top: 40px;
      }
      .ecard {
        background: #fff;
        border: 1px solid var(--bd);
        border-radius: 13px;
        padding: 24px 20px;
        text-align: center;
        transition: 0.3s;
      }
      .ecard:hover {
        transform: translateY(-3px);
        box-shadow: var(--sh);
      }
      .epct {
        font-family: "Syne", sans-serif;
        font-size: 38px;
        font-weight: 800;
        color: var(--blue);
        line-height: 1;
      }
      .epct span {
        font-size: 17px;
        color: var(--cyan);
      }
      .elbl {
        font-size: 13px;
        font-weight: 700;
        margin: 6px 0 4px;
      }
      .esub {
        font-size: 12px;
        color: var(--gray);
        line-height: 1.6;
      }
      .avail-g {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        margin-top: 38px;
      }
      .avi {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.09);
        border-radius: 12px;
        padding: 18px 16px;
        transition: 0.3s;
      }
      .avi:hover {
        background: rgba(20, 85, 246, 0.13);
        border-color: rgba(20, 85, 246, 0.28);
      }
      .avico {
        font-size: 21px;
        margin-bottom: 8px;
      }
      .avit {
        font-family: "Syne", sans-serif;
        font-size: 13px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 3px;
      }
      .avid {
        font-size: 11.5px;
        color: rgba(255, 255, 255, 0.44);
        line-height: 1.6;
      }
      .steps {
        display: flex;
        gap: 0;
        margin-top: 42px;
        position: relative;
        max-width: 860px;
        margin-left: auto;
        margin-right: auto;
      }
      .steps::before {
        content: "";
        position: absolute;
        top: 25px;
        left: 42px;
        right: 42px;
        height: 2px;
        background: linear-gradient(90deg, var(--blue), var(--cyan));
        z-index: 0;
      }
      .step {
        flex: 1;
        text-align: center;
        position: relative;
        z-index: 1;
        padding: 0 9px;
      }
      .stcir {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: var(--blue);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 11px;
        font-family: "Syne", sans-serif;
        font-size: 16px;
        font-weight: 800;
        color: #fff;
        box-shadow: 0 4px 13px rgba(20, 85, 246, 0.3);
      }
      .stt {
        font-family: "Syne", sans-serif;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 3px;
      }
      .std {
        font-size: 11px;
        color: var(--gray);
        line-height: 1.5;
      }
      /* CALC */
      .calc-box {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.11);
        border-radius: 17px;
        overflow: hidden;
      }
      .calc-hdr {
        background: rgba(255, 255, 255, 0.06);
        padding: 11px 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
      }
      .calc-body {
        padding: 18px;
      }
      .cinpl {
        font-size: 10.5px;
        color: rgba(255, 255, 255, 0.46);
        margin-bottom: 4px;
      }
      .cinpv {
        font-size: 11.5px;
        color: var(--cyan);
        font-weight: 700;
      }
      .crange {
        width: 100%;
        accent-color: var(--blue);
        margin-bottom: 3px;
        cursor: pointer;
      }
      .crmm {
        display: flex;
        justify-content: space-between;
        font-size: 9.5px;
        color: rgba(255, 255, 255, 0.3);
        margin-bottom: 11px;
      }
      .csel {
        width: 100%;
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(255, 255, 255, 0.11);
        border-radius: 7px;
        padding: 8px 11px;
        font-size: 12.5px;
        color: #fff;
        font-family: inherit;
        outline: none;
        margin-bottom: 13px;
      }
      .cres {
        background: rgba(20, 85, 246, 0.19);
        border: 1px solid rgba(20, 85, 246, 0.28);
        border-radius: 10px;
        padding: 14px;
        text-align: center;
      }
      .crl {
        font-size: 10px;
        color: rgba(255, 255, 255, 0.44);
        margin-bottom: 3px;
        letter-spacing: 0.5px;
        text-transform: uppercase;
      }
      .crn {
        font-family: "Syne", sans-serif;
        font-size: 28px;
        font-weight: 800;
        color: var(--cyan);
      }
      .crs {
        font-size: 9.5px;
        color: rgba(255, 255, 255, 0.34);
        margin-top: 3px;
      }
      /* CONTACT */
      .cgrid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 44px;
        align-items: start;
        max-width: 1040px;
        margin: 0 auto;
      }
      .cinfo h2 {
        font-family: "Syne", sans-serif;
        font-size: 28px;
        font-weight: 800;
        margin-bottom: 11px;
      }
      .cinfo h2 em {
        font-style: normal;
        color: var(--blue);
      }
      .cinfo p {
        font-size: 14px;
        color: var(--gray);
        line-height: 1.75;
        margin-bottom: 24px;
      }
      .citems {
        display: flex;
        flex-direction: column;
        gap: 12px;
      }
      .cit {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        background: #fff;
        border: 1px solid var(--bd);
        border-radius: 11px;
        padding: 13px 16px;
      }
      .citco {
        font-size: 18px;
        flex-shrink: 0;
        margin-top: 1px;
      }
      .citl {
        font-size: 10.5px;
        font-weight: 700;
        color: var(--gray);
        letter-spacing: 0.7px;
        text-transform: uppercase;
        margin-bottom: 2px;
      }
      .citv {
        font-size: 13px;
        font-weight: 600;
        color: var(--navy);
      }
      .citv a {
        color: var(--blue);
        text-decoration: none;
      }
      .cform {
        background: #fff;
        border: 1px solid var(--bd);
        border-radius: 17px;
        padding: 30px;
      }
      .cform h3 {
        font-family: "Syne", sans-serif;
        font-size: 18px;
        font-weight: 800;
        margin-bottom: 16px;
      }
      .frow {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 11px;
        margin-bottom: 11px;
      }
      .fgrp {
        display: flex;
        flex-direction: column;
        gap: 4px;
        margin-bottom: 11px;
      }
      .fgrp label {
        font-size: 11px;
        font-weight: 700;
        color: var(--navy);
        letter-spacing: 0.4px;
        text-transform: uppercase;
      }
      .fgrp input,
      .fgrp select,
      .fgrp textarea {
        padding: 9px 12px;
        border: 1.5px solid var(--bd);
        border-radius: 8px;
        font-size: 13px;
        font-family: inherit;
        color: var(--navy);
        outline: none;
        transition: border-color 0.2s;
        background: #fff;
      }
      .fgrp input:focus,
      .fgrp select:focus,
      .fgrp textarea:focus {
        border-color: var(--blue);
      }
      .fgrp textarea {
        resize: none;
        min-height: 78px;
      }
      /* ABOUT */
      .about-hero {
        min-height: 70vh;
        background: var(--navy);
        display: flex;
        align-items: center;
        padding: 108px 4% 76px;
        position: relative;
        overflow: hidden;
      }
      .about-hero-in {
        max-width: 1060px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
      }
      .tagline {
        font-family: "Syne", sans-serif;
        font-size: clamp(36px, 6vw, 72px);
        font-weight: 800;
        color: #fff;
        line-height: 1.05;
        margin-bottom: 20px;
      }
      .tagline em {
        font-style: normal;
        color: var(--cyan);
      }
      .tagline-sub {
        font-size: 17px;
        color: rgba(255, 255, 255, 0.6);
        max-width: 560px;
        line-height: 1.8;
        margin-bottom: 32px;
      }
      .about-vals {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-top: 52px;
      }
      .aval {
        background: #fff;
        border: 1px solid var(--bd);
        border-radius: 15px;
        padding: 26px 22px;
      }
      .aval-icon {
        font-size: 28px;
        margin-bottom: 12px;
      }
      .aval-t {
        
        font-size: 15px;
        font-weight: 800;
        margin-bottom: 7px;
      }
      .aval-d {
        font-size: 13px;
        color: var(--gray);
        line-height: 1.65;
      }
      .timeline {
        display: flex;
        flex-direction: column;
        gap: 0;
        position: relative;
        padding-left: 32px;
        margin-top: 44px;
      }
      .timeline::before {
        content: "";
        position: absolute;
        left: 11px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(180deg, var(--blue), var(--cyan));
      }
      .tli {
        position: relative;
        padding-bottom: 32px;
      }
      .tli::before {
        content: "";
        position: absolute;
        left: -25px;
        top: 4px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--blue);
        border: 2px solid #fff;
        box-shadow: 0 0 0 3px rgba(20, 85, 246, 0.2);
      }
      .tli-yr {
        font-family: "Syne", sans-serif;
        font-size: 11px;
        font-weight: 700;
        color: var(--blue);
        letter-spacing: 1px;
        margin-bottom: 4px;
      }
      .tli-t {
        font-family: "Syne", sans-serif;
        font-size: 15px;
        font-weight: 700;
        margin-bottom: 4px;
      }
      .tli-d {
        font-size: 13px;
        color: var(--gray);
        line-height: 1.65;
      }
      /* CASE STUDIES */
      .cs-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-top: 44px;
      }
      .csc {
        background: #fff;
        border: 1px solid var(--bd);
        border-radius: 16px;
        overflow: hidden;
        transition: 0.3s;
        cursor: pointer;
      }
      .csc:hover {
        transform: translateY(-4px);
        box-shadow: var(--sh);
      }
      .csc-top {
        padding: 28px 24px;
        border-bottom: 1px solid var(--bd);
      }
      .csc-ind {
        display: inline-block;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        padding: 3px 10px;
        border-radius: 100px;
        margin-bottom: 12px;
      }
      .csc-title {
        font-size: 16px;
        font-weight: 800;
        margin-bottom: 8px;
      }
      .csc-desc {
        font-size: 13px;
        color: var(--gray);
        line-height: 1.65;
      }
      .csc-bot {
        padding: 18px 24px;
        background: var(--off);
      }
      .csc-metrics {
        display: flex;
        gap: 16px;
      }
      .csm {
        text-align: center;
      }
      .csm-n {
        font-family: "Syne", sans-serif;
        font-size: 22px;
        font-weight: 800;
        color: var(--blue);
      }
      .csm-n span {
        color: var(--cyan);
        font-size: 14px;
      }
      .csm-l {
        font-size: 10.5px;
        color: var(--gray);
        margin-top: 2px;
      }
      /* POLICY PAGES */
      .policy-hero {
        padding: 108px 4% 56px;
        background: var(--navy);
        position: relative;
        overflow: hidden;
      }
      .policy-body {
        padding: 64px 4%;
        background: #fff;
      }
      .policy-content {
        max-width: 800px;
        margin: 0 auto;
      }
      .policy-content h2 {
        font-family: "Syne", sans-serif;
        font-size: 20px;
        font-weight: 800;
        margin: 32px 0 10px;
        color: var(--navy);
      }
      .policy-content h2:first-child {
        margin-top: 0;
      }
      .policy-content p {
        font-size: 14px;
        color: var(--gray);
        line-height: 1.8;
        margin-bottom: 12px;
      }
      .policy-content ul {
        padding-left: 20px;
        margin-bottom: 12px;
      }
      .policy-content ul li {
        font-size: 14px;
        color: var(--gray);
        line-height: 1.8;
        margin-bottom: 5px;
      }
      .policy-content .highlight {
        background: rgba(20, 85, 246, 0.06);
        border-left: 4px solid var(--blue);
        padding: 14px 18px;
        border-radius: 0 9px 9px 0;
        margin: 16px 0;
        font-size: 13.5px;
        color: var(--navy);
        line-height: 1.7;
      }
      /* IVR */
      .ivr-wrap {
        background: rgba(255, 255, 255, 0.03);
        border-radius: 12px;
        padding: 16px;
      }
      .ivr-scr {
        background: #111827;
        border-radius: 10px;
        padding: 16px;
        margin-bottom: 12px;
      }
      .ivr-top {
        text-align: center;
        padding-bottom: 12px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        margin-bottom: 12px;
      }
      .ivr-num {
        font-family: "Syne", sans-serif;
        font-size: 19px;
        font-weight: 700;
        color: #fff;
      }
      .ivr-stat {
        font-size: 11px;
        color: #10b981;
        margin-top: 2px;
      }
      .ivr-steps {
        display: flex;
        flex-direction: column;
        gap: 6px;
      }
      .ivrs {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        padding: 8px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 7px;
        transition: 0.3s;
      }
      .ivrs.act {
        background: rgba(20, 85, 246, 0.17);
        border-color: rgba(20, 85, 246, 0.35);
      }
      .ivrn {
        width: 19px;
        height: 19px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 10px;
        font-weight: 700;
        color: #fff;
        flex-shrink: 0;
      }
      .ivrs.act .ivrn {
        background: var(--blue);
      }
      .ivrt {
        font-size: 11px;
        color: rgba(255, 255, 255, 0.65);
      }
      .ivrd {
        font-size: 10px;
        color: rgba(255, 255, 255, 0.36);
        margin-top: 1px;
      }
      .ivrctrls {
        display: flex;
        gap: 8px;
        justify-content: center;
        flex-wrap: wrap;
      }
      .ivrbtn {
        padding: 8px 14px;
        border-radius: 7px;
        font-size: 12px;
        font-weight: 600;
        border: none;
        cursor: pointer;
        transition: 0.2s;
        font-family: inherit;
      }
      .ivrcall {
        background: #10b981;
        color: #fff;
      }
      .ivrend {
        background: #ef4444;
        color: #fff;
      }
      .ivrkey {
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
      }
      /* CHAT */
      .chatw {
        background: #0f172a;
        border-radius: 12px;
        overflow: hidden;
        max-width: 300px;
        margin: 0 auto;
      }
      .chathdr {
        background: #1e293b;
        padding: 10px 13px;
        display: flex;
        align-items: center;
        gap: 8px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      }
      .chatav {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--blue), var(--cyan));
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        flex-shrink: 0;
      }
      .chatnm {
        font-size: 12px;
        font-weight: 600;
        color: #e2e8f0;
      }
      .chatst {
        font-size: 9.5px;
        color: #10b981;
      }
      .chatmsgs {
        padding: 11px;
        height: 240px;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        gap: 8px;
      }
      .cm {
        max-width: 86%;
        padding: 8px 11px;
        border-radius: 10px;
        font-size: 11.5px;
        line-height: 1.55;
        color: #e2e8f0;
      }
      .cm.bot {
        background: #1e293b;
        align-self: flex-start;
        border-bottom-left-radius: 3px;
      }
      .cm.usr {
        background: var(--blue);
        align-self: flex-end;
        border-bottom-right-radius: 3px;
      }
      .tyd {
        display: flex;
        gap: 3px;
        padding: 3px 0;
      }
      .tyd span {
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.36);
        animation: ta 1.2s infinite;
      }
      .tyd span:nth-child(2) {
        animation-delay: 0.2s;
      }
      .tyd span:nth-child(3) {
        animation-delay: 0.4s;
      }
      @keyframes ta {
        0%,
        100% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(-5px);
        }
      }
      .chatqk {
        display: flex;
        gap: 5px;
        flex-wrap: wrap;
        padding: 0 11px 8px;
      }
      .cq {
        background: rgba(20, 85, 246, 0.13);
        border: 1px solid rgba(20, 85, 246, 0.26);
        color: var(--cyan);
        font-size: 10px;
        padding: 4px 9px;
        border-radius: 100px;
        cursor: pointer;
        transition: 0.2s;
        font-family: inherit;
      }
      .cq:hover {
        background: rgba(20, 85, 246, 0.26);
      }
      .chatinp {
        background: #1e293b;
        padding: 8px 11px;
        display: flex;
        gap: 6px;
        align-items: center;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
      }
      .chatinp input {
        flex: 1;
        background: #0f172a;
        border: 1px solid rgba(255, 255, 255, 0.07);
        border-radius: 16px;
        padding: 6px 12px;
        color: #e2e8f0;
        font-size: 11px;
        font-family: inherit;
        outline: none;
      }
      .chatinp input::placeholder {
        color: #64748b;
      }
      .chatsnd {
        background: var(--blue);
        border: none;
        color: #fff;
        width: 26px;
        height: 26px;
        border-radius: 50%;
        cursor: pointer;
        font-size: 11px;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      /* VB */
      .vbw {
        background: #0f172a;
        border-radius: 12px;
        padding: 20px;
        text-align: center;
        max-width: 290px;
        margin: 0 auto;
      }
      .vbc {
        width: 92px;
        height: 92px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--blue), #7c3aed);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        margin: 0 auto 16px;
        position: relative;
        transition: 0.3s;
      }
      .vbc.act::before,
      .vbc.act::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        border: 2px solid rgba(20, 85, 246, 0.36);
        animation: rip 1.5s infinite;
      }
      .vbc.act::after {
        animation-delay: 0.5s;
      }
      @keyframes rip {
        0% {
          transform: scale(1);
          opacity: 1;
        }
        100% {
          transform: scale(1.72);
          opacity: 0;
        }
      }
      .vbst {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.65);
        margin-bottom: 4px;
      }
      .vbsb {
        font-size: 11px;
        color: rgba(255, 255, 255, 0.32);
        margin-bottom: 16px;
      }
      .wave {
        display: none;
        align-items: center;
        justify-content: center;
        gap: 3px;
        height: 26px;
        margin: 7px 0;
      }
      .wb {
        width: 3px;
        background: var(--cyan);
        border-radius: 2px;
        animation: wv 1s infinite ease-in-out;
      }
      @keyframes wv {
        0%,
        100% {
          height: 5px;
        }
        50% {
          height: 20px;
        }
      }
      .vtrans {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.07);
        border-radius: 10px;
        padding: 12px;
        text-align: left;
        margin-bottom: 14px;
        min-height: 85px;
        overflow-y: auto;
        max-height: 120px;
      }
      .vline {
        font-size: 11px;
        line-height: 1.6;
        margin-bottom: 4px;
      }
      .vline.bot {
        color: var(--cyan);
      }
      .vline.usr {
        color: rgba(255, 255, 255, 0.62);
      }
      .vlbl {
        font-size: 9px;
        font-weight: 700;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        margin-bottom: 2px;
      }
      .vlbl.bot {
        color: rgba(0, 212, 255, 0.44);
      }
      .vlbl.usr {
        color: rgba(255, 255, 255, 0.24);
      }
      .vbtns {
        display: flex;
        gap: 8px;
        justify-content: center;
      }
      .vbtn {
        padding: 9px 16px;
        border-radius: 8px;
        font-size: 12px;
        font-weight: 600;
        border: none;
        cursor: pointer;
        transition: 0.2s;
        font-family: inherit;
      }
      .vbtn:hover {
        opacity: 0.84;
      }
      /* RCS */
      .rcsph {
        background: #1a1a2e;
        border-radius: 13px;
        overflow: hidden;
        max-width: 290px;
        margin: 0 auto;
      }
      .rcshdr {
        background: #16213e;
        padding: 9px 13px;
        display: flex;
        align-items: center;
        gap: 8px;
      }
      .rcsbr {
        width: 30px;
        height: 30px;
        border-radius: 7px;
        background: linear-gradient(135deg, #f59e0b, #ef4444);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
      }
      .rcsbname {
        font-size: 12px;
        font-weight: 600;
        color: #fff;
      }
      .rcsvrf {
        font-size: 9.5px;
        color: #3b82f6;
        margin-top: 1px;
      }
      .rcsbody {
        padding: 9px;
        height: 270px;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        gap: 8px;
      }
      .rcsmsg {
        background: #16213e;
        border-radius: 12px;
        padding: 12px;
        border: 1px solid rgba(255, 255, 255, 0.06);
      }
      .rcstxt {
        font-size: 11.5px;
        color: #e2e8f0;
        line-height: 1.55;
        margin-bottom: 8px;
      }
      .rcscard {
        background: linear-gradient(
          135deg,
          rgba(20, 85, 246, 0.17),
          rgba(0, 212, 255, 0.08)
        );
        border: 1px solid rgba(20, 85, 246, 0.26);
        border-radius: 10px;
        overflow: hidden;
        margin-bottom: 8px;
      }
      .rcsimg {
        height: 66px;
        background: linear-gradient(135deg, #1455f6, #00d4ff);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
      }
      .rcscb {
        padding: 8px 10px;
      }
      .rcstitle {
        font-size: 11px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 2px;
      }
      .rcssub {
        font-size: 10px;
        color: rgba(255, 255, 255, 0.44);
      }
      .rcsabs {
        display: flex;
        gap: 5px;
        flex-wrap: wrap;
      }
      .rcsab {
        background: rgba(20, 85, 246, 0.17);
        border: 1px solid rgba(20, 85, 246, 0.3);
        color: var(--cyan);
        font-size: 10px;
        padding: 4px 9px;
        border-radius: 100px;
        cursor: pointer;
        transition: 0.2s;
        font-family: inherit;
      }
      .rcsab:hover {
        background: rgba(20, 85, 246, 0.36);
      }
      /* SMS */
      .smsg {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 13px;
      }
      .smsf {
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(255, 255, 255, 0.11);
        border-radius: 7px;
        padding: 7px 11px;
        font-size: 12px;
        color: #fff;
        font-family: "Syne", sans-serif;
        margin-bottom: 9px;
      }
      .smsl {
        font-size: 10.5px;
        color: rgba(255, 255, 255, 0.44);
        margin-bottom: 4px;
      }
      .smsta {
        width: 100%;
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(255, 255, 255, 0.11);
        border-radius: 7px;
        padding: 7px 11px;
        font-size: 11.5px;
        color: #fff;
        font-family: "DM Sans", sans-serif;
        resize: none;
        outline: none;
        min-height: 68px;
      }
      .smsph {
        background: #1c1c1e;
        border-radius: 12px;
        overflow: hidden;
      }
      .smsphdr {
        background: #2c2c2e;
        padding: 9px 13px;
        text-align: center;
      }
      .smspfrom {
        font-size: 9.5px;
        color: #8e8e93;
        margin-bottom: 1px;
      }
      .smspname {
        font-size: 14.5px;
        font-weight: 600;
        color: #fff;
      }
      .smspbody {
        padding: 9px;
        min-height: 150px;
        background: #1c1c1e;
        display: flex;
        flex-direction: column;
        gap: 6px;
        overflow-y: auto;
        max-height: 190px;
      }
      .smsbub {
        max-width: 84%;
        padding: 7px 11px;
        border-radius: 14px;
        font-size: 11px;
        line-height: 1.5;
      }
      .smsbub.in {
        background: #2c2c2e;
        color: #fff;
        align-self: flex-start;
        border-bottom-left-radius: 3px;
      }
      .smst {
        font-size: 9.5px;
        color: #636366;
        text-align: center;
        margin: 3px 0;
      }
      .sentsms {
        display: none;
        margin-top: 11px;
        background: rgba(16, 185, 129, 0.13);
        border: 1px solid rgba(16, 185, 129, 0.26);
        border-radius: 8px;
        padding: 10px 13px;
        color: #10b981;
        font-size: 12px;
        font-weight: 600;
        text-align: center;
      }
      /* MAP */
      .mapwrap {
        background: var(--off);
        border: 1px solid var(--bd);
        border-radius: 13px;
        overflow: hidden;
        height: 340px;
      }
      .mapwrap iframe {
        width: 100%;
        height: 100%;
        border: 0;
        display: block;
      }

      /* ================================================================
   BASE RESPONSIVE (already in original — kept for continuity)
   ================================================================ */
      @media (max-width: 900px) {
        .nav-lw,
        .ncta {
          display: none;
        }
        .hbg {
          display: flex;
        }
        .hgrid,
        .phg,
        .platg,
        .idg,
        .cgrid {
          grid-template-columns: 1fr;
        }
        .hcards {
          display: none;
        }
        .pgrid,
        .fgd,
        .about-vals,
        .cs-grid {
          grid-template-columns: 1fr 1fr;
        }
        .igrid,
        .pgd,
        .egrid,
        .avail-g {
          grid-template-columns: 1fr 1fr;
        }
        .sgrid,
        .ptg {
          grid-template-columns: 1fr;
        }
        .fg {
          grid-template-columns: 1fr 1fr;
        }
        .steps {
          flex-direction: column;
          gap: 16px;
        }
        .steps::before {
          display: none;
        }
        .smsg {
          grid-template-columns: 1fr;
        }
      }
      @media (max-width: 580px) {
        .pgrid,
        .fgd,
        .igrid,
        .pgd,
        .egrid,
        .avail-g,
        .about-vals,
        .cs-grid {
          grid-template-columns: 1fr;
        }
        .fg {
          grid-template-columns: 1fr;
        }
        .hstats {
          gap: 14px;
          flex-wrap: wrap;
        }
        .frow {
          grid-template-columns: 1fr;
        }
      }

      /* ================================================================
   COMPREHENSIVE RESPONSIVE ADDITIONS — No UI changes
   ================================================================ */

      /* ── GLOBAL OVERFLOW GUARD ── */
      html,
      body {
        overflow-x: hidden;
        width: 100%;
      }
      *,
      *::before,
      *::after {
        box-sizing: border-box;
      }
      img,
      video,
      iframe,
      object,
      embed {
        max-width: 100%;
      }

      /* ── BLOB OVERFLOW FIX ── */
      .hero,
      .phero,
      .ihero,
      .about-hero,
      .policy-hero,
      .gcta,
      .srow,
      .lbar,
      section {
        overflow-x: hidden;
      }
      .blob {
        pointer-events: none;
      }

      /* ── TOUCH TARGETS ── */
      .nl {
        min-height: 44px;
      }
      .wasnd,
      .chatsnd {
        min-width: 44px;
        min-height: 44px;
      }
      .mob button {
        min-height: 48px !important;
        padding: 13px 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
        transition: background 0.15s;
      }
      .mob button:hover,
      .mob button:active {
        background: rgba(255, 255, 255, 0.08) !important;
      }
      .mob {
        padding: 16px 5% !important;
        gap: 2px;
      }

      /* ── iOS ZOOM PREVENTION ── */
      @media (max-width: 767px) {
        input,
        select,
        textarea,
        .fgrp input,
        .fgrp select,
        .fgrp textarea,
        .wainp input,
        .chatinp input,
        .smsta,
        .smsf,
        .csel {
          font-size: 16px !important;
        }
      }

      /* ── DEMO WIDGETS GLOBAL ── */
      .dbox {
        max-width: 100%;
        overflow: hidden;
      }
      .dbody {
        padding: 10px !important;
      }
      .waph,
      .rcsph,
      .chatw,
      .vbw,
      .smsph {
        max-width: 100% !important;
        width: 100%;
      }
      .smsg {
        display: block;
      }
      .smsg > div {
        margin-bottom: 14px;
      }

      /* ================================================================
   ≤ 1024px  Tablet landscape
   ================================================================ */
      @media (max-width: 1024px) {
        .pgrid {
          grid-template-columns: repeat(2, 1fr);
        }
        .fgd {
          grid-template-columns: repeat(2, 1fr);
        }
        .igrid {
          grid-template-columns: repeat(3, 1fr);
        }
        .fg {
          grid-template-columns: 1fr 1fr;
        }
        .hgrid {
          gap: 32px;
        }
        .phg {
          gap: 32px;
        }
      }

      /* ================================================================
   ≤ 900px  Tablet portrait / large phone landscape
   ================================================================ */
      @media (max-width: 900px) {
        .nav-lw,
        .ncta {
          display: none !important;
        }
        .hbg {
          display: flex !important;
        }

        .hgrid {
                  margin-top: 35px;
          grid-template-columns: 1fr !important;
          gap: 28px;
        }
        .hcards {
          display: none !important;
        }
        .phg {
          display: flex !important;
          flex-direction: column;
          gap: 24px;
        }
        .phg > div:first-child {
          order: 1;
        }
        .phg > div:last-child {
          order: 2;
          display: block !important;
        }

        .platg {
          grid-template-columns: 1fr !important;
          gap: 28px;
        }
        .idg {
          grid-template-columns: 1fr !important;
          gap: 28px;
        }
        .cgrid {
          grid-template-columns: 1fr !important;
          gap: 28px;
        }
        .about-story-grid {
          grid-template-columns: 1fr !important;
        }

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

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

        .steps {
          flex-direction: column !important;
          align-items: flex-start !important;
          gap: 18px !important;
          max-width: 100% !important;
        }
        .steps::before {
          display: none !important;
        }
        .step {
          display: flex !important;
          align-items: flex-start !important;
          gap: 14px !important;
          text-align: left !important;
          padding: 0 !important;
          flex: none;
          width: 100%;
        }
        .stcir {
          flex-shrink: 0 !important;
          margin: 0 !important;
        }

        .waph,
        .rcsph,
        .chatw,
        .vbw,
        .smsph,
        .ivr-wrap {
          max-width: 100% !important;
          width: 100% !important;
        }
        .dbox {
          max-width: 100% !important;
        }
        .calc-box {
          max-width: 100%;
        }

        /* About inline grids */
        div[style*="grid-template-columns:1fr 1fr"],
        div[style*="grid-template-columns: 1fr 1fr"] {
          grid-template-columns: 1fr !important;
        }
        .about-num-grid {
          grid-template-columns: 1fr 1fr !important;
        }

        .smsg {
          display: flex !important;
          flex-direction: column;
          gap: 14px;
        }

        .about-hero-in .tagline {
          font-size: clamp(28px, 8vw, 52px);
        }
      }

      /* ================================================================
   ≤ 768px  Phone landscape / small tablet
   ================================================================ */
      @media (max-width: 768px) {
        .pgrid {
          grid-template-columns: 1fr 1fr !important;
        }
        .igrid {
          grid-template-columns: 1fr 1fr !important;
        }
        .pgd {
          grid-template-columns: 1fr 1fr !important;
        }
        .fgd {
          grid-template-columns: 1fr 1fr !important;
        }
        .egrid {
          grid-template-columns: 1fr 1fr !important;
        }
        .avail-g {
          grid-template-columns: 1fr 1fr !important;
        }
        .about-vals {
          grid-template-columns: 1fr 1fr !important;
        }
        .cs-grid {
          grid-template-columns: 1fr 1fr !important;
        }

        .sins {
          display: grid !important;
          grid-template-columns: repeat(2, 1fr) !important;
          gap: 18px !important;
          max-width: 100% !important;
        }
        .sb {
          font-size: 28px !important;
        }
        .hsn {
          font-size: 22px !important;
        }

        section {
          padding: 56px 4% !important;
        }
        .phero {
          padding: 90px 4% 52px !important;
        }
        .ihero {
          padding: 90px 4% 48px !important;
        }
        .about-hero {
          padding: 90px 4% 52px !important;
        }
        .policy-hero {
          padding: 90px 4% 40px !important;
        }
        .gcta {
          padding: 60px 4% !important;
        }
        .srow {
          padding: 40px 4% !important;
        }
        .lbar {
          padding: 24px 4% !important;
        }
        .fsec {
          padding: 56px 4% !important;
        }
        .psec {
          padding: 56px 4% !important;
        }
        .idsec {
          padding: 52px 4% !important;
        }

        .mapwrap {
          height: 280px !important;
        }

        .wabody {
          max-height: 220px !important;
        }
        .chatmsgs {
          max-height: 220px !important;
          height: 220px !important;
        }
        .rcsbody {
          max-height: 240px !important;
        }
        .vtrans {
          max-height: 130px !important;
        }
        .smspbody {
          max-height: 180px !important;
        }

        .cform {
          padding: 22px 16px !important;
        }
        .ivrctrls {
          flex-wrap: wrap;
          gap: 7px;
        }
        .ivrbtn {
          padding: 8px 12px !important;
          font-size: 11.5px !important;
        }
        .calc-body {
          padding: 14px !important;
        }
        .crn {
          font-size: 26px !important;
        }
        .policy-content {
          word-wrap: break-word;
          overflow-wrap: break-word;
        }
      }

      /* ================================================================
   ≤ 580px  Phone portrait (most common)
   ================================================================ */
      @media (max-width: 580px) {
        section {
          padding: 48px 4% !important;
        }
        .phero {
          padding: 86px 4% 48px !important;
        }
        .ihero {
          padding: 86px 4% 44px !important;
        }
        .about-hero {
          padding: 86px 4% 48px !important;
        }
        .gcta {
          padding: 52px 4% !important;
        }
        .srow {
          padding: 36px 4% !important;
        }
        .fsec,
        .psec,
        .idsec {
          padding: 44px 4% !important;
        }
        footer {
          padding: 44px 4% 24px !important;
        }

        .hero h1 {
          font-size: clamp(26px, 8vw, 40px) !important;
        }
        .phero h1,
        .ihero h1 {
          font-size: clamp(24px, 7.5vw, 38px) !important;
        }
        .tagline {
          font-size: clamp(30px, 10vw, 52px) !important;
        }
        .h2 {
          font-size: clamp(22px, 6vw, 34px) !important;
        }
        .cinfo h2 {
          font-size: clamp(20px, 6vw, 28px) !important;
        }
        .idtxt h2 {
          font-size: clamp(20px, 6vw, 30px) !important;
        }
        .gcta h2 {
          font-size: clamp(20px, 6vw, 32px) !important;
        }

        .hstats {
          display: grid !important;
          grid-template-columns: repeat(3, 1fr) !important;
          gap: 12px !important;
        }
        .hsn {
          font-size: 19px !important;
        }
        .hsl {
          font-size: 9.5px !important;
        }

        .pgrid {
          grid-template-columns: 1fr !important;
        }
        .igrid {
          grid-template-columns: 1fr !important;
        }
        .pgd {
          grid-template-columns: 1fr !important;
        }
        .fgd {
          grid-template-columns: 1fr !important;
        }
        .egrid {
          grid-template-columns: 1fr !important;
        }
        .about-vals {
          grid-template-columns: 1fr !important;
        }
        .cs-grid {
          grid-template-columns: 1fr !important;
        }
        .avail-g {
          grid-template-columns: 1fr 1fr !important;
        }

        .sins {
          grid-template-columns: repeat(2, 1fr) !important;
          gap: 14px !important;
        }
        .fg {
          grid-template-columns: 1fr !important;
        }

        .gbtns {
          flex-direction: column !important;
          align-items: stretch !important;
        }
        .gbtns .bw,
        .gbtns .bgs,
        .gbtns .bp,
        .gbtns a.bw {
          width: 100% !important;
          text-align: center !important;
          justify-content: center !important;
        }

        .row {
          flex-direction: column !important;
          align-items: stretch !important;
          width: 100% !important;
        }
        .row .bp,
        .row .bg,
        .row .bgs,
        .row .bw {
          width: 100% !important;
          text-align: center !important;
          justify-content: center !important;
        }

        .mapwrap {
          height: 240px !important;
        }

        .chatw {
          max-width: 100% !important;
        }
        .vbw {
          max-width: 100% !important;
          padding: 16px !important;
        }
        .waph {
          border-radius: 10px !important;
        }
        .rcsph {
          border-radius: 10px !important;
        }
        .wabody {
          max-height: 200px !important;
        }
        .chatmsgs {
          height: 190px !important;
          max-height: 190px !important;
        }
        .rcsbody {
          max-height: 200px !important;
        }
        .vtrans {
          max-height: 110px !important;
          min-height: 70px !important;
        }

        .ivr-wrap {
          padding: 10px !important;
        }
        .ivrctrls {
          gap: 6px !important;
          flex-wrap: wrap !important;
        }
        .ivrbtn {
          padding: 7px 10px !important;
          font-size: 11px !important;
        }

        .ptc {
          padding: 22px 16px !important;
        }
        .ptg {
          grid-template-columns: 1fr !important;
        }

        .frow {
          grid-template-columns: 1fr !important;
        }
        .cform {
          padding: 18px 14px !important;
        }

        .lname {
          font-size: 13px !important;
        }
        .back {
          font-size: 11.5px !important;
          padding: 5px 11px !important;
        }
        .tag {
          font-size: 10px !important;
        }
        .pbadge {
          font-size: 9.5px !important;
        }
        .lrow {
          gap: 18px !important;
          justify-content: center !important;
        }
        .li {
          font-size: 11.5px !important;
        }

        .aval {
          padding: 20px 16px !important;
        }
        .stcir {
          width: 42px !important;
          height: 42px !important;
          font-size: 14px !important;
        }
        .timeline {
          padding-left: 22px !important;
        }

        .smsg {
          display: flex !important;
          flex-direction: column !important;
          gap: 12px !important;
        }
        .calc-body {
          padding: 12px !important;
        }
        .crn {
          font-size: 24px !important;
        }

        .csc-metrics {
          gap: 10px !important;
        }
        .csm-n {
          font-size: 18px !important;
        }
        .about-num-grid {
          grid-template-columns: 1fr 1fr !important;
        }

        .blob {
          width: 220px !important;
          height: 220px !important;
          filter: blur(50px) !important;
          opacity: 0.1 !important;
        }
      }

      /* ================================================================
   ≤ 400px  Small phones
   ================================================================ */
      @media (max-width: 400px) {
        .hero h1,
        .phero h1,
        .ihero h1,
        .tagline {
          font-size: 24px !important;
        }
        .h2 {
          font-size: 20px !important;
        }
        .gcta h2 {
          font-size: 18px !important;
        }

        .pgrid,
        .igrid,
        .pgd,
        .fgd,
        .egrid,
        .about-vals,
        .cs-grid,
        .ptg,
        .sgrid {
          grid-template-columns: 1fr !important;
        }
        .avail-g,
        .about-num-grid {
          grid-template-columns: 1fr 1fr !important;
        }

        .sins {
          grid-template-columns: repeat(2, 1fr) !important;
          gap: 10px !important;
        }
        .hstats {
          grid-template-columns: repeat(2, 1fr) !important;
        }
        .hsn {
          font-size: 17px !important;
        }

        section {
          padding: 40px 4% !important;
        }
        .phero {
          padding: 80px 4% 40px !important;
        }
        .ihero {
          padding: 80px 4% 36px !important;
        }

        .lbox {
          width: 34px !important;
          height: 34px !important;
          font-size: 12px !important;
        }
        .lname {
          font-size: 11.5px !important;
        }
        .lsub {
          display: none !important;
        }

        .bp,
        .bg,
        .bgs,
        .bw,
        .ptcta {
          padding: 10px 14px !important;
          font-size: 13px !important;
        }
        .frow {
          grid-template-columns: 1fr !important;
        }

        .blob {
          width: 180px !important;
          height: 180px !important;
          filter: blur(45px) !important;
          opacity: 0.09 !important;
        }
      }

      /* ================================================================
   ≤ 360px  iPhone SE, tiny phones
   ================================================================ */
      @media (max-width: 360px) {
        .hero h1,
        .phero h1,
        .ihero h1,
        .tagline {
          font-size: 22px !important;
          line-height: 1.15 !important;
        }
        .h2 {
          font-size: 19px !important;
        }
        .tagline-sub {
          font-size: 14px !important;
        }
        .desc {
          font-size: 13px !important;
        }

        .pgrid,
        .igrid,
        .pgd,
        .fgd,
        .egrid,
        .about-vals,
        .cs-grid,
        .avail-g,
        .ptg,
        .sgrid {
          grid-template-columns: 1fr !important;
        }
        .sins {
          grid-template-columns: repeat(2, 1fr) !important;
        }
        .hstats {
          grid-template-columns: repeat(2, 1fr) !important;
          gap: 8px !important;
        }
        .hsn {
          font-size: 15px !important;
        }

        .lbox {
          width: 32px !important;
          height: 32px !important;
          font-size: 11px !important;
        }
        .lname {
          font-size: 10.5px !important;
        }

        section {
          padding: 36px 3.5% !important;
        }
        .phero {
          padding: 76px 3.5% 36px !important;
        }
        .ihero {
          padding: 76px 3.5% 32px !important;
        }
        footer {
          padding: 36px 3.5% 20px !important;
        }
        .gcta {
          padding: 44px 3.5% !important;
        }
        .gbtns {
          gap: 8px !important;
        }

        .cform {
          padding: 14px 12px !important;
        }
        .fgrp input,
        .fgrp select,
        .fgrp textarea {
          font-size: 16px !important;
        }

        .waph,
        .rcsph,
        .chatw,
        .vbw {
          border-radius: 8px !important;
        }
        .dbody {
          padding: 6px !important;
        }
        .wabody,
        .chatmsgs,
        .rcsbody {
          max-height: 160px !important;
        }
        .wbtn {
          font-size: 9.5px !important;
          padding: 3px 7px !important;
        }

        .stcir {
          width: 36px !important;
          height: 36px !important;
          font-size: 13px !important;
        }

        .blob {
          width: 140px !important;
          height: 140px !important;
          filter: blur(36px) !important;
          opacity: 0.08 !important;
        }
      }

      /* ================================================================
   ≤ 580px to 900px  Tablet-specific grid preservation
   ================================================================ */
      @media (min-width: 581px) and (max-width: 900px) {
        .pgrid {
          grid-template-columns: repeat(2, 1fr) !important;
        }
        .fgd {
          grid-template-columns: repeat(2, 1fr) !important;
        }
        .igrid {
          grid-template-columns: repeat(3, 1fr) !important;
        }
        .pgd {
          grid-template-columns: repeat(2, 1fr) !important;
        }
        .avail-g {
          grid-template-columns: repeat(3, 1fr) !important;
        }
        .egrid {
          grid-template-columns: repeat(3, 1fr) !important;
        }
        .cs-grid {
          grid-template-columns: repeat(2, 1fr) !important;
        }
        .about-vals {
          grid-template-columns: repeat(3, 1fr) !important;
        }
      }

      /* ── LANDSCAPE PHONES ── */
      @media (max-width: 900px) and (orientation: landscape) {
        .hero {
          min-height: auto !important;
          padding-top: 90px !important;
        }
        .chatmsgs,
        .wabody,
        .rcsbody {
          max-height: 160px !important;
        }
        .hcards {
          display: none !important;
        }
      }

      /* ── NOTCH / SAFE AREA ── */
      @supports (padding: max(0px)) {
        header {
          padding-left: max(4%, env(safe-area-inset-left));
          padding-right: max(4%, env(safe-area-inset-right));
        }
        .mob {
          padding-left: max(5%, env(safe-area-inset-left)) !important;
          padding-right: max(5%, env(safe-area-inset-right)) !important;
          padding-bottom: max(16px, env(safe-area-inset-bottom)) !important;
        }
        footer {
          padding-bottom: max(30px, env(safe-area-inset-bottom));
        }
      }

      /* ── ACTIVE TAP STATES ── */
      .pc:active,
      .ic:active,
      .scard:active,
      .csc:active {
        transform: scale(0.97) !important;
        transition: transform 0.1s;
      }
      button:active {
        opacity: 0.85;
      }

      /* ── MOBILE DROPDOWN ── */
      .mob-dd {
        display: flex;
        flex-direction: column;
      }

      .mob-dd-btn {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        background: none;
        border-left: none;
        border-right: none;
        border-top: none;
        color: #fff;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        font-family: inherit;
        transition: background 0.2s ease, transform 0.1s ease;
        position: relative;
      }

      .mob-dd-btn:hover {
        background: rgba(255, 255, 255, 0.03);
      }

      .mob-dd-btn:active {
        background: rgba(255, 255, 255, 0.08) !important;
        transform: scale(0.98);
      }

      .mob-dd-arrow {
        width: 10px;
        height: 10px;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        fill: currentColor;
        margin-left: 8px;
        will-change: transform;
      }

      .mob-dd.open .mob-dd-arrow {
        transform: rotate(180deg);
      }

      .mob-dd-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                    opacity 0.3s ease-in-out,
                    padding 0.3s ease-in-out;
        opacity: 0;
        padding-left: 0;
        transform: translateY(-8px);
      }

      .mob-dd.open .mob-dd-content {
        max-height: 500px;
        opacity: 1;
        padding-left: 16px;
        transform: translateY(0);
      }

      .mob-dd-content button {
        color: rgba(255, 255, 255, 0.75);
        font-size: 14px;
        font-weight: 500;
        padding: 11px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        background: none;
        border-left: none;
        border-right: none;
        border-top: none;
        cursor: pointer;
        font-family: inherit;
        text-align: left;
        transition: all 0.2s ease;
        transform: translateX(0);
        opacity: 0;
        animation: slideInLeft 0.3s ease forwards;
      }

      .mob-dd-content button:nth-child(1) { animation-delay: 0.05s; }
      .mob-dd-content button:nth-child(2) { animation-delay: 0.1s; }
      .mob-dd-content button:nth-child(3) { animation-delay: 0.15s; }
      .mob-dd-content button:nth-child(4) { animation-delay: 0.2s; }
      .mob-dd-content button:nth-child(5) { animation-delay: 0.25s; }
      .mob-dd-content button:nth-child(6) { animation-delay: 0.3s; }

      @keyframes slideInLeft {
        from {
          opacity: 0;
          transform: translateX(-12px);
        }
        to {
          opacity: 1;
          transform: translateX(0);
        }
      }

      .mob-dd-content button:hover {
        color: #fff;
        padding-left: 8px;
        background: rgba(255, 255, 255, 0.02);
      }

      .mob-dd-content button:active {
        color: var(--cyan);
        padding-left: 12px;
        transform: scale(0.98);
      }

      /* ── PRINT ── */
      @media print {
        header,
        .mob,
        footer {
          display: none !important;
        }
        .page.active {
          display: block !important;
        }
      }