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

        :root {
            --purple: #84008a;
            --purple-light: #8b5cf6;
            --purple-dark: #4c1d95;
            --purple-glow: rgba(108, 43, 217, 0.18);
            --navy: #0a0d1a;
            --navy-card: #111427;
            --text: #e2e8f0;
            --text-muted: #94a3b8;
            --white: #ffffff;
            --border: rgba(255, 255, 255, 0.08);
            --gradient: #84008a;
        }

        .container {
            width: 100%;
            max-width: 1300px;
            margin: 0 auto;
        }

        header.header-main.sticky {
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 1000;
            transition: all 0.5s ease;
        }

        header.header-main.sticky nav.lp-nav {
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: "Avenir", sans-serif;
            background-color: #fff;
            color: #1e1b4b;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* ===== NAVBAR ===== */
        .lp-nav {
            position: relative;
            top: 0;
            z-index: 1000;
            background: #fff;
            padding: 30px 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-radius: 40px;
            margin-block: 21px;
            box-shadow: 0px 0px 15px #efeded;
            padding-block: 20px;
        }

        .lp-nav .brand img {
            height: 36px;
        }

        .lp-nav .nav-links {
            display: flex;
            gap: 36px;
            list-style: none;
            margin: 0;
        }

        .mobile-only-login {
            display: none !important;
        }

        .lp-nav .nav-links a {
            text-decoration: none;
            color: #374151;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color .2s;
        }

        .lp-nav .nav-links a:hover {
            color: var(--purple);
        }

        .lp-nav .nav-actions {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .lp-nav .btn-login {
            color: #374151;
            font-weight: 600;
            text-decoration: none;
            font-size: 0.9rem;
        }

        .lp-nav .btn-login:hover {
            color: var(--purple);
        }

        .btn-cta {
            background: #770084;
            color: #fff;
            font-weight: 700;
            font-size: 16px;
            padding: 10px 20px;
            border-radius: 5px;
            border: none;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0px 1px 2px 0px #0000000D;
            /* border-top: 1px solid var(--color-black-0, #000000); */
            transition: transform .2s, box-shadow .2s;
        }

        .btn-cta:hover {
            background: #5C0066;
            transform: translateY(-2px);
            color: #fff;
        }

        .what-preview iframe,
        .what-preview img {
            width: 100%;
            height: 100%;
            border-radius: 20px;
            object-fit: cover;
        }

        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #374151;
            cursor: pointer;
        }

        .mobile-drawer {
            position: fixed !important;
            top: 0 !important;
            right: 0 !important;
            width: 100vw !important;
            height: 100vh !important;
            height: 100dvh !important;
            background: #ffffff !important;
            z-index: 999999 !important;
            padding: 24px 24px 32px 24px;
            box-sizing: border-box;
            overflow-y: auto;
            overscroll-behavior: contain;
            transform: translateX(100%);
            transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s ease;
            display: flex !important;
            flex-direction: column;
            justify-content: space-between;
            visibility: hidden;
            pointer-events: none;
        }

        /* ===== HERO ===== */
        .hero {
            display: block;
            padding: 0;
            overflow: hidden;
            position: relative;
            background: #fff;
            min-height: 760px;
        }

        /* Photo background element */
        .hero-photo-bg {
            position: absolute;
            top: 0;
            right: 0;
            width: 75%;
            height: 100%;
            z-index: 0;
            overflow: hidden;
        }

        .hero-photo-bg>img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: 94%;
            display: block;
        }

        /* Light overlay to ensure left edge blends cleanly */
        .hero-photo-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 35%;
            height: 100%;
            background: linear-gradient(to right, #ffffff 30%, rgba(255, 255, 255, 0) 100%);
            z-index: 1;
        }

        /* Floating badges anchored inside the photo area */
        .hero-photo-bg .hero-float {
            z-index: 2;
        }

        .hero>.container {
            position: relative;
            z-index: 2;
            padding-top: 160px;
            padding-bottom: 100px;
        }

        .hero-inner {
            max-width: 100%;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 20px;
            width: 100%;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(108, 43, 217, 0.1);
            border: 1px solid rgba(108, 43, 217, 0.2);
            color: var(--purple);
            font-size: 0.8rem;
            font-weight: 600;
            padding: 6px 14px;
            border-radius: 50px;
            margin-bottom: 28px;
            letter-spacing: 0.05em;
        }

        .hero-title {
            font-size: 80px;
            font-weight: 500;
            line-height: 80px;
            color: #0f1726;
            margin-bottom: 32px;
            letter-spacing: -2.2px;
        }

        .hero-btns a.btn-outline-purple:hover {
            background: transparent;
            color: #111;
            opacity: 0.5;
        }

        .what-section .section-title span {
            display: block;
            color: #0F172A;

        }

        .hero-title .highlight {
            background: linear-gradient(90deg, #4fc3f7, #7b3fe4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: block;
            font-style: italic;
        }

        .hero-sub {
            font-size: 20px;
            font-weight: 300;
            color: #64748B;
            max-width: 512px;
            margin-bottom: 32px;
            line-height: 1.7;
        }

        .hero-btns {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }

        .btn-outline-purple {
            padding: 16px 32px;
            border-radius: 9999px;
            border: 2px solid #E2E8F0;
            font-weight: 700;
            font-size: 0.9rem;
            text-decoration: none;
            transition: all .2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #1E293B;
        }

        .hero-btns a.btn-outline-purple i {
            color: #830089;
            font-size: 16px;
        }

        .hero-btns a.btn-cta {
            display: flex;
            align-items: center;
            gap: 5px;
            background: #770084;
            box-shadow: 0px 1px 2px 0px #0000000D;
            /* border-top: 1px solid var(--color-black-0, #000000); */
            border-radius: 9999px;
        }

        .hero-btns a.btn-cta:hover {
            background: #5C0066;
            transform: translateY(-2px);
            color: #fff;
        }

        .btn-outline-purple:hover {
            background: var(--purple);
            color: #fff;
        }

        .hero-image {
            flex: 1;
            position: relative;
            display: none;
        }

        .hero-image img {
            width: 100%;
            border-radius: 20px;
        }

        @keyframes float {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-10px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        @keyframes floatReverse {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(10px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        .hero-float {
            position: absolute;
            background: #fff;
            border-radius: 14px;
            padding: 12px 18px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .hero-float.f1 {
            top: 60px;
            right: 40px;
            color: #1e1b4b;
            animation: floatReverse 5s ease-in-out infinite;
        }

        .hero-float.f2 {
            bottom: 60px;
            left: 220px;
            color: #1e1b4b;
            animation: floatReverse 4.5s ease-in-out infinite;
        }

        .hero-float.f3 {
            top: 100px;
            left: 120px;
            animation: float 4s ease-in-out infinite;
        }

        .hero-float.f4 {
            bottom: 40px;
            right: 40px;
            animation: float 5.5s ease-in-out infinite;
        }

        .team-section .section-title {

            font-size: 34px;

        }

        .card .icon-1 {
            color: #22D3EE;
        }

        .card .icon-2 {
            color: #A855F7;
        }

        .card .icon-3 {
            color: #FFFFFF;
        }

        .hero-float.dark {
            background: #0f172a;
            color: #fff;
            border: 1px solid #1e293b;
        }

        .hero-float .icon-circle-green {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: #d1fae5;
            color: #10b981;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
        }

        .hero-float .float-text {
            display: flex;
            flex-direction: column;
            gap: 2px;
            align-items: flex-start;
        }

        .hero-float .float-text strong {
            font-size: 13px;
            font-weight: 600;
            line-height: 1.2;
            color: #1e1b4b;
        }

        .hero-float.dark .float-text strong {
            color: #fff;
        }

        .hero-float .float-text span {
            font-size: 11px;
            color: #64748b;
            font-weight: 400;
            line-height: 1.2;
        }

        .hero-float.dark .float-text span {
            color: #94a3b8;
        }

        .hero-float .avatar-circle {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: #8b5cf6;
            position: relative;
        }

        .hero-float .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
        }

        .dot-green {
            background: #10b981;
        }

        .dot-purple {
            background: var(--purple);
        }

        .dot-cyan {
            background: #06b6d4;
            position: absolute;
            bottom: 0;
            right: -2px;
            border: 2px solid #0f172a;
            width: 10px !important;
            height: 10px !important;
        }

        /* ===== TRUST STRIP ===== */
        .trust-strip {
            background: #fff;
            padding: 28px 5%;
            text-align: center;
            border-bottom: 1px solid #f0f0f0;
        }

        .trust-strip p {
            font-size: 0.85rem;
            color: #94a3b8;
            font-weight: 500;
            letter-spacing: 0.05em;
            margin-bottom: 0;
        }

        /* ===== SECTION COMMONS ===== */
        .pd-100 {
            padding-block: 128px;
        }

        .section-label {
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1.4px;
            color: #94A3B8;
            line-height: 20px;
            text-transform: uppercase;
            margin-bottom: 48px;
        }

        .grow-section p {
            font-size: 16px;
            color: #94a3b8;
            max-width: 51%;
            font-weight: 500;
            line-height: 1.7;
        }

        .grow-section h2.section-title {
            font-size: 44px;
            color: rgb(15, 22, 42);
            text-transform: capitalize;
            text-align: center;
            font-weight: 700;
        }

        .what-section .section-title {
            font-size: 60px;
            font-weight: 600;
            color: #CBD5E1;
            margin-bottom: 48px;
            line-height: 60px;

            max-width: 989px;
        }

        .section-sub {
            font-size: 20px;
            color: #64748B;
            max-width: 60%;
            font-weight: 300;
            line-height: 28px;
        }

        .section-sub span {
            color: #84008a;
            font-weight: 600;
        }

        .text-center-block {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* ===== WHAT WE DO ===== */
        .what-section {
            background: #fff;
        }

        .what-preview {
            width: 100%;
            max-width: 800px;
            margin: 48px auto 0;
            background: #1e1b4b;
            border-radius: 20px;
            position: relative;
            height: 450px;
            box-shadow: 0px 0px 14px #1c191961;
        }

        .what-preview-bar {
            background: #150d2e;
            padding: 12px 20px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

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

        .dot-red {
            background: #ff5f57;
        }

        .dot-yellow {
            background: #ffbd2e;
        }

        .dot-green2 {
            background: #28c840;
        }

        .what-preview-body {
            padding: 28px;
        }

        .preview-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            margin-bottom: 12px;
        }

        .preview-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 10px;
            padding: 14px;
            color: #e2e8f0;
        }

        .preview-card .pc-label {
            font-size: 0.65rem;
            color: #8b5cf6;
            font-weight: 600;
            margin-bottom: 6px;
        }

        .preview-card .pc-val {
            font-size: 1.2rem;
            font-weight: 700;
        }

        .preview-card .pc-bar {
            height: 4px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 2px;
            margin-top: 8px;
            overflow: hidden;
        }

        .preview-card .pc-bar-fill {
            height: 100%;
            background: var(--gradient);
            border-radius: 2px;
        }

        .preview-list {
            list-style: none;
        }

        .preview-list li {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 14px;
            border-radius: 8px;
            margin-bottom: 6px;
            background: rgba(255, 255, 255, 0.04);
            color: #cbd5e1;
            font-size: 0.8rem;
        }

        .preview-list li .badge-pill {
            padding: 3px 10px;
            border-radius: 50px;
            font-size: 0.7rem;
            font-weight: 600;
        }

        .badge-green {
            background: rgba(16, 185, 129, 0.15);
            color: #10b981;
        }

        .badge-yellow {
            background: rgba(245, 158, 11, 0.15);
            color: #f59e0b;
        }

        .badge-purple-pill {
            background: rgba(139, 92, 246, 0.2);
            color: #a78bfa;
        }

        /* ===== CORE SYSTEM ===== */
        .core-section {
            background: #FCFCFD;
            text-align: center;
        }

        .core-grid {
            display: flex;
            gap: 40px;
            align-items: center;
            margin-top: 60px;
        }

        .core-features {
            list-style: none;
        }

        .core-features li {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 8px;
            padding: 25px;
            background: transparent;
            border-radius: 16px;
            border: 2px solid transparent;
        }

        .core-features li:hover,
        .core-features li.active {
            background: rgb(255 255 255 / 90%);
            border: 2px solid #84008a;
            box-shadow: 0px 8px 10px -6px #7700840D;
        }

        .core-features li:hover .core-icon,
        .core-features li.active .core-icon {
            background: var(--purple);
        }

        .team-section-main img {
            width: 100%;
            height: 100%;
        }

        .core-icon {
            width: 44px;
            height: 44px;
            min-width: 44px;
            border-radius: 12px;
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--purple);
            font-size: 1.1rem;
            border: 1px solid rgba(108, 43, 217, 0.15);
        }

        .core-icon i {
            color: #5b6e85;
        }

        /* .core-features li:hover .core-icon i {
            color: #770084;
            background-color: #7700841A;
        } */

        .core-features li h5 {
            font-size: 20px;
            font-weight: 700;
            color: #475569;
            margin-bottom: 8px;
        }

        .core-features li:hover h5,
        .core-features li.active h5 {
            color: #0F172A;

        }

        .core-features li:hover p,
        .core-features li.active p {
            opacity: 1;

        }

        .core-features li p {
            font-size: 14PX;
            color: #64748B;
            font-weight: 350;
            margin: 0;
            opacity: 0;
        }

        .core-grid ul.core-features {
            width: 40%;
            padding: 0;
            text-align: left;
        }

        .core-grid .core-visual {
            width: 60%;
        }

        .core-grid .core-visual img {
            width: 100%;
            height: 100%;
        }

        .cv-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 14px;
            gap: 12px;
        }

        .cv-item {
            flex: 1;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 12px;
            color: #e2e8f0;
            font-size: 0.75rem;
        }

        .cv-item strong {
            display: block;
            font-size: 1.1rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 2px;
        }

        .progress-bar-wrap {
            margin-top: 10px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 4px;
            height: 6px;
        }

        .progress-fill {
            height: 100%;
            border-radius: 4px;
            background: var(--gradient);
        }

        /* ===== WORKFLOW ===== */
        .workflow-section {
            background: #fff;
        }

        .workflow-grid {
            display: flex;
            gap: 0;
            align-items: center;
        }

        .workflow-grid .workflow-steps {
            width: 40%;
        }

        .workflow-grid .workflow-steps a {
            color: #84008a;
            text-decoration: none;
            font-weight: 500;
        }

        .workflow-grid .workflow-steps p {
            font-size: 18px;
            color: #64748B;
            max-width: 70%;
            font-weight: 300;
            line-height: 28px;
        }

        .workflow-section h2.section-title {
            font-size: 48px;
            color: #0F172A;
            text-transform: capitalize;
            padding-right: 150px;
            font-weight: 500;
            margin-bottom: 32px;
        }

        .workflow-grid .workflow-visual {
            width: 60%;
        }

        .workflow-steps {}

        .workflow-step {
            display: flex;
            gap: 18px;
            margin-bottom: 28px;
        }

        .step-icon {
            width: 48px;
            height: 48px;
            min-width: 48px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .step-icon.purple {
            background: rgba(108, 43, 217, 0.12);
            color: var(--purple);
        }

        .step-icon.blue {
            background: rgba(59, 130, 246, 0.12);
            color: #3b82f6;
        }

        .step-icon.green {
            background: rgba(16, 185, 129, 0.12);
            color: #10b981;
        }

        .workflow-step h5 {
            font-size: 0.95rem;
            font-weight: 700;
            color: #1e1b4b;
            margin-bottom: 4px;
        }

        .workflow-step p {
            font-size: 0.85rem;
            color: #64748b;
            margin: 0;
        }

        .workflow-visual {
            display: grid;
            gap: 14px;
        }

        .wv-card {
            background: #fff;
            border: 1px solid #F1F5F9;
            border-radius: 24px;
            padding: 32px;
            display: flex;
            gap: 24px;
        }

        .wv-icon.two {
            background: #7700840D;
            border: 1px solid rgba(119, 0, 132, 0.1);
        }

        .wv-icon.two span {
            color: #7f23ce;
        }

        .wv-icon.three {
            background: #F8FAFC;
            border: 1px solid #E2E8F0;
        }

        .wv-icon.three span {
            color: #334155;
        }

        .wv-icon {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            background: #ECFEFF;
            font-weight: 900;
            color: #06B6D4;
            border: 1px solid #CFFAFE;
        }

        .wv-card h6 {
            font-size: 24px;
            font-weight: 700;
            color: #0F172A;
            margin-bottom: 12px;
        }

        .wv-icon span {
            color: #00949c;
            font-size: 18px;
            font-weight: 700;
        }

        .wv-card p {
            font-size: 18px;
            line-height: 29px;
            color: #64748b;
            font-weight: 300;
            margin: 0;
        }

        .core-section .section-label {
            font-size: 48px;
            font-weight: 500;
            color: #0F172A;
            text-transform: capitalize;
            text-align: center;
            letter-spacing: -1.2px;
            margin-bottom: 16px !important;
        }

        .core-section h2.section-title {
            text-align: center;
            font-size: 20px;
            color: #64748B;
            font-weight: 300;
            line-height: 28px;
            display: inline-block;
        }

        .features {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .features .card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 25px;
            transition: all 0.3s ease;
            flex: 1;
            margin-top: 35px;
        }

        .team-section-main {
            width: 100%;
            max-width: 75%;
            margin: 0 auto;
        }

        .features .icon i {
            color: #fff;
        }

        .card:hover {
            transform: scale(1.05);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .icon {
            font-size: 28px;
            margin-bottom: 16px;
        }

        .card h3 {
            font-size: 20px;
            margin-bottom: 10px;
            color: #fff;
            font-weight: 500;
        }

        .card p {
            font-size: 14px;
            color: #b0b8d1;
            line-height: 1.5;
        }

        /* ===== DARK TEAM SECTION ===== */
        .team-section {
            background: #0F172A;
            color: #e2e8f0;
        }

        .team-section .section-title {
            color: #fff;
            font-size: 60px;
            line-height: 60px;
            letter-spacing: -1.5px;
            font-weight: 500;
        }

        .team-section .section-sub {
            color: #94a3b8;
        }

        .team-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 60px;
        }

        .team-stat {
            text-align: center;
            padding: 32px 20px;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .team-stat .stat-num {
            font-size: 2.5rem;
            font-weight: 900;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .team-stat .stat-label {
            font-size: 0.85rem;
            color: #94a3b8;
            margin-top: 8px;
        }

        .team-preview-wrap {
            margin-top: 60px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            padding: 28px;
            overflow: hidden;
        }

        .team-preview-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
        }

        .team-preview-header h6 {
            color: #e2e8f0;
            font-size: 0.9rem;
            font-weight: 600;
            margin: 0;
        }

        .btn-sm-purple {
            background: var(--gradient);
            color: #fff;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 7px 16px;
            border-radius: 50px;
            border: none;
            cursor: pointer;
        }

        .team-member-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .team-member-row:last-child {
            border-bottom: none;
        }

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

        .tm-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: 700;
            color: #fff;
        }

        .tm-name {
            font-size: 0.85rem;
            font-weight: 600;
            color: #e2e8f0;
        }

        .tm-role {
            font-size: 0.75rem;
            color: #64748b;
        }

        .tm-status {
            font-size: 0.75rem;
            padding: 4px 12px;
            border-radius: 50px;
            font-weight: 600;
        }

        .status-active {
            background: rgba(16, 185, 129, 0.15);
            color: #10b981;
        }

        .status-busy {
            background: rgba(245, 158, 11, 0.15);
            color: #f59e0b;
        }

        /* ===== GROW SECTION ===== */
        .grow-section {
            background: #fff;
        }

        .grow-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 60px;
        }

        .grow-card {
            background: #fdfdfd;
            border-radius: 20px;
            padding: 32px;
            border: 1px solid #ddd;
            transition: transform .3s, box-shadow .3s;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .grow-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(108, 43, 217, 0.14);
        }

        .grow-icon {
            width: 52px;
            height: 52px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            margin-bottom: 20px;
            background: #ffffff;
            box-shadow: 0px 0px 12px #ddd;
            color: #770084;
        }

        .grow-card h5 {
            font-size: 1rem;
            font-weight: 700;
            color: #1e1b4b;
            margin-bottom: 10px;
        }

        .grow-card p {
            font-size: 0.875rem;
            color: #64748b;
            margin: 0;
            line-height: 1.65;
            max-width: 100%;
            text-align: center;
        }

        /* ===== PRICING ===== */
        .pricing-section {
            background: #F8FAFC;
        }

        .pricing-section h2.section-title {
            font-size: 44px;
            color: rgb(15, 22, 42);
            text-transform: capitalize;
            text-align: center;
            font-weight: 700;
            width: 100%;
            max-width: 46%;
            margin: 0 auto;
            line-height: 1.4;
        }

        .pricing-section .section-sub {
            font-size: 16px;
            color: #94A3B8;
            max-width: 51%;
            font-weight: 500;
            line-height: 1.7;
        }

        /* Section Wrapper */

        /* Layout */
        .pricing-section .pricing {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 40px;
        }

        /* Card */
        .pricing-section .card {
            background: #fff;
            border-radius: 20px;
            padding: 30px 25px;
            width: 360px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            position: relative;
            border: unset;
            transition: all 0.5s ease;
            margin-top: 35px;
        }

        /* Title */
        .pricing-section .card h3 {
            font-size: 22px;
            margin-bottom: 8px;
            color: #1d1d1f;
            font-weight: 600;
        }

        .pricing-section .card:hover {
            border: 2px solid #84008a;
        }

        /* Subtitle */
        .pricing-section .sub {
            font-size: 14px;
            color: #8a8a8a;
            margin-bottom: 25px;
        }

        /* Info rows */
        .pricing-section .info p {
            display: flex;
            justify-content: space-between;
            font-size: 15px;
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            color: #555;
        }

        .pricing-section .info span {
            font-weight: bold;
            color: #000;
        }

        /* Button */
        .pricing-section button {
            width: 100%;
            margin-top: 25px;
            padding: 13px 15px;
            border-radius: 25px;
            background: #f9fafc;
            font-weight: 600;
            cursor: pointer;
            border: 1px solid #ddd;
        }

        /* Active button */
        .pricing-section .primary {
            background: #770084;
            /* border-top: 1px solid var(--color-black-0, #000000); */
            box-shadow: 0px 1px 2px 0px #0000000D;
            color: #fff;
        }

        .pricing-section .primary:hover {
            background: #5C0066;
            color: #fff;
        }

        /* Badge */
        .pricing-section .badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: #84008a;
            color: #fff;
            font-size: 12px;
            padding: 5px 12px;
            border-radius: 20px;
            font-weight: bold;
        }

        /* Wrapper */
        .enterprise-banner {
            padding: 40px;
            margin-top: 35px;
        }

        /* Card */
        .enterprise-banner .enterprise-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 40px 50px;
            border-radius: 20px;

            /* Dark gradient + glow */
            background: radial-gradient(circle at right, #0f2a44 0%, #0a1830 40%, #081326 100%);
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        /* Left content */
        .enterprise-banner .left {
            max-width: 600px;
        }

        /* Tag */
        .enterprise-banner .tag {
            display: inline-block;
            font-size: 12px;
            letter-spacing: 1px;
            padding: 6px 12px;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            margin-bottom: 15px;
        }

        /* Title */
        .enterprise-banner h2 {
            font-size: 32px;
            margin-bottom: 15px;
            font-weight: 700;
        }

        /* Description */
        .enterprise-banner p {
            font-size: 15px;
            color: #c7d0e0;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        /* Features */
        .enterprise-banner .features {
            display: flex;
            gap: 20px;
            font-size: 14px;
            color: #9ecbff;
            justify-content: flex-start;
        }

        .enterprise-banner .tag i,
        .enterprise-banner .features span i {
            color: #12cde8;
        }

        .enterprise-banner .features span {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        /* Button */
        .enterprise-banner .right button {
            background: #ffffff;
            color: #0a1830;
            border: none;
            padding: 14px 28px;
            border-radius: 999px;
            font-weight: 600;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        /* Optional glow effect */
        .enterprise-banner .enterprise-content::after {
            content: "";
            position: absolute;
            right: -100px;
            top: 50%;
            transform: translateY(-50%);
            width: 230px;
            height: 300px;
            background: radial-gradient(circle, rgba(0, 153, 255, 0.25), transparent 70%);
            z-index: 0;
        }

        .right {
            margin-right: 50px;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 56px;
            align-items: start;
        }

        .pricing-card {
            border: 1px solid #ede9fe;
            border-radius: 24px;
            padding: 36px;
            text-align: center;
            position: relative;
            transition: transform .3s, box-shadow .3s;
        }

        .pricing-card:hover {
            transform: translateY(-6px);
        }

        .pricing-card.popular {
            border: 2px solid var(--purple);
            background: linear-gradient(160deg, #f5f0ff, #fff);
            box-shadow: 0 20px 60px rgba(108, 43, 217, 0.18);
            transform: scale(1.03);
        }

        .popular-badge {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gradient);
            color: #fff;
            font-size: 0.72rem;
            font-weight: 700;
            padding: 4px 18px;
            border-radius: 50px;
            letter-spacing: 0.05em;
            white-space: nowrap;
        }

        .pricing-card h5 {
            font-size: 1rem;
            font-weight: 700;
            color: #1e1b4b;
            margin-bottom: 8px;
        }

        .price-num {
            font-size: 3rem;
            font-weight: 900;
            color: #1e1b4b;
            line-height: 1;
        }

        .price-num sup {
            font-size: 1.2rem;
            vertical-align: super;
        }

        .price-per {
            font-size: 0.85rem;
            color: #94a3b8;
            margin: 8px 0 24px;
        }

        .pricing-features {
            list-style: none;
            text-align: left;
            margin-bottom: 28px;
        }

        .pricing-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.85rem;
            color: #374151;
            margin-bottom: 12px;
        }

        .pricing-features li i {
            color: var(--purple);
            font-size: 1rem;
        }

        .btn-pricing {
            display: block;
            width: 100%;
            padding: 12px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
            text-decoration: none;
            text-align: center;
            transition: all .2s;
        }

        .btn-pricing-purple {
            background: var(--gradient);
            color: #fff;
            box-shadow: 0 4px 18px rgba(108, 43, 217, 0.3);
        }

        .btn-pricing-purple:hover {
            color: #fff;
            box-shadow: 0 8px 30px rgba(108, 43, 217, 0.4);
        }

        .btn-pricing-outline {
            border: 2px solid #ddd6fe;
            color: var(--purple);
            background: transparent;
        }

        .btn-pricing-outline:hover {
            background: var(--purple);
            color: #fff;
            border-color: var(--purple);
        }

        /* Main Wrapper */
        .groerth {
            position: relative;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        /* Background Gradient Layer */
        .groerth .groerth__bg {
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 15% 25%, rgba(192, 132, 252, 0.25), transparent 40%),
                radial-gradient(circle at 85% 75%, rgba(148, 163, 184, 0.25), transparent 40%);
            z-index: 0;
        }

        /* Content Container */
        .groerth .groerth__container {
            position: relative;
            z-index: 1;
            text-align: center;
            padding: 120px 20px 60px;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Title */
        .groerth .groerth__title {
            font-size: 48px;
            font-weight: 600;
            color: #1f2937;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }

        /* Highlight Word */
        .groerth .groerth__highlight {
            color: var(--gradient);
            font-style: italic;
        }

        /* Subtitle */
        .groerth .groerth__subtitle {
            margin-top: 20px;
            font-size: 18px;
            color: #6b7280;
        }

        /* Buttons Wrapper */
        .groerth .groerth__actions {
            margin-top: 40px;
            display: flex;
            justify-content: center;
            gap: 16px;
        }

        /* Base Button */
        .groerth .groerth__btn {
            padding: 14px 28px;
            border-radius: 12px;
            font-size: 16px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        /* Primary Button */
        .groerth .groerth__btn--primary {
            background: #770084;
            color: #fff;
            /* border-top: 1px solid var(--color-black-0, #000000); */
            box-shadow: 0px 1px 2px 0px #0000000D;
        }

        .groerth .groerth__btn--primary:hover {
            background: #5C0066;
            transform: translateY(-2px);
        }

        /* Secondary Button */
        .groerth .groerth__btn--secondary {
            background: #fff;
            border: 1px solid #e5e7eb;
            color: #374151;
        }

        .groerth .groerth__btn--secondary:hover {
            background: #f9fafb;
        }

        /* Footer */
        .groerth .groerth__footer {
            position: relative;
            z-index: 1;
            padding: 20px 120px;
            border-top: 1px solid #e5e7eb;
            display: flex;
            justify-content: space-between;
            font-size: 14px;
            color: #6b7280;
        }

        /* Footer Links */
        .groerth .groerth__footer-right a {
            margin-left: 20px;
            text-decoration: none;
            color: #6b7280;
            transition: color 0.2s ease;
        }

        .groerth .groerth__footer-right a:hover {
            color: #a855f7;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1200px) {
            .core-features li p {
                opacity: 1;
            }

            .workflow-section h2.section-title {
                padding-right: 0;
            }
        }

        @media (max-width: 1024px) {
            .core-features li {
                margin-bottom: 15px;
            }

            .enterprise-banner .left {
                max-width: 500px;
            }

            .hero-text {
                width: 100%;
            }

            .core-section {
                padding: 0;
            }

            .lp-nav .nav-links {
                display: flex;
                gap: 20px;
                list-style: none;
                margin: 0;
                padding: 0;
            }

            .lp-nav {
                padding-inline: 20px;
            }

            .hero {
                min-height: 500px;
                padding: 0;
            }

            .hero>.container {
                padding-top: 110px;
                padding-bottom: 60px;
            }

            .hero-photo-bg {
                width: 100%;
                opacity: 0.41;
            }

            .hero-photo-overlay {
                width: 100%;
                background: linear-gradient(to right, rgb(255 255 255 / 0%) 60%, rgb(255 255 255 / 0%) 100%);
            }

            .hero-title {
                font-size: 45px;
                margin-bottom: 20px;
                padding-right: 0;
                line-height: 39px;
            }

            .hero-sub {
                max-width: 100%;
                margin-bottom: 30px;
            }

            .hero-badge {
                margin-bottom: 15px;
            }

            .pd-100 {
                padding-block: 50px;
            }

            .what-section .section-title,
            .core-section .section-label,
            .workflow-section h2.section-title,
            .grow-section h2.section-title,
            .pricing-section h2.section-title,
            .groerth .groerth__title {
                font-size: 30px;
            }

            .section-sub,
            .grow-section p {
                max-width: 100%;
            }

            .what-preview {
                max-width: 100%;
                margin: 30px auto 0;
            }

            .groerth .groerth__subtitle {

                margin-bottom: 0;
            }

            .team-section .section-title {

                font-size: 45px;
                line-height: 100%;

            }

            .core-section h2.section-title,
            .pricing-section h2.section-title,
            .pricing-section .section-sub {
                max-width: 100%;
            }

            .pricing-section .pricing {
                gap: 30px;
                margin-top: 20px;
                flex-wrap: wrap;
            }

            .pricing-section .card {
                padding: 25px 15px;
                width: 47%;
                margin: 0;
            }

            .groerth .groerth__footer {
                padding: 20px 15px;
            }

            .groerth .groerth__footer-right a {
                margin-left: 8px;
            }

            .groerth .groerth__actions {
                margin-top: 20px;
            }

            .grow-card {
                padding: 20px;
            }

            .features {
                gap: 15px;
            }

            .features .card {
                padding: 15px;
                flex: 1;
                margin-top: 25px;
            }

            .btn-cta {
                padding: 16px 26px;
            }

            .btn-outline-purple {
                padding: 16px 20px;
            }

            .hero-float.f3 {
                top: 40px;
                left: 17px;
            }


            .hero-float.f1 {
                top: 20px;
                right: 10px;

            }

            .hero-float.f2 {
                bottom: 10%;
                left: 5px;
            }

            .core-grid,
            .workflow-grid {
                margin-top: 15px;
                flex-direction: column;
                gap: 15px;
            }

            .core-grid ul.core-features,
            .core-grid .core-visua,
            .workflow-grid .workflow-steps,
            .workflow-grid .workflow-visual {
                width: 100%;
            }

            .core-features li p {
                opacity: 1;
            }

            .hero-inner {
                flex-direction: column;
            }

            .hero-image,
            .core-grid .core-visual {
                width: 100%;
                /* display: none; */
            }

            .hero-float {
                padding: 8px 12px;
                gap: 6px;
                border-radius: 10px;
            }

            .hero-float .dot {
                width: 6px;
                height: 6px;
            }

            .hero-float .icon-circle-green,
            .hero-float .avatar-circle {
                width: 24px;
                height: 24px;
                font-size: 10px;
            }

            .hero-float .float-text strong {
                font-size: 11px;
            }

            .hero-float .float-text span {
                font-size: 9px;
            }

            .section-label {

                margin-bottom: 10px;
            }

            .what-section .section-title {
                line-height: 1.9rem;
            }

            .core-grid,
            .workflow-grid {
                grid-template-columns: 1fr;
            }

            .grow-grid {
                grid-template-columns: 1fr 1fr;
                margin-top: 30px;
            }

            .enterprise-banner {
                padding: 0;
                margin-top: 20px;
            }

            .enterprise-banner .enterprise-content {
                padding: 20px 10px;
            }

            .enterprise-banner .right button {
                padding: 13px 9px;
                font-size: 14px;
            }

            .groerth .groerth__container {
                padding: 50px 10px 50px;
                max-width: 100%;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 480px;
                margin-left: auto;
                margin-right: auto;
            }

            .pricing-card.popular {
                transform: none;
            }

            .team-stats {
                grid-template-columns: 1fr 1fr;
            }

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

            .container-lg {
                padding: 0;
            }

            .workflow-grid {
                padding-bottom: 50px;
            }

            .section-label {
                margin-bottom: 32px;
            }
        }

        @media (max-width: 767px) {
            .lp-nav .nav-links {
                display: none;
            }

            .enterprise-banner .left {
                max-width: 100%;
            }

            .hamburger {
                display: block;
            }

            .grow-grid,
            .team-stats {
                grid-template-columns: 1fr;
            }

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

            .hero-float {
                display: flex;
                padding: 4px 8px;
                gap: 4px;
                border-radius: 8px;
            }

            .hero-float .dot {
                width: 4px;
                height: 4px;
            }

            .hero-float .icon-circle-green,
            .hero-float .avatar-circle {
                width: 16px;
                height: 16px;
                font-size: 7px;
            }

            .hero-float .float-text strong {
                font-size: 8px;
            }

            .hero-float .float-text span {
                font-size: 6px;
            }

            .hero-float.f1 {
                top: 6%;
                right: 3%;
            }

            .hero-float.f2 {
                bottom: 20%;
                left: 2%;
            }

            .hero-float.f3 {
                top: 12%;
                left: 0%;
            }

            .hero-float.f4 {
                bottom: 17%;
                right: 4%;
            }

            .btn-cta {
                display: none;
            }

            .lp-nav .nav-actions .btn-login {
                display: none !important;
            }

            .mobile-only-login {
                display: block !important;
            }

            .wv-card h6 {
                font-size: 20px;
                line-height: 28px;
                margin-bottom: 8px;
            }

            .wv-card p {
                font-size: 16px;
                line-height: 26px;
            }

            .team-section .section-title {
                font-size: 30px;
                line-height: 36px;
                letter-spacing: -0.75px;
            }


            .section-sub {
                font-size: 18px;
                line-height: 28px;
                text-align: center;
            }

            body.no-scroll {
                overflow: hidden !important;
                height: 100vh !important;
                touch-action: none;
            }

            .header-main.menu-open .mobile-drawer {
                transform: translateX(0) !important;
                visibility: visible !important;
                pointer-events: auto !important;
            }

            .mobile-drawer-header {
                display: flex;
                align-items: center;
                justify-content: space-between;
                width: 100%;
                margin-bottom: 30px;
                box-shadow: 0px 1px 1px #efeded;
                padding: 10px;
                border-radius: 10px;
            }

            .mobile-drawer-header .brand img {
                height: 38px;
            }

            .mobile-drawer-header .close {
                display: block;
                font-size: 28px;
                background: none;
                border: none;
                cursor: pointer;
                color: #0f172a;
                line-height: 1;
                padding: 4px;
            }

            .mobile-drawer-body {
                flex: 1;
            }

            .mobile-nav-links {
                list-style: none;
                margin: 0;
                padding: 0;
                display: flex;
                flex-direction: column;
                gap: 16px;
                text-align: left;
            }

            .mobile-nav-links a {
                font-size: 1.15rem;
                font-weight: 700;
                color: #0f172a;
                text-decoration: none;
                display: block;
                transition: color 0.2s ease;
            }

            .mobile-nav-links a:hover {
                color: #770084;
            }

            .mobile-drawer-footer {
                display: flex;
                flex-direction: column;
                gap: 12px;
                width: 100%;
                margin-top: auto;
                padding-top: 20px;
            }

            .btn-mobile-login {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 100%;
                padding: 13px 0;
                background: #ffffff;
                border: 1.5px solid #e2e8f0;
                color: #770084;
                font-weight: 700;
                font-size: 1rem;
                border-radius: 10px;
                text-decoration: none;
                box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
                transition: all 0.2s ease;
            }

            .btn-mobile-login:hover {
                border-color: #770084;
                background: #faf5ff;
                color: #770084;
            }

            .btn-mobile-cta {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 8px;
                width: 100%;
                padding: 13px 0;
                background: #770084;
                color: #ffffff !important;
                font-weight: 700;
                font-size: 1rem;
                border-radius: 10px;
                text-decoration: none;
                box-shadow: 0 4px 12px rgba(119, 0, 132, 0.25);
                transition: all 0.2s ease;
            }

            .btn-mobile-cta:hover {
                background: #5C0066;
            }

            .hero {
                padding: 30px 0 30px;
            }

            .hero-title {
                font-size: 36px;
                margin-bottom: 23px;
            }

            .hero-badge {
                margin-bottom: 23px;
                text-align: center;
                font-size: 12px;
                padding: 6px 5px;
            }

            .hero-sub {
                font-size: 19px;
                line-height: 28px;
                max-width: 100%;
                margin-bottom: 23px;
                text-align: start;
            }

            .btn-outline-purple {
                padding: 10px 20px;
            }

            .hero-image,
            .core-grid .core-visual {
                width: 100%;

            }

            .btn-cta {
                font-size: 14px;
                line-height: 21px;
            }

            .pd-100 {
                padding-block: 64px;
            }

            .groerth .groerth__title {
                font-size: 24px;
                line-height: 30px;
                font-weight: 500;
                letter-spacing: -0.6px;
                text-align: start;
                margin-bottom: 32px;
            }

            .core-section .section-label,
            .grow-section h2.section-title,
            .workflow-section h2.section-title,
            .pricing-section h2.section-title {
                font-size: 30px;
                line-height: 36px;
                letter-spacing: -0.75px;
                text-align: start;
                margin-bottom: 12px;
            }

            .core-features li h5 {
                font-size: 18px;
                line-height: 28px;

            }

            .groerth {

                align-items: center;
                justify-content: center;
                text-align: center;
            }

            .pricing-section h2.section-title {
                text-align: center;
            }

            .pricing .card p {
                text-align: start;
            }

            .groerth .groerth__subtitle {
                font-size: 16px;
                line-height: 26px;
                text-align: center;
                margin-bottom: 24px;
            }

            .enterprise-banner .right {
                width: 100%;
            }

            .core-features li:hover p {
                font-size: 12px;
                line-height: 16px;
            }


            .what-section .section-title {
                text-align: center;
                font-size: 24px;
                line-height: 30px;
                letter-spacing: -0.6px;
                margin-bottom: 32px;
            }

            .what-section .section-title span,
            .workflow-grid .workflow-steps p,
            .team-section-main {
                max-width: 100%;
            }

            .core-section h2.section-title,
            .core-features li p,
            .workflow-grid .workflow-steps p,
            .grow-section p,
            .enterprise-banner p {
                font-size: 16px;
                line-height: 26px;
                text-align: start;
                font-weight: 300;
            }

            .grow-section p {
                text-align: center;
            }

            .grow-grid {

                gap: 14px;

            }

            .section-sub {
                font-size: 18px;
                line-height: 28px;
            }

            .section-sub {
                text-align: center;
            }

            .enterprise-banner p {
                text-align: center;
            }

            .groerth .groerth__title {
                font-size: 36px;
                line-height: 39px;
                text-align: center;
            }


            .core-features li p {
                display: none;
            }

            .enterprise-banner .left {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
            }

            .what-preview {
                margin: 15px auto 0;
            }

            .wv-icon {
                font-size: 20px;
                width: 48px;
                height: 48px;
            }

            .workflow-visual {
                display: grid;
                gap: 32px;
            }

            .workflow-grid {
                padding-bottom: 30px;
            }

            .wv-card {
                padding: 24px;
                gap: 16px;
                flex-direction: column;
            }

            .enterprise-banner .features {
                gap: 10px;
                justify-content: center;
                flex-direction: column;
            }

            .enterprise-banner .tag {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                width: max-content;
                gap: 10px;
            }

            .groerth .groerth__actions {
                flex-direction: column;
            }

            .groerth .groerth__btn {
                padding: 11px 20px;
                font-size: 14px;
                line-height: 21px;
            }

            .groerth .groerth__footer {
                flex-direction: column;
                gap: 12px;
            }

            .lp-nav {
                border-radius: 20px;
            }

            .groerth .groerth__container {
                padding: 30px 10px 30px;
            }

            .groerth__footer-right {
                text-align: center;
            }

            .workflow-grid .workflow-steps a {
                display: none;
                width: 100%;
                text-align: center;
            }

            .core-section {
                padding: 0;
            }

            .workflow-grid .workflow-visual {
                margin-top: 0px;
            }

            .card h3 {
                font-size: 16px;
                margin-bottom: 8px;
                line-height: 24px;
            }

            .pricing-section .card {
                padding: 20px 10px;
                width: 100%;
            }

            .pricing-section button {
                margin-top: 15px;
                padding: 10px 13px;
                font-size: 14px;
                line-height: 21px;
            }

            .grow-card {
                padding: 15px;
            }

            .enterprise-banner .enterprise-content {
                align-items: start;
                flex-direction: column;
            }

            .enterprise-banner h2 {
                font-size: 20px;
                line-height: 30px;
                text-align: center;
            }

            .grow-icon {
                width: 40px;
                height: 40px;
                font-size: 16px;
                margin-bottom: 15px;
            }

            .grow-grid {
                margin-top: 15px;
            }

            .what-preview {
                height: auto;
            }

            .core-features li {
                gap: 8px;
                margin-bottom: 15px;
                padding: 15px 10px;
            }

            .features .card {
                flex: unset;
                display: flex;
                margin-top: 10px;
                justify-content: center;
                align-items: center;
                padding: 10px;
                width: 100%;
            }

            .card p {
                text-align: center;
                margin: 0;
            }
        }


        /* ---------------- */

        .hamburger,
        .close {
            font-size: 28px;
            background: none;
            border: none;
            cursor: pointer;
        }

        /* Hide close icon by default */
        .close {
            display: none;
        }

        /* Hide hamburger when open */
        .header-main.menu-open .hamburger {
            display: none;
        }

        @media (max-width: 575px) {
            .core-section {
                padding: 0;
            }

            .lp-nav {
                padding: 15px 20px;
                margin-block: 10px;
                border-radius: 20px;
            }

            .core-section {
                padding: 0;
            }

            .lp-nav .brand img {
                height: 40px;
            }

            .btn-login {
                font-size: 14px;
            }

            .pricing-section .card {
                width: 100%;
                padding: 20px;
            }

            .hero-title .highlight {
                display: inline;
            }

            .hero-btns a.btn-cta {

                width: 100%;
                justify-content: center;
            }

            .btn-outline-purple {

                width: 100%;
                justify-content: center;
            }

            .section-label {
                font-size: 12px;
                line-height: 16px;
            }
        }


        .core-features li:hover .core-icon i {
            color: #fff;
        }

        .core-feature-item.active .core-icon i {
            color: #fff;
        }

        .pricing-section .card:hover button {
            background: #84008a;
            color: #fff;
        }


        /* ===== CONTACT SALES ===== */
        .contact-section {
            background: linear-gradient(180deg, #ffffff 0%, #fcf7fd 50%, #f6fdff 100%);
            position: relative;
            overflow: hidden;
        }

        .contact-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(108, 43, 217, 0.1);
            border: 1px solid rgba(108, 43, 217, 0.2);
            color: var(--purple);
            font-size: 0.8rem;
            font-weight: 600;
            padding: 6px 14px;
            border-radius: 50px;
            margin-bottom: 24px;
            text-transform: uppercase;
        }

        .contact-section .section-title {
            font-size: 44px;
            font-weight: 600;
            color: #0f1726;
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .contact-section .highlight-purple {
            background: linear-gradient(90deg, #8b5cf6, #06b6d4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-style: italic;
        }

        .contact-section .section-sub {
            font-size: 16px;
            color: #64748b;
            max-width: 600px;
            margin: 0 auto 60px;
            line-height: 1.6;
        }

        .contact-grid {
            display: flex;
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
            align-items: flex-start;
        }

        .contact-left {
            background: linear-gradient(135deg, #181135 0%, #110e20 100%);
            color: #fff;
            border-radius: 20px;
            padding: 50px 40px;
            width: 40%;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
        }

        .contact-left::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
            border-radius: 50%;
        }

        .contact-left h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 30px;
        }

        .sales-benefits {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .sales-benefits li {
            display: flex;
            gap: 16px;
            margin-bottom: 24px;
            align-items: flex-start;
        }

        .sales-benefits li i {
            font-size: 20px;
            margin-top: 4px;
        }

        .sales-benefits li .text-blue {
            color: #06b6d4;
        }

        .sales-benefits li .text-purple {
            color: #a855f7;
        }

        .sales-benefits li .text-cyan {
            color: #0ea5e9;
        }

        .sales-benefits li h4 {
            font-size: 16px;
            font-weight: 600;
            margin: 0 0 4px 0;
        }

        .sales-benefits li p {
            font-size: 13px;
            color: #94a3b8;
            margin: 0;
            line-height: 1.5;
        }

        .contact-right {
            background: #fff;
            border-radius: 20px;
            padding: 40px;
            width: 60%;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
        }

        .contact-right h3 {
            font-size: 24px;
            font-weight: 700;
            color: #0f1726;
            margin-bottom: 8px;
        }

        .sub-form {
            font-size: 14px;
            color: #64748b;
            margin-bottom: 30px;
        }

        .sales-form label {
            font-size: 13px;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 8px;
        }

        .sales-form label span {
            color: #ef4444;
        }

        .sales-form .input-group {
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            display: flex;
            overflow: hidden;
        }

        .sales-form .input-group-text {
            background: transparent;
            border: none;
            color: #94a3b8;
            padding-right: 8px;
        }

        .sales-form .input-group .form-control {
            background: transparent !important;
            border: none !important;
            padding-left: 0;
            box-shadow: none !important;
        }

        .sales-form .form-control,
        .sales-form .form-select {
            font-size: 14px;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            padding: 10px 14px;
            background: #f8fafc;
            box-shadow: none;
        }

        .sales-form .form-control:focus,
        .sales-form .form-select:focus {
            border-color: #8b5cf6;
            background: #fff;
            box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
        }

        .sales-form .input-group:focus-within {
            border-color: #8b5cf6;
            background: #fff;
            box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
        }

        .sales-form .input-group:focus-within .input-group-text {
            background: #fff;
        }

        .consent-group .form-check-input:checked {
            background-color: #7e22ce;
            border-color: #7e22ce;
        }

        .btn-submit-sales {
            background: #770084;
            color: #fff;
            font-weight: 600;
            font-size: 16px;
            padding: 14px 20px;
            border-radius: 10px;
            border: none;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .btn-submit-sales:hover {
            background: #5C0066;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(126, 34, 206, 0.3);
        }

        .form-disclaimer {
            font-size: 12px;
            color: #94a3b8;
            line-height: 1.5;
        }

        .form-disclaimer a {
            color: #7e22ce;
            text-decoration: none;
        }

        @media (max-width: 991px) {
            .contact-grid {
                flex-direction: column;
            }

            .core-section {
                padding: 0;
            }

            .contact-left,
            .contact-right {
                width: 100%;
            }
        }