.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}


.video-background {
    position: fixed; /* or absolute if only hero */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}
.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Optional dark overlay for better text visibility */
.video-background::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
}
#videoLightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(8px);
    z-index: 9999;
}
#videoLightbox.is-active {
    display: flex;
}
/* 🔥 LIGHTBOX BACKGROUND WITH SUBTLE PARTICLE EFFECT */
#formLightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    background: transparent;
    overflow: hidden;
}
#formLightbox.active {
    opacity: 1;
    visibility: visible;
}
/* Backdrop */
.form-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.94); /* Slightly darker */
    backdrop-filter: blur(12px);
    z-index: 1;
}
/* Canvas - Only for lightbox, smaller & softer */
#bg-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.65; /* Reduced overall intensity */
}
/* Dialog stays above */
#formLightbox .form-lightbox__dialog {
    position: relative;
    z-index: 2;
}
/* form css */
/* 🔥 WPFORM DARK UI */
/* FORM CONTAINER */
#wpforms-566 {
  background: transparent;
}
/* LABELS */
#wpforms-566 .wpforms-field-label {
  color: #94a3b8;
  font-size: 13px;
  margin-bottom: 6px;
}
/* REQUIRED STAR */
#wpforms-566 .wpforms-required-label {
  color: #ef4444;
}
/* INPUT + TEXTAREA */
#wpforms-566 input,
#wpforms-566 textarea {
  width: 100%;
  background: #1f2937 !important;
  border: 1px solid #334155 !important;
  border-radius: 10px;
  padding: 10px 10px;
  color: #e2e8f0 !important;
  font-size: 14px;
  transition: all 0.2s ease;
}
/* PLACEHOLDER */
#wpforms-566 input::placeholder,
#wpforms-566 textarea::placeholder {
  color: #64748b;
}
/* FOCUS EFFECT */
#wpforms-566 input:focus,
#wpforms-566 textarea:focus {
  border-color: #2563eb !important;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
  outline: none;
}
/* TEXTAREA HEIGHT */
#wpforms-566 textarea {
  min-height:80px;
}
/* SUBMIT BUTTON */
#wpforms-566 button.wpforms-submit {
  width: 100%;
  border-radius: 10px;
  padding: 12px;
  font-size: 15px;
  font-weight: 500;
  background: linear-gradient(90deg, #22d3ee, #a855f7);
  color: #fff;
  border: none;
  transition: 0.2s;
}
/* BUTTON HOVER */
#wpforms-566 button.wpforms-submit:hover {
  opacity: 0.9;
}
/* FIELD SPACING */
#wpforms-566 .wpforms-field {
  margin-bottom: 8px;
}
/* 🔥 SLOT FIELD (SPECIAL STYLE) */
#wpforms-566-field_6 {
  background: #1e293b !important;
  border: 1px solid #2563eb !important;
  color: #60a5fa !important;
  font-weight: 500;
}
/* 🔥 VIDEO WRAPPER */
.video-lightbox__media {
    width: 100%;
    aspect-ratio: 16 / 9; /* 🔥 key fix */
    border-radius: 10px;
    overflow: hidden;
}
/* 🔥 VIDEO */
.video-lightbox__media video {
    width: 100%;
    height: 100%; /* 🔥 fill container */
    object-fit: cover;
    border-radius: 10px;
}
.video-lightbox__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: transparent; /* 🔥 remove blue background */
    border: none;
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* 🔥 OPTIONAL HOVER EFFECT */
//cards
.problem-card h3,
.feature-card h3,
.why-card h4 {
    font-size: 1rem !important;
}
.problem-card p,
.feature-card p,
.why-card p {
    font-size: 0.95rem !important;
}
/* 🔥 BUTTONS */
.btn-primary,
.btn-secondary {
    font-size: 0.95rem !important;
}
/* 🔥 FOOTER */
.footer-col-label {
    font-size: 0.85rem !important;
}
.footer-col-links li a {
    font-size: 0.95rem !important;
}
.footer-contact-text {
    font-size: 0.95rem !important;
}
.footer-copy-text {
    font-size: 0.8rem !important;
}
.ast-header-wrap,.ast-below-header-bar{
display: none !important;
}
html, body {
/*     background: #020617 !important; */
	 background: transparent !important;
}
/* 🔥 HIDE DIAGRAM ON MOBILE */
@media (max-width: 768px) {
    .solution-diagram {
        display: none !important;
    }
}
/* Elementor override fix */
.elementor {
    background: transparent !important;
}
header {
    margin: 0 !important;
    padding: 0 !important;
}
/* 🔥 FIX NAVBAR HEIGHT */
nav {
    height: 81px;
    display: flex;
    align-items: center;
    overflow: visible;
}
/* 🔥 LOGO BASE SIZE */
.nav-logo img {
    display: block;
    height: 48px;
    width: auto;
    max-width: min(240px, 58vw);
    object-fit: contain;
    transform: none;
}
/* 🔥 REMOVE ALL LINK STATES FOR NAV LOGO */
.nav-logo,
.nav-logo:link,
.nav-logo:visited,
.nav-logo:hover,
.nav-logo:active,
.nav-logo:focus {
    color: #ffffff !important;
    text-decoration: none !important;
    outline: none !important;
    box-shadow: none !important;
}
/* 🔥 REMOVE HOVER EFFECT */
.nav-logo:hover {
    color: #ffffff !important;
}
/* 🔥 FORCE SPAN (Labs) */
.nav-logo span {
    color: #ffffff !important;
    background: none !important;
    -webkit-text-fill-color: #ffffff !important;
}
/* 🔥 FORCE ALL HEADINGS WHITE */
h1, h2, h3, h4, h5, h6 {
    color: #ffffff !important;
}
a:focus {
    outline: none !important;
    box-shadow: none !important;
}
/* Elementor / Astra override */
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    color: #ffffff !important;
}
.ast-single-post .entry-content a,
.ast-comment-content a:not(.ast-comment-edit-reply-wrap a) {
    text-decoration: none !important;
}
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');
body {
    font-family: 'Inter', sans-serif;
}
h1, h2, h3 {
    font-family: 'Space Grotesk', sans-serif;
}
        :root {
            --cyan: #00eaff;
            --violet: #a855f7;
            --navy: #020617;
            --navy2: #0f172a;
            --slate: #cbd5e1;
            --muted: #94a3b8;
            --card-bg: rgba(255,255,255,0.035);
            --card-border: rgba(255,255,255,0.06);
            --font-heading: 'Space Grotesk', sans-serif;
            --font-body: 'Inter', sans-serif;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            background: var(--navy);
            color: #fff;
            font-family: var(--font-body);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        body.menu-open {
            overflow: hidden;
        }
        /* ===== CANVAS BG ===== */
        #bg-canvas {
            position: fixed;
            inset: 0;
            z-index: 0;
            pointer-events: none;
        }
        /* ===== SVG ICON BASE ===== */
        .icon-svg {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .icon-svg svg {
            width: 100%;
            height: 100%;
        }
        /* ===== NAVBAR ===== */
        nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 2.7px 54px;
            background: rgba(2,6,23,0.3);
/*             backdrop-filter: blur(24px); */
            -webkit-backdrop-filter: blur(24px);
            border-bottom: 1px solid rgba(255,255,255,0.04);
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        }
        nav.scrolled {
            padding: 0.9px 27px;
            background: rgba(0,0,0,0.92);
            border-bottom-color: rgba(255,255,255,0.06);
        }
        .nav-logo {
            font-family: var(--font-heading);
            font-size: 1.035rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            color: #fff;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 9px;
            flex-shrink: 0;
            overflow: visible;
        }
        .nav-logo span { color: var(--cyan); }
        .nav-links {
            display: flex;
            gap: 32.4px;
            list-style: none;
            align-items: center;
        }
        .nav-links a {
            color: var(--slate);
            text-decoration: none;
            font-size: 0.765rem;
            font-weight: 500;
            letter-spacing: 0.3px;
            transition: color 0.3s;
            position: relative;
        }
        .nav-links a:not(.nav-cta)::after {
            content: '';
            position: absolute;
            bottom: -3.6px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--cyan);
            transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
        }
        .nav-links a:not(.nav-cta):hover::after { width: 100%; }
        .nav-links a:hover { color: #fff; }
        .nav-cta {
            padding: 8.1px 21.6px;
            border-radius: 7.2px;
            background: linear-gradient(135deg, var(--cyan), var(--violet));
            color: var(--navy) !important;
            font-weight: 600 !important;
            font-size: 0.738rem !important;
            letter-spacing: 0.3px;
            transition: all 0.3s !important;
        }
        .nav-cta:hover { opacity: 0.88; transform: translateY(-1px); color: var(--navy) !important; }
        .nav-cta::after { display: none !important; }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 4.5px;
            cursor: pointer;
            z-index: 200;
        }
        .hamburger span {
            width: 19.8px; height: 1.8px;
            background: #fff;
            border-radius: 2px;
            transition: all 0.3s;
        }
        .mobile-menu-backdrop {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.55);
            z-index: 95;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .mobile-menu-backdrop.open {
            display: block;
            opacity: 1;
        }
        /* ===== SECTIONS ===== */
        section { position: relative; z-index: 1; }
        .container {
            max-width: 1080px;
            margin: 0 auto;
            padding: 0 36px;
        }
        /* ===== HERO ===== */
        #hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 99px 0px 72px;
        }
        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            padding: 6.3px 18px;
            border-radius: 100px;
            border: 1px solid rgba(52,211,153,0.2);
            background: rgba(52,211,153,0.04);
            font-size: 0.648rem;
            font-weight: 600;
            color: var(--cyan);
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 28.8px;
            animation: fadeUp 0.6s ease both;
        }
        .eyebrow-dot {
            width: 5.4px; height: 5.4px;
            border-radius: 50%;
            background: var(--cyan);
            box-shadow: 0 0 7.2px var(--cyan);
            animation: pulse-dot 2s ease-in-out infinite;
        }
        .hero-headline {
            font-family: var(--font-heading);
            font-size: clamp(2.16rem, 4.95vw, 3.78rem);
            font-weight: 700;
            line-height: 1.1;
            max-width: 828px;
            margin-bottom: 25.2px;
            letter-spacing: -0.5px;
            animation: fadeUp 0.7s 0.1s ease both;
        }
        .hero-headline .cyan { color: var(--cyan); text-shadow: 0 0 36px rgba(52,211,153,0.35); }
        .hero-headline .violet { color: var(--violet); text-shadow: 0 0 36px rgba(245,158,11,0.35); }
        .hero-sub {
           
            font-size: 0.945rem;
            line-height: 1.8;
            color: var(--slate);
            font-weight: 300;
            margin-bottom: 39.6px;
            animation: fadeUp 0.7s 0.2s ease both;
        }
        .hero-ctas {
            display: flex;
            gap: 12.6px;
            flex-wrap: wrap;
            justify-content: center;
            margin-bottom: 43.2px;
            animation: fadeUp 0.7s 0.3s ease both;
        }
        .btn-primary {
            padding: 12.6px 28.8px;
            border-radius: 9px;
            background: linear-gradient(135deg, var(--cyan), var(--violet));
            color: var(--navy);
            font-weight: 600;
            font-size: 0.81rem;
            text-decoration: none;
            font-family: var(--font-body);
            transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
            display: inline-flex;
            align-items: center;
            gap: 9px;
            position: relative;
            overflow: hidden;
        }
        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }
        .btn-primary:hover::before { left: 100%; }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10.8px 36px rgba(52,211,153,0.25);
        }
        .btn-primary .icon-svg { width: 14.4px; height: 14.4px; }
        .btn-primary .icon-svg svg { stroke: var(--navy); fill: none; }
        .btn-secondary {
            padding: 12.6px 28.8px;
            border-radius: 9px;
            border: 1px solid rgba(255,255,255,0.12);
            background: rgba(255,255,255,0.03);
            color: #fff;
            font-weight: 500;
            font-size: 0.81rem;
            text-decoration: none;
            font-family: var(--font-body);
            backdrop-filter: blur(10px);
            transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
            display: inline-flex;
            align-items: center;
            gap: 9px;
        }
        .btn-secondary .icon-svg { width: 14.4px; height: 14.4px; }
        .btn-secondary .icon-svg svg { stroke: #fff; fill: none; }
        .btn-secondary:hover {
            border-color: rgba(52,211,153,0.35);
            background: rgba(52,211,153,0.05);
            transform: translateY(-2px);
        }
        .hero-bullets {
            display: flex;
            gap: 25.2px;
            flex-wrap: wrap;
            justify-content: center;
            animation: fadeUp 0.7s 0.4s ease both;
        }
        .hero-bullet {
            display: flex;
            align-items: center;
            gap: 7.2px;
            font-size: 0.765rem;
            color: var(--muted);
            font-weight: 400;
        }
        .hero-bullet .icon-svg { width: 14.4px; height: 14.4px; color: var(--cyan); }
        .hero-product-cards {
            display: flex;
            gap: 21.6px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 54px;
            animation: fadeUp 0.7s 0.5s ease both;
        }
        .product-card {
            width: 198px;
            padding: 25.2px 19.8px;
            border-radius: 14.4px;
            text-align: center;
            text-decoration: none;
            color: #fff;
            background: rgba(255,255,255,0.03);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.06);
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        }
        .product-card:hover {
            transform: translateY(-9px);
            border-color: rgba(52,211,153,0.3);
            box-shadow: 0 18px 54px rgba(52,211,153,0.12);
            background: rgba(52,211,153,0.04);
        }
        .product-card img { height: 50.4px; object-fit: contain; transition: transform 0.4s; }
        .product-card:hover img { transform: scale(1.08); }
        .product-card-title {
            font-family: var(--font-heading);
            font-size: 0.81rem;
            font-weight: 600;
            letter-spacing: 2px;
            margin-top: 14.4px;
        }
        .product-card-sub {
            font-size: 0.675rem;
            color: var(--muted);
            margin-top: 5.4px;
            font-weight: 300;
        }
        /* ===== SECTION SHARED ===== */
        .section-label {
            font-family: var(--font-heading);
            font-size: 0.648rem;
            font-weight: 600;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: var(--cyan);
            margin-bottom: 14.4px;
        }
        .section-title {
            font-family: var(--font-heading);
            font-size: clamp(1.62rem, 3.15vw, 2.34rem);
            font-weight: 700;
            line-height: 1.15;
            margin-bottom: 18px;
            letter-spacing: -0.3px;
        }
        .section-body {
            font-size: 0.9rem;
            line-height: 1.8;
            color: var(--slate);
            font-weight: 300;
        }
        /* ===== DIVIDER ===== */
        .divider {
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
            margin: 0;
        }
        /* ===== PROBLEM SECTION ===== */
        #problem { padding: 45px 0; }
        #problem .container { text-align: center; }
        .problem-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16.2px;
            margin-top: 50.4px;
            text-align: left;
        }
        .problem-card {
            padding: 27px 23.4px;
            border-radius: 12.6px;
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            backdrop-filter: blur(10px);
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        }
        .problem-card:hover {
            border-color: rgba(245,158,11,0.22);
            background: rgba(245,158,11,0.04);
            transform: translateY(-5.4px);
            box-shadow: 0 14.4px 43.2px rgba(245,158,11,0.08);
        }
        .problem-icon {
            width: 39.6px; height: 39.6px;
            border-radius: 9px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16.2px;
            background: rgba(245,158,11,0.08);
            border: 1px solid rgba(245,158,11,0.12);
            color: var(--violet);
            transition: all 0.3s;
        }
        .problem-card:hover .problem-icon {
            background: rgba(245,158,11,0.14);
            transform: scale(1.05);
        }
        .problem-icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
        .problem-card h3 {
            font-family: var(--font-heading);
            font-size: 0.882rem;
            font-weight: 600;
            margin-bottom: 9px;
            letter-spacing: -0.2px;
        }
        .problem-card p {
            font-size: 0.765rem;
            line-height: 1.7;
            color: var(--muted);
            font-weight: 300;
        }
        /* ===== SOLUTION ===== */
        #solution { padding: 45px 0; }
        .solution-inner {
            display: grid;
            grid-template-columns: 1fr 1fr ;
            gap: 72px;
            align-items: center;
        }
        .solution-diagram {
            position: relative;
            height: 306px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .diagram-center {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 25.2px 32.4px;
            border-radius: 14.4px;
            background: linear-gradient(135deg, rgba(52,211,153,0.08), rgba(245,158,11,0.08));
            border: 1px solid rgba(52,211,153,0.15);
            backdrop-filter: blur(20px);
            animation: float 6s ease-in-out infinite;
        }
        .diagram-center .label {
            font-family: var(--font-heading);
            font-size: 0.648rem;
            font-weight: 600;
            letter-spacing: 2px;
            color: var(--cyan);
        }
        .diagram-center .title {
            font-family: var(--font-heading);
            font-size: 0.99rem;
            font-weight: 700;
            margin-top: 3.6px;
        }
        .diagram-node {
            position: absolute;
            padding: 10.8px 18px;
            border-radius: 9px;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            font-family: var(--font-heading);
            font-size: 0.702rem;
            font-weight: 500;
            white-space: nowrap;
            backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            gap: 7.2px;
            transition: all 0.3s;
        }
        .diagram-node .icon-svg { width: 14.4px; height: 14.4px; }
        .diagram-node .icon-svg svg { width: 14.4px; height: 14.4px; }
        .diagram-node.top { top: 0; left: 50%; transform: translateX(-50%); color: var(--cyan); border-color: rgba(52,211,153,0.15); animation: float 5s 0.5s ease-in-out infinite; }
        .diagram-node.bottom { bottom: 0; left: 50%; transform: translateX(-50%); color: var(--violet); border-color: rgba(245,158,11,0.15); animation: float 5s 1s ease-in-out infinite; }
        .diagram-node.left { top: 50%; left: 0; transform: translateY(-50%); animation: float 5s 1.5s ease-in-out infinite; }
        .diagram-node.right { top: 50%; right: 0; transform: translateY(-50%); animation: float 5s 2s ease-in-out infinite; }
        .solution-diff {
            display: flex;
            flex-direction: column;
            gap: 19.8px;
            margin-top: 32.4px;
        }
        .diff-item {
            display: flex;
            gap: 14.4px;
            align-items: flex-start;
            transition: transform 0.3s;
        }
        .diff-item:hover { transform: translateX(4px); }
        .diff-icon {
            width: 37.8px;
            height: 37.8px;
            flex-shrink: 0;
            border-radius: 9px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(52,211,153,0.06);
            border: 1px solid rgba(52,211,153,0.12);
            color: var(--cyan);
            transition: all 0.3s;
        }
        .diff-item:hover .diff-icon {
            background: rgba(52,211,153,0.1);
            transform: scale(1.05);
        }
        .diff-icon svg { width: 16.2px; height: 16.2px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
        .diff-item h4 {
            font-family: var(--font-heading);
            font-size: 0.828rem;
            font-weight: 600;
            margin-bottom: 3.6px;
        }
        .diff-item p {
            font-size: 0.747rem;
            color: var(--muted);
            line-height: 1.65;
            font-weight: 300;
        }
        /* ===== HOW IT WORKS ===== */
        #howitworks { padding: 45px 0; }
        #howitworks .container { text-align: center; }
        .steps-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            margin-top: 57.6px;
            position: relative;
        }
        .steps-row::before {
            content: '';
            position: absolute;
            top: 32.4px;
            left: 12.5%;
            right: 12.5%;
            height: 1px;
            background: linear-gradient(90deg, var(--cyan), var(--violet));
            opacity: 0.2;
            z-index: 0;
        }
        .step {
            padding: 0 18px;
            text-align: center;
            position: relative;
            z-index: 1;
        }
        .step-num {
            width: 64.8px;
            height: 64.8px;
            border-radius: 50%;
            border: 1px solid rgba(52,211,153,0.2);
            background: rgba(52,211,153,0.04);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 19.8px;
            font-family: var(--font-heading);
            font-size: 1.17rem;
            font-weight: 700;
            color: var(--cyan);
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        }
        .step:hover .step-num {
            background: rgba(52,211,153,0.1);
            box-shadow: 0 0 27px rgba(52,211,153,0.15);
            transform: scale(1.08);
        }
        .step h3 {
            font-family: var(--font-heading);
            font-size: 0.855rem;
            font-weight: 600;
            margin-bottom: 9px;
        }
        .step p {
            font-size: 0.747rem;
            color: var(--muted);
            line-height: 1.7;
            font-weight: 300;
        }
        /* ===== FEATURES ===== */
        #features { padding: 45px 0; }
        #features .container { text-align: center; }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16.2px;
            margin-top: 50.4px;
            text-align: left;
        }
        .feature-card {
            padding: 25.2px 21.6px;
            border-radius: 12.6px;
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            backdrop-filter: blur(10px);
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        }
        .feature-card:hover {
            border-color: rgba(52,211,153,0.2);
            background: rgba(52,211,153,0.03);
            transform: translateY(-5.4px);
            box-shadow: 0 14.4px 43.2px rgba(52,211,153,0.08);
        }
        .feature-icon {
            width: 39.6px; height: 39.6px;
            border-radius: 9px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 14.4px;
            background: rgba(52,211,153,0.06);
            border: 1px solid rgba(52,211,153,0.1);
            color: var(--cyan);
            transition: all 0.3s;
        }
        .feature-card:hover .feature-icon {
            background: rgba(52,211,153,0.12);
            transform: scale(1.05);
        }
        .feature-icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
        .feature-card h3 {
            font-family: var(--font-heading);
            font-size: 0.828rem;
            font-weight: 600;
            margin-bottom: 7.2px;
        }
        .feature-card p {
            font-size: 0.738rem;
            color: var(--muted);
            line-height: 1.65;
            font-weight: 300;
        }
        /* ===== USE CASES ===== */
        #usecases { padding: 45px 0; }
        #usecases .container { text-align: center; }
        .tabs {
            display: flex;
            gap: 10.8px;
            justify-content: center;
            flex-wrap: wrap;
            margin: 43.2px 0 36px;
        }
        .tab-btn {
            padding: 9px 19.8px;
            border-radius: 100px;
            border: 1px solid var(--card-border);
            background: var(--card-bg);
            color: var(--muted);
            font-family: var(--font-body);
            font-size: 0.738rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
            backdrop-filter: blur(8px);
        }
        .tab-btn.active, .tab-btn:hover {
            border-color: var(--cyan);
            color: var(--cyan);
            background: rgba(52,211,153,0.06);
            box-shadow: 0 0 18px rgba(52,211,153,0.08);
        }
        .tab-content { display: none; text-align: left; }
        .tab-content.active { display: grid; grid-template-columns: 1fr auto; gap: 36px; align-items: start; animation: fadeIn 0.4s ease; }
        .tab-body h3 {
            font-family: var(--font-heading);
            font-size: 1.26rem;
            font-weight: 700;
            margin-bottom: 12.6px;
            letter-spacing: -0.3px;
        }
        .tab-body p {
            font-size: 0.828rem;
            color: var(--slate);
            line-height: 1.8;
            margin-bottom: 18px;
            font-weight: 300;
        }
        .tab-bullets {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 9px;
        }
        .tab-bullets li {
            display: flex;
            align-items: center;
            gap: 9px;
            font-size: 0.792rem;
            color: var(--slate);
            font-weight: 400;
        }
        .tab-bullets li::before {
            content: '';
            width: 4.5px; height: 4.5px;
            border-radius: 50%;
            background: var(--cyan);
            box-shadow: 0 0 5.4px rgba(52,211,153,0.6);
            flex-shrink: 0;
        }
        .tab-stat {
            text-align: center;
            padding: 36px 28.8px;
            border-radius: 14.4px;
            background: linear-gradient(135deg, rgba(52,211,153,0.05), rgba(245,158,11,0.05));
            border: 1px solid rgba(52,211,153,0.1);
            min-width: 162px;
        }
        .tab-stat-num {
            font-family: var(--font-heading);
            font-size: 2.52rem;
            font-weight: 700;
            color: var(--cyan);
            display: block;
            line-height: 1;
        }
        .tab-stat-label {
            font-size: 0.702rem;
            color: var(--muted);
            margin-top: 10.8px;
            line-height: 1.5;
            font-weight: 300;
        }
        /* ===== WHY US ===== */
        #whyus { padding: 45px 0; }
        .whyus-inner {
            display: grid;
            grid-template-columns: 1fr ;
            gap: 72px;
            align-items: start;
        }
        .whyus-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12.6px;
        }
        .why-card {
            padding: 21.6px 18px;
            border-radius: 10.8px;
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        }
        .why-card:hover {
            border-color: rgba(52,211,153,0.18);
            transform: translateY(-3.6px);
            box-shadow: 0 10.8px 32.4px rgba(0,0,0,0.15);
        }
        .why-icon {
            width: 34.2px; height: 34.2px;
            border-radius: 8.1px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10.8px;
            background: rgba(52,211,153,0.06);
            border: 1px solid rgba(52,211,153,0.1);
            color: var(--cyan);
            transition: all 0.3s;
        }
        .why-card:hover .why-icon { background: rgba(52,211,153,0.1); transform: scale(1.05); }
        .why-icon svg { width: 16.2px; height: 16.2px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
        .why-card h4 {
            font-family: var(--font-heading);
            font-size: 0.792rem;
            font-weight: 600;
            margin-bottom: 5.4px;
        }
        .why-card p {
            font-size: 0.702rem;
            color: var(--muted);
            line-height: 1.65;
            font-weight: 300;
        }
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.756rem;
            margin-top: 9px;
        }
        .comparison-table th {
            padding: 11.7px 14.4px;
            font-family: var(--font-heading);
            font-size: 0.648rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-align: center;
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }
        .comparison-table th:first-child { text-align: left; }
        .comparison-table th.col-us { color: var(--cyan); }
        .comparison-table td {
            padding: 10.8px 14.4px;
            border-bottom: 1px solid rgba(255,255,255,0.03);
            text-align: center;
            color: var(--muted);
            font-weight: 400;
            transition: background 0.2s;
        }
        .comparison-table tr:hover td { background: rgba(255,255,255,0.015); }
        .comparison-table td:first-child { text-align: left; color: var(--slate); font-weight: 500; }
        .check-icon { color: #22c55e; }
        .cross-icon { color: #f43f5e; opacity: 0.5; }
        .check-icon svg, .cross-icon svg { width: 14.4px; height: 14.4px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
        /* ===== CTA BANNER ===== */
        #cta { padding: 45px 0; }
        .cta-box {
            text-align: center;
            padding: 64.8px 54px;
            border-radius: 18px;
            background: linear-gradient(135deg, rgba(52,211,153,0.04), rgba(245,158,11,0.04));
            border: 1px solid rgba(52,211,153,0.08);
            backdrop-filter: blur(20px);
            position: relative;
            overflow: hidden;
        }
        .cta-box::before {
            content: '';
            position: absolute;
            top: -72px; right: -72px;
            width: 288px; height: 288px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(52,211,153,0.06), transparent 70%);
            animation: float 8s ease-in-out infinite;
        }
        .cta-box::after {
            content: '';
            position: absolute;
            bottom: -72px; left: -72px;
            width: 288px; height: 288px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(245,158,11,0.06), transparent 70%);
            animation: float 8s 2s ease-in-out infinite;
        }
        .cta-box h2 {
            font-family: var(--font-heading);
            font-size: clamp(1.62rem, 2.7vw, 2.16rem);
            font-weight: 700;
            margin-bottom: 14.4px;
            position: relative;
            z-index: 1;
            letter-spacing: -0.3px;
        }
        .cta-box p {
            font-size: 0.9rem;
            color: var(--slate);
            margin-bottom: 32.4px;
            max-width: 468px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            z-index: 1;
            font-weight: 300;
        }
        .cta-btns {
            display: flex;
            gap: 12.6px;
            justify-content: center;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }
        /* ===== FOOTER ===== */
    footer {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 20px 0;
    background: rgba(0,0,0,0.2);
}
/* GRID */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}
/* LABEL */
.footer-col-label {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 15px;
}
/* LINKS */
.footer-col-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-col-links li a {
    font-size: 0.8rem;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-col-links li a:hover {
    color: #fff;
}
/* CONTACT */
.footer-contact-text {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.6;
}
.footer-contact-text a {
    color: var(--cyan);
    text-decoration: none;
}
.footer-contact-text a:hover {
    opacity: 0.8;
}
/* SOCIAL */
.footer-socials {
    display: flex;
    gap: 12px;
}
.footer-social-link {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    transition: 0.3s;
}
.footer-social-link:hover {
    background: rgba(52,211,153,0.08);
    border-color: rgba(52,211,153,0.2);
    color: var(--cyan);
    transform: translateY(-2px);
}
.footer-social-link svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}
/* BOTTOM */
.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-copy-text {
    font-size: 0.7rem;
    color: var(--muted);
    text-align: center;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
/* 🔥 MOBILE */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr ;
        gap: 25px;
    }
    .footer-copy-text {
        text-align: center;
    }
}
    
@media (max-width: 768px) {
    /* 🔥 STACK ALL FOOTER SECTIONS */
    .footer-grid {
        grid-template-columns: 1fr; /* one column */
        gap: 30px;
        text-align: center;
    }
    /* 🔥 SPACE BETWEEN SECTIONS */
    .footer-col-label {
        margin-bottom: 10px;
    }
    /* 🔥 LINKS SPACING */
    .footer-col-links {
        gap: 8px;
    }
    /* 🔥 CONTACT TEXT */
    .footer-contact-text {
        font-size: 0.85rem;
    }
    /* 🔥 SOCIAL ICONS */
    .footer-socials {
        justify-content: center;
    }
    /* 🔥 CENTER BOTTOM TEXT */
    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
    .footer-copy-text {
        text-align: center;
        font-size: 0.7rem;
    }
}
/* ===== ANIMATIONS ===== */
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(25.2px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-9px); }
        }
        @keyframes pulse-dot {
            0%, 100% { opacity: 1; box-shadow: 0 0 7.2px rgba(52,211,153,0.7); }
            50% { opacity: 0.5; box-shadow: 0 0 14.4px rgba(52,211,153,0.9); }
        }
        @keyframes gradient-shift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        .reveal {
            opacity: 0;
            transform: translateY(28.8px);
            transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .reveal-delay-1 { transition-delay: 0.08s; }
        .reveal-delay-2 { transition-delay: 0.16s; }
        .reveal-delay-3 { transition-delay: 0.24s; }
        .reveal-delay-4 { transition-delay: 0.32s; }
        .reveal-delay-5 { transition-delay: 0.40s; }
        .reveal-delay-6 { transition-delay: 0.48s; }
        .reveal-delay-7 { transition-delay: 0.56s; }
        .reveal-delay-8 { transition-delay: 0.64s; }
        /* ===== CLASSIC BLUE/VIOLET PALETTE OVERRIDES ===== */
        .hero-headline .cyan { text-shadow: 0 0 36px rgba(0,234,255,0.4); }
        .hero-headline .violet { text-shadow: 0 0 36px rgba(168,85,247,0.4); }
        .btn-primary:hover { box-shadow: 0 10.8px 36px rgba(0,234,255,0.25); }
        .product-card:hover { border-color: rgba(0,234,255,0.3); box-shadow: 0 18px 54px rgba(0,234,255,0.12); background: rgba(0,234,255,0.04); }
        .problem-card:hover { border-color: rgba(168,85,247,0.25); background: rgba(168,85,247,0.04); box-shadow: 0 14.4px 43.2px rgba(168,85,247,0.08); }
        .problem-icon { background: rgba(168,85,247,0.08); border-color: rgba(168,85,247,0.12); }
        .problem-card:hover .problem-icon { background: rgba(168,85,247,0.14); }
        .diagram-center { background: linear-gradient(135deg, rgba(0,234,255,0.08), rgba(168,85,247,0.08)); border-color: rgba(0,234,255,0.15); }
        .diagram-node.top { border-color: rgba(0,234,255,0.15); }
        .diagram-node.bottom { border-color: rgba(168,85,247,0.15); }
        .diff-icon { background: rgba(0,234,255,0.06); border-color: rgba(0,234,255,0.12); }
        .diff-item:hover .diff-icon { background: rgba(0,234,255,0.1); }
        .step-num { border-color: rgba(0,234,255,0.2); background: rgba(0,234,255,0.04); }
        .step:hover .step-num { background: rgba(0,234,255,0.1); box-shadow: 0 0 27px rgba(0,234,255,0.15); }
        .feature-card:hover { border-color: rgba(0,234,255,0.2); background: rgba(0,234,255,0.03); box-shadow: 0 14.4px 43.2px rgba(0,234,255,0.08); }
        .feature-icon { background: rgba(0,234,255,0.06); border-color: rgba(0,234,255,0.1); }
        .feature-card:hover .feature-icon { background: rgba(0,234,255,0.12); }
        .tab-btn.active, .tab-btn:hover { background: rgba(0,234,255,0.06); box-shadow: 0 0 18px rgba(0,234,255,0.08); }
        .tab-bullets li::before { box-shadow: 0 0 5.4px rgba(0,234,255,0.7); }
        .tab-stat { background: linear-gradient(135deg, rgba(0,234,255,0.05), rgba(168,85,247,0.05)); border-color: rgba(0,234,255,0.1); }
        .why-card:hover { border-color: rgba(0,234,255,0.18); }
        .why-icon { background: rgba(0,234,255,0.06); border-color: rgba(0,234,255,0.1); }
        .why-card:hover .why-icon { background: rgba(0,234,255,0.1); }
        .cta-box { background: linear-gradient(135deg, rgba(0,234,255,0.04), rgba(168,85,247,0.04)); border-color: rgba(0,234,255,0.08); }
        .cta-box::before { background: radial-gradient(circle, rgba(0,234,255,0.06), transparent 70%); }
        .cta-box::after { background: radial-gradient(circle, rgba(168,85,247,0.06), transparent 70%); }
        .footer-social-link:hover { background: rgba(0,234,255,0.08); border-color: rgba(0,234,255,0.2); }
        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            nav { padding: 14.4px 27px; }
            .solution-inner, .whyus-inner { grid-template-columns: 1fr; gap: 45px; }
            .features-grid { grid-template-columns: repeat(2, 1fr); }
            .problem-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: repeat(3, 1fr); }
        }
@media (max-width: 768px) {
    /* 🔥 RESET ALL GAPS */
    body, html {
        margin: 0 !important;
        padding: 0 !important;
    }
    /* REMOVE ELEMENTOR TOP/BOTTOM SPACE */
    .elementor-section:first-child {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    .elementor-section:last-child {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    /* 🔥 NAVBAR */
    nav {
        padding: 0px 18px;
        position: relative;
        margin-top: 0 !important;
    }
    .nav-logo img {
        height: 40px;
        max-width: 168px;
    }
    nav.scrolled {
        padding: 9px 18px;
    }
    /* 🔥 MOBILE MENU (DROPDOWN) */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: auto;
        background: rgba(8, 12, 20, 0.96);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column;
        align-items: flex-start;
        gap: 5.4px;
        padding: 18px;
        border-top: 1px solid rgba(255,255,255,0.08);
        opacity: 0;
        transform: translateY(-9px);
        transition: all 0.3s ease;
        z-index: 110;
    }
    /* 🔥 OPEN MENU */
    .nav-links.open {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }
    .nav-links li {
        width: 100%;
    }
    .nav-links a {
        display: block;
        width: 100%;
        font-size: 0.9rem;
        padding: 10.8px 9px;
        border-radius: 7.2px;
    }
    .nav-links a:not(.nav-cta)::after {
        display: none;
    }
    .nav-links a:not(.nav-cta):hover {
        background: rgba(255,255,255,0.04);
    }
    .nav-links .nav-cta {
        margin-top: 9px;
        text-align: center;
        width: 100%;
    }
    /* 🔥 HAMBURGER */
    .hamburger {
        display: flex;
        cursor: pointer;
    }
    /* 🔥 LAYOUT */
    .container {
        padding: 0 18px;
    }
    #hero {
        margin-top: 0 !important;
        padding: 27px 18px 54px !important;
    }
    /* 🔥 GRIDS */
    .steps-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 27px;
    }
    .steps-row::before {
        display: none;
    }
    .features-grid,
    .problem-grid,
    .tab-content.active,
    .whyus-grid {
        grid-template-columns: 1fr;
    }
    .tab-stat {
        margin-top: 9px;
    }
    /* 🔥 CTA */
    .cta-box {
        padding: 43.2px 25.2px;
    }
    /* 🔥 TABLE */
    .comparison-table {
        font-size: 0.702rem;
    }
    .comparison-table th,
    .comparison-table td {
        padding: 8.1px 9px;
    }
    /* 🔥 FOOTER */
    footer {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28.8px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    .footer-copy-text {
        text-align: center;
    }
    /* 🔥 REMOVE LAST SECTION GAP */
    section:last-of-type {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    /* 🔥 SOLUTION DIAGRAM */
    .solution-diagram {
        height: auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 10.8px;
        justify-items: center;
        padding: 7.2px 0;
    }
    .diagram-center {
        animation: none;
        width: min(100%, 234px);
        order: 3;
    }
    .diagram-node {
        position: static;
        transform: none !important;
        animation: none;
        width: min(100%, 252px);
        justify-content: center;
    }
    .diagram-node.top { order: 1; }
    .diagram-node.left { order: 2; }
    .diagram-node.right { order: 4; }
    .diagram-node.bottom { order: 5; }
    /* 🔥 PREVENT EXTRA SCROLL GAP */
    body {
        overflow-x: hidden;
    }
}
        @media (max-width: 480px) {
            .hero-headline { font-size: 1.8rem; }
            .hero-ctas { flex-direction: column; align-items: center; }
            .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
            .footer-grid { grid-template-columns: 1fr; }
        }
// arrow
#ast-scroll-top{
display:none !important;
opacity:0 !important;
visibility:hidden !important;
pointer-events:none !important;
}
/* 🔥 FORM LIGHTBOX BACKDROP */
.form-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}
.form-lightbox.active {
    opacity: 1;
    visibility: visible;
}
/* 🔥 DARK BACKGROUND */
.form-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
}
/* ===============================
   🔥 FORM LIGHTBOX (FINAL)
================================= */
#formLightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
#formLightbox.active {
    opacity: 1;
    visibility: visible;
}
/* 🔥 BACKDROP */
.form-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(12px);
}
/* 🔥 POPUP BOX */
.form-lightbox__dialog {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 920px;
    max-height: 100vh;
    overflow-y: auto;
    background: linear-gradient(180deg, #0b1220, #020617);
    border-radius: 20px;
    padding: 28px;
    border: 1px solid rgba(0, 234, 255, 0.15);
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.3s ease;
}
#formLightbox.active .form-lightbox__dialog {
    transform: scale(1);
    opacity: 1;
}
/* 🔥 CLOSE BUTTON */
.form-lightbox__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    z-index: 10; /* 🔥 ADD THIS */
    pointer-events: auto; /* 🔥 ADD THIS */
}
.form-lightbox__close:hover {
    background: rgba(0, 234, 255, 0.15);
    border-color: rgba(0, 234, 255, 0.4);
}
/* 🔥 MOBILE FIX */
@media (max-width: 768px) {
  /* 🔥 POPUP FIX */
  .form-lightbox__dialog {
    width: 100%;
    height: 80vh;
    max-width: 100% !important; /* 🔥 IMPORTANT FIX */
    margin: 0;
    max-height: 100vh;
    border-radius: 0;
    padding: 10px;
    overflow-y: auto;
    transform: none;
    opacity: 1;
    box-shadow: none;
  }
  /* 🔥 GRID FIX (SEPARATE BLOCK) */
  .bk-body {
    grid-template-columns: 1fr !important;
  }
  /* 🔥 CLOSE BUTTON */
  .form-lightbox__close {
margin-top:0px;
    right: 10px;
    width: 30px;
    height: 30px;
    font-size: 19px;
  }
}
  /* 🔥 TEXT SIZE ADJUST */
  .form-title {
    font-size: 18px;
  }
  .form-subtitle {
    font-size: 13px;
  }
}