.nav-frappe-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 137, 255, .18);
    border: 1px solid rgba(0, 137, 255, .35);
    padding: 9px 12px !important;
    text-decoration: none !important;
    border-radius: 7px;
    font-size: 11.5px;
    font-weight: 700;
    color: #5cb8ff;
    letter-spacing: .02em;
    white-space: nowrap;
    transition: all .2s;
}

.nav-frappe-badge:hover {
    background: rgba(0, 137, 255, .28);
    border-color: rgba(0, 137, 255, .55);
}

.nav-frappe-badge .fr-dot {
    width: 5px;
    height: 5px;
    background: var(--gn3);
    border-radius: 50%;
    animation: blink 2s infinite;
    flex-shrink: 0;
}

.nav-btn-primary {
    background: var(--bl);
    color: #fff;
    border: none;
    padding: 9px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all .2s;
    box-shadow: 0 4px 16px rgba(26, 95, 255, .35);
}

.nav-btn-primary:hover {
    background: var(--bl2);
    transform: translateY(-1px);
}

/* NAV BASE */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

/* SUBMENU */
.has-submenu {
    position: relative;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
    z-index: 100;
}

.submenu li {
    list-style: none;
}

.submenu li a {
    display: block;
    padding: 10px 18px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s;
}

.submenu li a:hover {
    background: #f5f5f5;
    color: #000000;
}

/* DESKTOP HOVER */
@media (min-width: 768px) {
    .has-submenu:hover .submenu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }


}

/* MOBILE STYLE */
@media (max-width: 767px) {
    .nav-links {
        flex-direction: column;
    }

    .submenu li a {
        color: rgba(255, 255, 255, .52);
    }

    .submenu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding-left: 10px;
    }

    .has-submenu.active .submenu {
        display: block;
    }

    .submenu-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

/* ── NAV ── */
nav {
    background: var(--ink);
    padding: 0 64px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 200;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-mark {
    display: grid;
    grid-template-columns: repeat(3, 7px);
    gap: 2.5px;
}

.logo-mark span {
    width: 7px;
    height: 7px;
    border-radius: 2px;
    display: block;
}

.logo-mark span:nth-child(1) {
    background: var(--bl);
    opacity: .9
}

.logo-mark span:nth-child(2) {
    background: var(--bl);
    opacity: .5
}

.logo-mark span:nth-child(3) {
    background: var(--gn);
    opacity: .6
}

.logo-mark span:nth-child(4) {
    background: var(--gn);
    opacity: .4
}

.logo-mark span:nth-child(5) {
    background: var(--bl);
    opacity: .3
}

.logo-mark span:nth-child(6) {
    background: var(--bl);
    opacity: .15
}

.logo-text {
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -.5px;
    color: #fff;
}

.logo-text .dg {
    color: var(--gn3);
}

.nav-links {
    display: flex;
    gap: 10px;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.985);
    text-decoration: none;
    font-size: 14px !important;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 7px;
    transition: all .18s;
}

.nav-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .08);
}

.nav-right {
    display: flex;
    gap: 10px;
    align-items: center;
}

.nav-phone {
    font-size: 14px !important;
    color: rgba(255, 255, 255, .45);
    text-decoration: none;
    font-weight: 500;
    transition: color .2s;
}

.nav-phone:hover {
    color: rgba(255, 255, 255, .85);
}

.nav-btn-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .2);
    color: rgba(255, 255, 255, .72);
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all .2s;
}

.nav-btn-ghost:hover {
    border-color: rgba(255, 255, 255, .45);
    color: #fff;
}

.nav-btn-primary {
    background: var(--bl);
    color: #fff;
    border: none;
    padding: 9px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all .2s;
    box-shadow: 0 4px 16px rgba(26, 95, 255, .35);
}

.nav-btn-primary:hover {
    background: var(--bl2);
    transform: translateY(-1px);
}






/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

/* HAMBURGER ANIMATION */
.hamburger.active span:nth-child(1) {
    transform: rotate(44deg) translateY(10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-47deg) translateY(-9px);
}

/* MOBILE NAV */
@media (max-width: 991px) {
    .nav-links {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: var(--ink);
        flex-direction: column;
        padding: 20px;
        /* gap: 10px; */

        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: 0.3s ease;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links a {
        display: block !important;
        padding: 12px !important;
        font-size: 17px !important;
    }

    .desktop-only {
        display: none !important;
    }
}

@media (max-width: 767px) {

    nav {
        padding: 0 20px;
    }





    .mobile-only {
        display: block;
    }



    .nav-extra {
        margin-top: 10px;
    }

    .w-100 {
        width: 100%;
    }

    /* SUBMENU MOBILE */
    .submenu {
        position: static;
        box-shadow: none;
        display: none;
        background: transparent;
        padding-left: 10px;
    }

    .has-submenu.active .submenu {
        display: block;
    }

    .submenu-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

/* DESKTOP ONLY */
@media (min-width: 768px) {
    .mobile-only {
        display: none;
    }
}

@media (max-width: 991px) {
    .hamburger {
        display: flex;
    }
}









/* Error message styles */
.input-error {
    border-color: #ff4444 !important;
    transition: border-color 0.3s ease;
}

.error-message {
    color: #ff4444;
    font-size: 11px;
    margin-top: 4px;
    display: block;
    animation: fadeIn 0.3s ease;
}

.form-submit-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    animation: slideDown 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading state for submit button */
button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}



.footer-top {
    padding: 52px 64px 44px;
    display: grid;
    grid-template-columns: 372px 16% 14% 25% !important;
    gap: 67px !important;
    max-width: 1300px;
    margin: 0 auto;
    border-bottom: 1px solid rgba(255, 255, 255, .07)
  }






  
  
  *,
  *::before,
  *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  :root {
    --bl: #1a5fff;
    --bl2: #3d7fff;
    --bl3: #eef3ff;
    --gn: #16a34a;
    --gn2: #dcfce7;
    --gn3: #4ade80;
    --ink: #0a0f1e;
    --ink2: #1e293b;
    --ink3: #475569;
    --mid: #94a3b8;
    --fog: #f8fafc;
    --white: #ffffff;
    --bdr: #e2e8f0;
    --amber: #f59e0b;
    --shadow-sm: 0 2px 8px rgba(26, 95, 255, .08);
    --shadow-md: 0 6px 24px rgba(26, 95, 255, .13);
    --shadow-lg: 0 12px 48px rgba(26, 95, 255, .18);
    --fr: #0089ff;
    --fr2: #e6f4ff;
  }

  /* ── FRAPPE NAV BADGE (Placement 1) ── */
  

  .nav-frappe-badge:hover {
    background: rgba(0, 137, 255, .28);
    border-color: rgba(0, 137, 255, .55);
  }

  .nav-frappe-badge .fr-dot {
    width: 5px;
    height: 5px;
    background: var(--gn3);
    border-radius: 50%;
    animation: blink 2s infinite;
    flex-shrink: 0;
  }

  /* ── FRAPPE SECTION (Placement 3) ── */
  .frappe-section {
    background: linear-gradient(135deg, #001a3d 0%, #002a5e 40%, #001a3d 100%);
    padding: 100px 64px;
    position: relative;
    overflow: hidden;
  }

  .frappe-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 137, 255, .18), transparent 65%);
    pointer-events: none;
  }

  .frappe-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
  }

  .frappe-inner {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .frappe-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
  }

  .frappe-logo-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--fr);
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-weight: 800;
    padding: 9px 18px;
    border-radius: 9px;
    letter-spacing: .02em;
  }

  .frappe-logo-pill svg {
    width: 16px;
    height: 16px;
    fill: #fff;
    flex-shrink: 0;
  }

  .frappe-certified {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
  }

  .frappe-certified::before {
    content: '✓';
    width: 18px;
    height: 18px;
    background: rgba(0, 255, 100, .18);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--gn3);
    flex-shrink: 0;
  }

  .frappe-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
  }

  .frappe-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -.5px;
    line-height: 1.06;
    margin-bottom: 14px;
  }

  .frappe-title em {
    font-style: italic;
    color: #5cb8ff;
  }

  .frappe-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.72;
    margin-bottom: 28px;
  }

  .frappe-sub strong {
    color: rgba(255, 255, 255, .82);
    font-weight: 600;
  }

  .frappe-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
  }

  .frappe-li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 14px;
    color: rgba(255, 255, 255, .6);
    line-height: 1.55;
  }

  .frappe-check {
    width: 19px;
    height: 19px;
    border-radius: 5px;
    background: rgba(0, 137, 255, .2);
    border: 1px solid rgba(0, 137, 255, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .frappe-check svg {
    width: 10px;
    height: 10px;
    stroke: #5cb8ff;
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .frappe-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--fr);
    color: #fff;
    border: none;
    padding: 13px 26px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    box-shadow: 0 6px 20px rgba(0, 137, 255, .35);
    transition: all .22s;
  }

  .frappe-cta:hover {
    background: #1a99ff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 137, 255, .45);
  }

  .frappe-cta svg {
    width: 14px;
    height: 14px;
    transition: transform .22s;
  }

  .frappe-cta:hover svg {
    transform: translateX(3px);
  }

  .frappe-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .frappe-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 20px;
    transition: all .22s;
    cursor: default;
  }

  .frappe-card:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(0, 137, 255, .35);
    transform: translateY(-2px);
  }

  .frcard-ico {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .frcard-name {
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
  }

  .frcard-desc {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .42);
    line-height: 1.58;
  }

  .frcard-tag {
    font-size: 10px;
    font-weight: 700;
    color: #5cb8ff;
    background: rgba(0, 137, 255, .15);
    border: 1px solid rgba(0, 137, 255, .22);
    padding: 2px 8px;
    border-radius: 100px;
    display: inline-block;
    margin-top: 9px;
    font-family: 'DM Sans', monospace;
    letter-spacing: .04em;
  }

  /* ── PARTNER BADGES STRIP (Placement 4) ── */
  .partners-strip {
    background: var(--ink);
    padding: 52px 64px;
    border-top: 1px solid rgba(255, 255, 255, .06);
  }

  .partners-inner {
    max-width: 1300px;
    margin: 0 auto;
  }

  .partners-label {
    font-size: 10.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, .28);
    letter-spacing: .14em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }

  .partners-label::before,
  .partners-label::after {
    content: '';
    flex: 1;
    max-width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, .1);
  }

  .partners-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .partner-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .09);
    padding: 12px 20px;
    border-radius: 10px;
    transition: all .2s;
    cursor: default;
  }

  .partner-badge:hover {
    background: rgba(255, 255, 255, .09);
    border-color: rgba(255, 255, 255, .16);
  }

  .partner-badge.frappe {
    border-color: rgba(0, 137, 255, .28);
    background: rgba(0, 137, 255, .1);
  }

  .partner-badge.frappe:hover {
    background: rgba(0, 137, 255, .18);
    border-color: rgba(0, 137, 255, .45);
  }

  .pb-icon {
    font-size: 20px;
    flex-shrink: 0;
  }

  .pb-name {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
  }

  .partner-badge.frappe .pb-name {
    color: #5cb8ff;
  }

  .pb-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, .36);
    margin-top: 1px;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--ink);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }



  /* ══════════════════════════════
   HERO
══════════════════════════════ */
  .hero {
    background: var(--ink);
    overflow: hidden;
    position: relative;
    padding: 96px 64px 88px;
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 25% -5%, rgba(26, 95, 255, .22) 0%, transparent 60%),
      radial-gradient(ellipse 50% 40% at 85% 85%, rgba(22, 163, 74, .12) 0%, transparent 55%);
    pointer-events: none;
  }

  .hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 1300px;
    margin: 0 auto;
  }



  .h-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(26, 95, 255, .15);
    border: 1px solid rgba(26, 95, 255, .3);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 11.5px;
    font-weight: 600;
    color: #7ba7ff;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 24px;
  }

  .h-chip-dot {
    width: 5px;
    height: 5px;
    background: var(--gn3);
    border-radius: 50%;
    animation: blink 2s infinite;
  }

  @keyframes blink {

    0%,
    100% {
      opacity: 1
    }

    50% {
      opacity: .2
    }
  }

  .h-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(40px, 4.5vw, 62px);
    font-weight: 800;
    line-height: .97;
    letter-spacing: -2px;
    color: #fff;
    margin-bottom: 20px;
  }

  .h-title .gradient {
    background: linear-gradient(90deg, #4da8ff, #4ddb6e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .h-sub {
    font-size: 16.5px;
    color: rgba(255, 255, 255, .55);
    line-height: 1.72;
    max-width: 500px;
    margin-bottom: 36px;
    font-weight: 400;
  }

  .h-sub strong {
    color: rgba(255, 255, 255, .85);
    font-weight: 600;
  }

  .h-ctas {
    display: flex;
    gap: 12px;
    margin-bottom: 52px;
    flex-wrap: wrap;
  }

  .hbtn-primary {
    background: var(--bl);
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 9px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    display: flex;
    align-items: center;
    gap: 9px;
    box-shadow: 0 8px 28px rgba(26, 95, 255, .4);
    transition: all .22s;
  }

  .hbtn-primary:hover {
    background: var(--bl2);
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(26, 95, 255, .5);
  }

  .hbtn-primary svg {
    width: 15px;
    height: 15px;
    transition: transform .22s;
  }

  .hbtn-primary:hover svg {
    transform: translateX(4px);
  }

  .hbtn-ghost {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .16);
    color: rgba(255, 255, 255, .8);
    padding: 13px 24px;
    border-radius: 9px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all .22s;
  }

  .hbtn-ghost:hover {
    background: rgba(255, 255, 255, .13);
  }

  .h-proof {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .h-avatars {
    display: flex;
  }

  .h-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    margin-left: -8px;
    flex-shrink: 0;
  }

  .h-avatar:first-child {
    margin-left: 0;
  }

  .h-proof-text {
    font-size: 13px;
    color: rgba(255, 255, 255, .45);
    line-height: 1.4;
  }

  .h-proof-text strong {
    color: rgba(255, 255, 255, .75);
    font-weight: 600;
  }


  .product-window {
    background: #0d1321;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .5), 0 0 0 1px rgba(255, 255, 255, .05);
  }

  .pw-bar {
    background: #151d2e;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
  }

  .pw-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
  }

  .pw-bar-title {
    font-size: 12px;
    color: rgba(255, 255, 255, .32);
    margin-left: 8px;
    font-weight: 500;
  }

  .pw-body {
    padding: 20px;
  }

  .pw-label {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, .28);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 12px;
  }

  .pw-list {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .pw-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .04);
    border-radius: 8px;
    padding: 10px 12px;
  }

  .pw-tag {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: .05em;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .pw-tag.blue {
    background: rgba(26, 95, 255, .2);
    color: #7ba7ff;
  }

  .pw-tag.green {
    background: rgba(22, 163, 74, .2);
    color: #4ade80;
  }

  .pw-tag.amber {
    background: rgba(245, 158, 11, .15);
    color: #fbbf24;
  }

  .pw-row-text {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .52);
  }

  .pw-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    margin-bottom: 14px;
  }

  .pw-metric {
    background: rgba(255, 255, 255, .04);
    border-radius: 8px;
    padding: 10px 12px;
    text-align: center;
  }

  .pw-metric-n {
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
  }

  .pw-metric-n .unit {
    font-size: 11px;
    color: var(--gn3);
    font-family: 'DM Sans', sans-serif;
  }

  .pw-metric-l {
    font-size: 9.5px;
    color: rgba(255, 255, 255, .28);
    margin-top: 2px;
  }

  .pw-typing {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, .03);
    border-radius: 8px;
  }

  .pw-typing-dot {
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, .3);
    border-radius: 50%;
    animation: blink 1.2s infinite;
  }

  .pw-typing-dot:nth-child(2) {
    animation-delay: .2s
  }

  .pw-typing-dot:nth-child(3) {
    animation-delay: .4s
  }

  .pw-typing-text {
    font-size: 11.5px;
    color: rgba(255, 255, 255, .3);
  }

  /* ── LOGOS ── */
  .logos-strip {
    background: var(--fog);
    padding: 26px 64px;
    border-top: 1px solid var(--bdr);
    border-bottom: 1px solid var(--bdr);
  }

  .logos-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
  }

  .logos-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--mid);
    text-transform: uppercase;
    letter-spacing: .08em;
    white-space: nowrap;
  }

  .logos-divider {
    width: 1px;
    height: 24px;
    background: var(--bdr);
    flex-shrink: 0;
  }

  .logos-row {
    display: flex;
    gap: 36px;
    align-items: center;
    flex-wrap: wrap;
  }

  .logo-item {
    font-size: 12.5px;
    font-weight: 800;
    color: var(--mid);
    opacity: .48;
    text-transform: uppercase;
    letter-spacing: .06em;
    transition: opacity .2s;
    cursor: default;
  }

  .logo-item:hover {
    opacity: .9;
  }

  /* ── TRUSTED BY — Option A ── */
  .trusted-v2 {
    background: var(--white);
    padding: 28px 64px;
    border-bottom: 1px solid var(--bdr);
  }

  .ta-inner {
    max-width: 1300px;
    margin: 0 auto;
  }

  .ta-row1 {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 18px;
    flex-wrap: wrap;
  }

  .ta-heading {
    font-size: 11px;
    font-weight: 700;
    color: var(--mid);
    letter-spacing: .1em;
    text-transform: uppercase;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 9px;
    flex-shrink: 0;
  }

  .ta-heading::before {
    content: '';
    width: 18px;
    height: 2px;
    background: linear-gradient(90deg, var(--bl), var(--gn));
    border-radius: 2px;
  }

  .ta-divider {
    width: 1px;
    height: 32px;
    background: var(--bdr);
    flex-shrink: 0;
  }

  .ta-chips {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
  }

  .ta-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--fog);
    border: 1px solid var(--bdr);
    border-radius: 8px;
    padding: 7px 12px;
    transition: all .2s;
    cursor: default;
    white-space: nowrap;
  }

  .ta-chip:hover {
    background: var(--white);
    border-color: rgba(26, 95, 255, .2);
    box-shadow: 0 2px 10px rgba(26, 95, 255, .08);
    transform: translateY(-1px);
  }

  .ta-chip-av {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-size: 11px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
  }

  .ta-chip-name {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--ink);
  }

  .ta-row2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }

  .ta-partners {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
  }

  .ta-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 11.5px;
    font-weight: 700;
    border: 1px solid;
    cursor: default;
    transition: all .2s;
  }

  .ta-pill:hover {
    transform: translateY(-1px);
  }

  .pp-g {
    background: #e6f4ff;
    border-color: rgba(0, 137, 255, .25);
    color: #0070cc;
  }

  .pp-fr {
    background: #fff7ed;
    border-color: rgba(249, 115, 22, .25);
    color: #c2410c;
  }

  .pp-m {
    background: #fdf4ff;
    border-color: rgba(124, 58, 237, .2);
    color: #7c3aed;
  }

  .pp-cl {
    background: #f0fdf4;
    border-color: rgba(22, 163, 74, .2);
    color: var(--gn);
  }

  .pp-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
    animation: blink 2s infinite;
  }

  .ta-stats {
    display: flex;
    gap: 16px;
  }

  .ta-stat {
    font-size: 12px;
    color: var(--mid);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .ta-stat strong {
    color: var(--ink2);
    font-weight: 700;
  }

  .ta-stat+.ta-stat::before {
    content: '·';
    color: var(--bdr);
  }

  /* ── NUMBERS BAR — Option 3 (dark cards + change badge + progress) ── */
  .numbers-bar {
    background: linear-gradient(135deg, #0a0f1e 0%, #0f1b30 100%);
    padding: 52px 64px;
  }

  .numbers-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 16px;
    overflow: hidden;
  }

  .nb-item {
    background: #0a0f1e;
    padding: 28px 32px;
    position: relative;
    transition: background .2s;
  }

  .nb-item:hover {
    background: #0f1b30;
  }

  .nb-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 10px;
    gap: 8px;
  }

  .nb-num {
    font-family: 'Sora', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -2px;
    line-height: 1;
  }

  .nb-num .u {
    font-size: 18px;
    color: var(--gn3);
  }

  .nb-num .ub {
    font-size: 18px;
    color: #7ba7ff;
  }

  .nb-change {
    font-size: 10.5px;
    font-weight: 700;
    background: rgba(77, 219, 80, .1);
    color: var(--gn3);
    padding: 3px 8px;
    border-radius: 5px;
    border: 1px solid rgba(77, 219, 80, .18);
    white-space: nowrap;
    margin-top: 6px;
    flex-shrink: 0;
  }

  .nb-label {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .42);
    line-height: 1.55;
    margin-bottom: 14px;
    font-weight: 400;
  }

  .nb-track {
    height: 3px;
    background: rgba(255, 255, 255, .06);
    border-radius: 2px;
    overflow: hidden;
  }

  .nb-fill {
    height: 100%;
    border-radius: 2px;
  }

  /* ── SECTION UTILITIES ── */
  .sec-tag {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--bl);
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .sec-tag.center {
    justify-content: center;
  }

  .sec-tag::before,
  .sec-tag::after {
    content: '';
    height: 2.5px;
    background: linear-gradient(90deg, var(--bl), var(--gn));
    border-radius: 2px;
  }

  .sec-tag::before {
    width: 28px;
  }

  .sec-tag::after {
    display: none;
  }

  .sec-tag.center::after {
    display: block;
    width: 28px;
  }

  .sec-h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -1px;
    line-height: 1.06;
    margin-bottom: 12px;
  }

  .sec-h2 em {
    font-style: italic;
    color: var(--bl);
  }

  .sec-h2.w {
    color: #fff;
  }

  .sec-h2.w em {
    color: #4ade80;
  }

  .sec-p {
    font-size: 15px;
    color: var(--ink3);
    line-height: 1.72;
  }

  /* ══════════════════════════════
   FEATURES / SERVICES (tabbed)
══════════════════════════════ */
  .features-section {
    padding: 100px 64px;
    background: var(--white);
  }

  .features-inner {
    max-width: 1300px;
    margin: 0 auto;
  }

  .fs-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 56px;
  }

  .feat-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 52px;
    flex-wrap: wrap;
  }

  .feat-tab {
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    border: 1.5px solid var(--bdr);
    color: var(--ink3);
    background: transparent;
    font-family: 'DM Sans', sans-serif;
    transition: all .2s;
  }

  .feat-tab:hover {
    border-color: var(--ink);
    color: var(--ink);
  }

  .feat-tab.active {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
  }

  .feat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
  }


  .feat-tag {
    font-size: 11px;
    font-weight: 700;
    color: var(--bl);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 7px;
  }

  .feat-tag::before {
    content: '';
    width: 16px;
    height: 2px;
    background: var(--bl);
    border-radius: 2px;
  }

  .feat-h {
    font-family: 'Sora', sans-serif;
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -.5px;
    line-height: 1.1;
    margin-bottom: 14px;
  }

  .feat-p {
    font-size: 14.5px;
    color: var(--ink3);
    line-height: 1.74;
    margin-bottom: 28px;
  }

  .feat-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
  }

  .feat-li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--ink3);
    line-height: 1.55;
  }

  .feat-check {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background: var(--gn2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .feat-check svg {
    width: 11px;
    height: 11px;
    stroke: var(--gn);
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .feat-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ink);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all .2s;
    margin-top: 8px;
  }

  .feat-cta:hover {
    background: var(--ink2);
    transform: translateY(-1px);
  }

  .feat-cta svg {
    width: 14px;
    height: 14px;
    transition: transform .2s;
  }

  .feat-cta:hover svg {
    transform: translateX(3px);
  }

  .feat-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 11px;
    border-radius: 6px;
    font-family: 'DM Sans', monospace;
    letter-spacing: .04em;
    margin-bottom: 16px;
  }

  .feat-badge.g {
    color: var(--gn);
    background: var(--gn2);
    border: 1px solid rgba(22, 163, 74, .2);
  }

  .feat-badge.b {
    color: var(--bl);
    background: var(--bl3);
    border: 1px solid rgba(26, 95, 255, .2);
  }

  .feat-panel {
    display: block;
  }

  .feat-right {
    background: var(--fog);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid var(--bdr);
    position: relative;
    overflow: hidden;
  }

  .feat-right::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26, 95, 255, .06), transparent 70%);
    pointer-events: none;
  }

  .fv-card {
    background: var(--white);
    border: 1px solid var(--bdr);
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 12px;
    transition: all .2s;
  }

  .fv-card:last-child {
    margin-bottom: 0;
  }

  .fv-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(26, 95, 255, .2);
  }

  .fv-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 7px;
  }

  .fv-ico {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .fv-ico svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .fv-name {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--ink);
  }

  .fv-status {
    margin-left: auto;
    font-size: 10.5px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 100px;
  }

  .fv-status.g {
    background: var(--gn2);
    color: var(--gn);
  }

  .fv-status.b {
    background: var(--bl3);
    color: var(--bl);
  }

  .fv-status.a {
    background: #fef3c7;
    color: #92400e;
  }

  .fv-detail {
    font-size: 12px;
    color: var(--mid);
    line-height: 1.5;
  }

  .fv-bar {
    height: 4px;
    background: var(--bdr);
    border-radius: 2px;
    margin-top: 8px;
    overflow: hidden;
  }

  .fv-fill {
    height: 100%;
    border-radius: 2px;
  }

  /* ══════════════════════════════
   HOW IT WORKS
══════════════════════════════ */
  .how-section {
    background: var(--ink);
    padding: 100px 64px;
    position: relative;
    overflow: hidden;
  }

  .how-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 10% 50%, rgba(26, 95, 255, .18), transparent 60%),
      radial-gradient(ellipse 40% 40% at 90% 30%, rgba(22, 163, 74, .1), transparent 55%);
    pointer-events: none;
  }

  .how-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
  }

  .how-inner {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .how-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 56px;
  }

  .how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .how-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    padding: 28px;
    transition: all .25s;
    position: relative;
    overflow: hidden;
  }

  .how-card:hover {
    background: rgba(255, 255, 255, .07);
    border-color: rgba(255, 255, 255, .14);
    transform: translateY(-3px);
  }

  .how-num {
    font-family: 'Sora', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: rgba(255, 255, 255, .06);
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -1px;
  }

  .how-ico {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
  }

  .how-ico svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .how-title {
    font-family: 'Sora', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 9px;
  }

  .how-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .48);
    line-height: 1.65;
  }

  .how-time {
    font-size: 11px;
    font-weight: 700;
    margin-top: 18px;
    letter-spacing: .07em;
    font-family: 'DM Sans', monospace;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .how-time-bar {
    width: 14px;
    height: 2px;
    border-radius: 1px;
    display: inline-block;
  }

  /* ══════════════════════════════
   INDUSTRIES
══════════════════════════════ */
  .industries-section {
    padding: 88px 64px;
    background: var(--fog);
  }

  .industries-inner {
    max-width: 1300px;
    margin: 0 auto;
  }

  .ind-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 52px;
  }

  .ind-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .ind-card {
    background: var(--white);
    border: 1px solid var(--bdr);
    border-radius: 14px;
    padding: 24px;
    text-align: center;
    transition: all .25s;
    cursor: default;
  }

  .ind-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: rgba(26, 95, 255, .2);
  }

  .ind-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 24px;
  }

  .ind-name {
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
  }

  .ind-desc {
    font-size: 12.5px;
    color: var(--ink3);
    line-height: 1.55;
  }

  /* ── TRUSTED BY — Option A ── */
  .trusted-v2 {
    background: var(--white);
    padding: 28px 64px;
    border-bottom: 1px solid var(--bdr);
  }

  .ta-inner {
    max-width: 1300px;
    margin: 0 auto;
  }

  /* ── TESTIMONIALS v2 ── */
  .testimonials-v2 {
    padding: 100px 64px;
    background: var(--white);
  }

  .tv2-hd {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 20px;
  }

  .overall-score {
    text-align: right;
  }

  .os-n {
    font-family: 'Sora', sans-serif;
    font-size: 52px;
    font-weight: 800;
    color: var(--ink);
    line-height: 1;
    letter-spacing: -2px;
  }

  .os-stars {
    color: var(--amber);
    font-size: 16px;
    letter-spacing: 2px;
    margin: 4px 0;
  }

  .os-label {
    font-size: 12px;
    color: var(--mid);
    font-weight: 500;
  }

  .testi-v2-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 20px;
    align-items: start;
  }

  .tq-featured {
    background: linear-gradient(135deg, var(--ink) 0%, #0f1b2d 100%);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
  }

  .tq-featured::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26, 95, 255, .22), transparent 65%);
    pointer-events: none;
  }

  .tq-featured::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(22, 163, 74, .14), transparent 65%);
    pointer-events: none;
  }

  .tqf-inner {
    position: relative;
    z-index: 1;
  }

  .tqf-quote-mark {
    font-family: 'Sora', serif;
    font-size: 80px;
    line-height: .7;
    color: rgba(255, 255, 255, .1);
    margin-bottom: 20px;
    user-select: none;
  }

  .tqf-stars {
    color: var(--amber);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 16px;
  }

  .tqf-text {
    font-size: 16px;
    color: rgba(255, 255, 255, .75);
    line-height: 1.72;
    font-style: italic;
  }

  .tqf-text strong {
    color: #fff;
    font-style: normal;
    font-weight: 700;
  }

  .tqf-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, .1);
    margin: 24px 0;
  }

  .tqf-author-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .tqf-author-left {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .tqf-av {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bl), var(--bl2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
  }

  .tqf-name {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
  }

  .tqf-role {
    font-size: 12px;
    color: rgba(255, 255, 255, .45);
    margin-top: 2px;
  }

  .tqf-metric {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    padding: 12px 18px;
    text-align: center;
    flex-shrink: 0;
  }

  .tqf-m-n {
    font-family: 'Sora', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--gn3);
    line-height: 1;
  }

  .tqf-m-l {
    font-size: 10.5px;
    color: rgba(255, 255, 255, .4);
    margin-top: 3px;
    line-height: 1.4;
  }

  .tq-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .tq-card {
    background: var(--white);
    border: 1px solid var(--bdr);
    border-radius: 14px;
    padding: 22px 24px;
    transition: all .22s;
    position: relative;
    overflow: hidden;
  }

  .tq-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    border-radius: 3px 0 0 3px;
  }

  .tq-card:nth-child(1)::before {
    background: linear-gradient(180deg, var(--bl), var(--bl2));
  }

  .tq-card:nth-child(2)::before {
    background: linear-gradient(180deg, var(--gn), var(--gn3));
  }

  .tq-card:nth-child(3)::before {
    background: linear-gradient(180deg, #7c3aed, #a78bfa);
  }

  .tq-card:hover {
    box-shadow: 0 8px 28px rgba(26, 95, 255, .1);
    transform: translateY(-2px);
    border-color: rgba(26, 95, 255, .18);
  }

  .tqc-stars {
    color: var(--amber);
    font-size: 12px;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
  }

  .tqc-text {
    font-size: 13.5px;
    color: var(--ink3);
    line-height: 1.68;
    margin-bottom: 16px;
  }

  .tqc-text strong {
    color: var(--ink2);
    font-weight: 700;
  }

  .tqc-author {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid var(--bdr);
  }

  .tqc-av {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
  }

  .tqc-name {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--ink);
  }

  .tqc-role {
    font-size: 11.5px;
    color: var(--mid);
    margin-top: 1px;
  }

  .tqc-badge {
    margin-left: auto;
    font-size: 10.5px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 100px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .tqc-badge.b {
    background: var(--bl3);
    color: var(--bl);
  }

  .tqc-badge.g {
    background: var(--gn2);
    color: var(--gn);
  }

  .tqc-badge.p {
    background: #f3e8ff;
    color: #7c3aed;
  }

  /* ── ENQUIRY SECTION with right form ── */
  .enquiry-section {
    display: grid;
    grid-template-columns: 1fr 360px;
    background: var(--fog);
    border-top: 1px solid var(--bdr);
  }

  .enquiry-left {
    padding: 72px 64px;
  }

  .eq-kicker {
    font-size: 11px;
    font-weight: 700;
    color: var(--bl);
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .eq-kicker::before {
    content: '';
    width: 20px;
    height: 2.5px;
    background: linear-gradient(90deg, var(--bl), var(--gn));
    border-radius: 2px;
  }

  .eq-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -.8px;
    line-height: 1.06;
    margin-bottom: 14px;
  }

  .eq-sub {
    font-size: 15px;
    color: var(--ink3);
    line-height: 1.72;
    margin-bottom: 32px;
    max-width: 480px;
  }

  .eq-sub strong {
    color: var(--ink2);
    font-weight: 600;
  }

  .eq-checks {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 36px;
  }

  .eq-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--ink3);
  }

  .eq-check-ico {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: var(--gn2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .eq-check-ico svg {
    width: 11px;
    height: 11px;
    stroke: var(--gn);
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .eq-direct {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }

  .eq-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ink);
    color: #fff;
    padding: 12px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all .22s;
  }

  .eq-phone:hover {
    background: var(--ink2);
    transform: translateY(-1px);
  }

  .eq-phone svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }

  .eq-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gn2);
    color: var(--gn);
    padding: 11px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid rgba(22, 163, 74, .25);
    text-decoration: none;
    transition: all .22s;
  }

  .eq-wa:hover {
    background: #c6f6d5;
    transform: translateY(-1px);
  }

  .enquiry-right {
    background: var(--white);
    border-left: 1px solid var(--bdr);
    padding: 40px 32px;
    position: relative;
  }

  .ef-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bl), #4da8ff, var(--gn));
  }

  .ef-title {
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 4px;
  }

  .ef-sub {
    font-size: 12px;
    color: var(--mid);
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .ef-sub::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gn3);
    border-radius: 50%;
    animation: blink 2s infinite;
    flex-shrink: 0;
  }

  .ef-fg {
    margin-bottom: 11px;
  }

  .ef-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: var(--mid);
    margin-bottom: 4px;
    letter-spacing: .07em;
    text-transform: uppercase;
  }

  .ef-input {
    width: 100%;
    padding: 10px 13px;
    border: 1px solid var(--bdr);
    border-radius: 8px;
    font-size: 13.5px;
    font-family: 'DM Sans', sans-serif;
    color: var(--ink);
    background: var(--fog);
    outline: none;
    transition: all .2s;
  }

  .ef-input:focus {
    border-color: rgba(26, 95, 255, .45);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(26, 95, 255, .1);
  }

  .ef-input::placeholder {
    color: var(--mid);
    font-size: 13px;
  }

  .ef-select {
    width: 100%;
    padding: 10px 13px;
    border: 1px solid var(--bdr);
    border-radius: 8px;
    font-size: 13.5px;
    font-family: 'DM Sans', sans-serif;
    color: var(--ink);
    background: var(--fog);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%2394a3b8' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
    transition: all .2s;
    cursor: pointer;
  }

  .ef-select:focus {
    border-color: rgba(26, 95, 255, .45);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(26, 95, 255, .1);
  }

  .ef-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .ef-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--bl), var(--bl2));
    color: #fff;
    border: none;
    padding: 13px;
    border-radius: 9px;
    font-size: 15px;
    font-weight: 800;
    font-family: 'Sora', sans-serif;
    cursor: pointer;
    margin-top: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(26, 95, 255, .3);
    transition: all .25s;
  }

  .ef-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 95, 255, .42);
  }

  .ef-btn:disabled {
    opacity: .65;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
  }

  .ef-btn svg {
    width: 14px;
    height: 14px;
    transition: transform .22s;
  }

  .ef-btn:hover svg {
    transform: translateX(3px);
  }

  .ef-note {
    text-align: center;
    font-size: 11px;
    color: var(--mid);
    margin-top: 10px;
  }

  .ef-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--bdr);
    flex-wrap: wrap;
  }

  .ef-trust-item {
    font-size: 11px;
    color: var(--mid);
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
  }

  .ef-trust-item svg {
    width: 11px;
    height: 11px;
    stroke: var(--gn);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
  }

  /* ══════════════════════════════
   FAQ
══════════════════════════════ */
  .faq-section {
    padding: 80px 64px;
    background: var(--fog);
  }

  .faq-inner {
    max-width: 820px;
    margin: 0 auto;
  }

  .faq-header {
    text-align: center;
    margin-bottom: 48px;
  }

  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .faq-item {
    background: var(--white);
    border: 1px solid var(--bdr);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color .2s;
  }

  .faq-item:hover {
    border-color: rgba(26, 95, 255, .2);
  }

  .faq-item.open {
    border-color: rgba(26, 95, 255, .25);
  }

  .faq-question {
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    gap: 16px;
    user-select: none;
  }

  .faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: var(--bl3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .25s;
  }

  .faq-icon svg {
    width: 12px;
    height: 12px;
    stroke: var(--bl);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    transition: transform .25s;
  }

  .faq-item.open .faq-icon {
    background: var(--ink);
    transform: rotate(45deg);
  }

  .faq-item.open .faq-icon svg {
    stroke: #fff;
  }

  .faq-answer {
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
    font-size: 14.5px;
    color: var(--ink3);
    line-height: 1.74;
  }

  .faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 22px 20px;
  }

  /* ══════════════════════════════
   CTA + FORM
══════════════════════════════ */
  .cta-section {
    background: linear-gradient(135deg, var(--bl) 0%, #0a3fb5 50%, #0d6e35 100%);
    background-size: 200% 100%;
    padding: 80px 64px;
    position: relative;
    overflow: hidden;
  }

  .cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='3' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E");
    pointer-events: none;
  }

  .cta-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  .cta-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    line-height: 1.06;
    margin-bottom: 14px;
  }

  .cta-body {
    font-size: 15px;
    color: rgba(255, 255, 255, .62);
    line-height: 1.72;
    margin-bottom: 32px;
  }

  .cta-body strong {
    color: #fff;
    font-weight: 600;
  }

  .cta-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }

  .cta-btn-w {
    background: #fff;
    color: var(--bl);
    border: none;
    padding: 14px 28px;
    border-radius: 9px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .2);
    transition: all .22s;
    text-decoration: none;
    display: inline-block;
  }

  .cta-btn-w:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .3);
  }

  .cta-btn-out {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, .35);
    color: rgba(255, 255, 255, .85);
    padding: 13px 24px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all .22s;
    text-decoration: none;
    display: inline-block;
  }

  .cta-btn-out:hover {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .58);
  }

  /* Form inside CTA */
  .cta-form-card {
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 18px;
    padding: 36px;
  }

  .cf-title {
    font-family: 'Sora', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
  }

  .cf-sub {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 7px;
  }

  .cf-sub::before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--gn3);
    border-radius: 50%;
    animation: blink 2s infinite;
    flex-shrink: 0;
  }

  .fg {
    margin-bottom: 13px;
  }

  .fl {
    display: block;
    font-size: 10.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, .38);
    margin-bottom: 5px;
    letter-spacing: .07em;
    text-transform: uppercase;
  }

  .fi,
  .fs {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    font-size: 13.5px;
    font-family: 'DM Sans', sans-serif;
    color: #fff;
    background: rgba(255, 255, 255, .1);
    outline: none;
    transition: all .2s;
  }

  .fi::placeholder {
    color: rgba(255, 255, 255, .3);
    font-size: 13px;
  }

  .fi:focus,
  .fs:focus {
    border-color: rgba(255, 255, 255, .5);
    background: rgba(255, 255, 255, .15);
  }

  .fs {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' fill='none'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='rgba(255,255,255,0.4)' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 13px center;
    padding-right: 34px;
    color-scheme: dark;
  }

  .fs option {
    background: #1a2b40;
    color: #fff;
  }

  .frow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .form-submit {
    width: 100%;
    background: #fff;
    color: var(--bl);
    border: none;
    padding: 13px;
    border-radius: 9px;
    font-size: 15.5px;
    font-weight: 800;
    font-family: 'Sora', sans-serif;
    cursor: pointer;
    margin-top: 8px;
    transition: all .25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .15);
  }

  .form-submit:hover {
    background: rgba(255, 255, 255, .92);
    transform: translateY(-1px);
  }

  .form-submit:disabled {
    opacity: .65;
    cursor: not-allowed;
    transform: none;
  }

  .form-submit svg {
    width: 15px;
    height: 15px;
    transition: transform .22s;
  }

  .form-submit:hover svg {
    transform: translateX(3px);
  }

  .form-note {
    text-align: center;
    font-size: 11px;
    color: rgba(255, 255, 255, .3);
    margin-top: 10px;
  }

  /* ── FOOTER ── */
  .footer {
    background: #050c18;
  }

  .footer-top {
    padding: 60px 64px 48px;
    display: grid;
    grid-template-columns: 280px 1fr 1fr 1fr;
    gap: 48px;
    max-width: 1300px;
    margin: 0 auto;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
  }

  .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    text-decoration: none;
  }

  .footer-logo-text {
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 700;
  }

  .footer-logo-text .ps {
    color: #7ba7ff;
  }

  .footer-logo-text .dg {
    color: #4ade80;
  }

  .footer-tagline {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .38);
    line-height: 1.72;
    margin-bottom: 22px;
  }

  .footer-contact a {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: rgba(255, 255, 255, .45);
    text-decoration: none;
    margin-bottom: 9px;
    transition: color .2s;
  }

  .footer-contact a:hover {
    color: #fff;
  }

  .footer-contact a svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    opacity: .4;
  }

  .footer-col-title {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, .28);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 18px;
  }

  .footer-col a {
    display: block;
    font-size: 13.5px;
    color: rgba(255, 255, 255, .44);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color .2s;
  }

  .footer-col a:hover {
    color: #fff;
  }

  .footer-bottom {
    padding: 20px 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1300px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, .2);
  }

  .footer-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }

  .footer-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .34);
    border: 1px solid rgba(255, 255, 255, .08);
    font-family: 'DM Sans', monospace;
    letter-spacing: .04em;
  }

  /* ── SCROLL REVEAL ── */
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .65s ease, transform .65s ease;
  }

  .reveal.on {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── HERO ENTRANCE ── */
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(24px)
    }

    to {
      opacity: 1;
      transform: translateY(0)
    }
  }

  .hero-left>* {
    animation: fadeUp .65s ease both;
  }

  .h-chip {
    animation-delay: .06s
  }

  .h-title {
    animation-delay: .13s
  }

  .h-sub {
    animation-delay: .2s
  }

  .h-ctas {
    animation-delay: .27s
  }

  .h-proof {
    animation-delay: .34s
  }

  .hero-right {
    animation: fadeUp .75s .2s ease both;
  }

  /* ── RESPONSIVE ── */
  @media(max-width:1100px) {

    nav,
    .hero,
    .logos-strip,
    .numbers-bar,
    .features-section,
    .how-section,
    .industries-section,
    .frappe-section,
    .testimonials-section,
    .faq-section,
    .cta-section,
    .partners-strip,
    .footer-top,
    .footer-bottom {
      padding-left: 40px;
      padding-right: 40px;
    }
  }

  @media(max-width:1024px) {
    .hero {
      padding: 64px 40px;
    }

    .hero-grid,
    .feat-grid,
    .frappe-grid {
      grid-template-columns: 1fr;
    }

    .testi-v2-layout,
    .enquiry-section {
      grid-template-columns: 1fr;
    }

    .enquiry-right {
      border-left: none;
      border-top: 1px solid var(--bdr);
    }

    .hero-right {
      display: none;
    }

    .how-grid,
    .ind-grid {
      grid-template-columns: 1fr 1fr;
    }

    .numbers-inner {
      grid-template-columns: 1fr 1fr;
    }

    .footer-top {
      grid-template-columns: 1fr 1fr;
      gap: 36px;
    }

    .tv2-top {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }

    .ta-row1 {
      flex-wrap: wrap;
    }

    .ta-row2 {
      flex-direction: column;
      align-items: flex-start;
    }
  }

  @media(max-width:768px) {
    nav {
      padding: 0 20px;
    }

    .nav-phone,
    .nav-frappe-badge {
      display: none;
    }

    .hero,
    .trusted-v2,
    .numbers-bar,
    .features-section,
    .how-section,
    .industries-section,
    .frappe-section,
    .testimonials-v2,
    .faq-section,
    .enquiry-left,
    .partners-strip {
      padding-left: 20px;
      padding-right: 20px;
    }

    .footer-top,
    .footer-bottom {
      padding-left: 20px;
      padding-right: 20px;
    }

    .h-title {
      font-size: 34px;
      letter-spacing: -1.5px;
    }

    .how-grid,
    .ind-grid,
    .numbers-inner {
      grid-template-columns: 1fr;
    }

    .frappe-cards-grid {
      grid-template-columns: 1fr;
    }

    .ef-row,
    .frow {
      grid-template-columns: 1fr;
    }

    .footer-top {
      grid-template-columns: 1fr;
    }

    .eq-direct {
      flex-direction: column;
    }

    .h-proof {
      flex-wrap: wrap;
    }

    .enquiry-right {
      padding: 28px 20px;
    }
  }

  @media(max-width:480px) {
    .h-title {
      font-size: 30px;
    }

    .h-ctas,
    .cta-btns {
      flex-direction: column;
    }

    .ind-grid {
      grid-template-columns: 1fr 1fr;
    }

    .frappe-cards-grid {
      grid-template-columns: 1fr 1fr;
    }
  }