.elementor-436 .elementor-element.elementor-element-3cbcea5{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-436 .elementor-element.elementor-element-66d3bbd{padding:0px 0px 0px 0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-66d3bbd */:root {
            --accent: #38BDF8;
            --glass-bg: rgba(255, 255, 255, 0.08);
            --glass-border: rgba(255, 255, 255, 0.18);
            --text-main: #f8fafc;
            --text-muted: #94a3b8;
            --btn-primary-bg: linear-gradient(135deg, #38BDF8, #3B82F6);
            --bg-color: #020617;
            /* New V2 Tokens */
            --glass-surface: rgba(255, 255, 255, 0.03);
            --glass-surface-hover: rgba(255, 255, 255, 0.08);
            --glass-border-highlight: rgba(56, 189, 248, 0.4);
            --accent-cyan: #22d3ee;
            --accent-blue: #3b82f6;
            --navy: #163253;
            --text-secondary: #94a3b8;
            --font-heading: 'Orbitron', sans-serif;
            --font-body: 'Outfit', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-color);
            color: var(--text-main);
            overflow-x: hidden;
            line-height: 1.6;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Orbitron', sans-serif;
        }

        /* ===== HEADER / NAVIGATION (Optional placeholder to match homepage) ===== */
        .ht-nav {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            padding: 20px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 100;
        }

        .ht-logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--text-main);
            text-decoration: none;
        }

        .ht-logo span {
            color: var(--accent);
        }

        /* ===== ACTIVATE LIQUID GLASS BUTTON ===== */
        .ht-btn {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--glass-border);
            padding: 10px 24px;
            color: var(--text-main);
            border-radius: 8px;
            text-decoration: none;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .ht-btn:hover {
            background: rgba(255, 255, 255, 0.15);
        }

        /* ===== HERO SECTION (V2 Split Layout) ===== */
        .hero-v2 {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 80px;
            padding-bottom: 80px;
            overflow: hidden;
            font-family: var(--font-body);
        }

        /* Ambient Glow Effects */
        .glow-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
            z-index: 0;
            pointer-events: none;
            opacity: 0.4;
        }
        .orb-1 {
            top: 10%;
            left: -10%;
            width: 50vw;
            height: 50vw;
            background: radial-gradient(circle, var(--accent-cyan), transparent 60%);
        }
        .orb-2 {
            bottom: -20%;
            right: -10%;
            width: 60vw;
            height: 60vw;
            background: radial-gradient(circle, var(--navy), transparent 60%);
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .hero-content {
            max-width: 600px;
            text-align: left;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--glass-surface);
            border: 1px solid var(--glass-border);
            padding: 8px 16px;
            border-radius: 30px;
            backdrop-filter: blur(10px);
            margin-bottom: 24px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--accent-cyan);
            box-shadow: 0 4px 20px rgba(0,0,0,0.2);
        }

        .hero-badge .pulse {
            width: 8px;
            height: 8px;
            background: var(--accent-cyan);
            border-radius: 50%;
            box-shadow: 0 0 10px var(--accent-cyan);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(34, 211, 238, 0); }
            100% { box-shadow: 0 0 0 0 rgba(34, 211, 238, 0); }
        }

        .hero-title {
            font-family: var(--font-heading);
            font-size: clamp(2.5rem, 4vw, 4rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 24px;
            color: #fff;
        }

        .text-gradient {
            background: linear-gradient(135deg, var(--accent-cyan), var(--navy));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-desc {
            font-size: 1.125rem;
            color: var(--text-secondary);
            margin-bottom: 40px;
            max-width: 540px;
        }

        .hero-actions {
            display: flex;
            gap: 20px;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 32px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
            color: #020617;
            font-weight: 700;
            font-size: 1rem;
            text-decoration: none;
            box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            border: none;
            white-space: nowrap;
        }

        .btn-primary::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: all 0.5s ease;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(59, 130, 246, 0.6);
        }

        .btn-primary:hover::after {
            left: 100%;
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 32px;
            border-radius: 12px;
            background: var(--glass-surface);
            border: 1px solid var(--glass-border);
            color: #fff;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .btn-secondary:hover {
            background: var(--glass-surface-hover);
            border-color: rgba(255,255,255,0.2);
            transform: translateY(-3px);
        }

        /* Hero Visual - Floating Cards */
        .hero-visual {
            position: relative;
            height: 600px;
            perspective: 1000px;
        }

        .glass-card-main {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) rotateY(-15deg) rotateX(10deg);
            width: 100%;
            max-width: 500px;
            height: 400px;
            background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.01) 100%);
            border-radius: 24px;
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 30px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.2);
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            animation: floatMain 6s ease-in-out infinite;
        }

        .glass-card-sub {
            position: absolute;
            bottom: 40px;
            right: -20px;
            width: 250px;
            height: 150px;
            background: linear-gradient(135deg, rgba(56, 189, 248, 0.15) 0%, rgba(56, 189, 248, 0.02) 100%);
            border-radius: 20px;
            border: 1px solid var(--glass-border-highlight);
            backdrop-filter: blur(15px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.5);
            transform: translateZ(50px);
            animation: floatSub 8s ease-in-out infinite reverse;
            padding: 20px;
        }

        @keyframes floatMain {
            0%, 100% { transform: translate(-50%, -50%) rotateY(-15deg) rotateX(10deg) translateY(0); }
            50% { transform: translate(-50%, -50%) rotateY(-15deg) rotateX(10deg) translateY(-20px); }
        }

        @keyframes floatSub {
            0%, 100% { transform: translateZ(50px) translateY(0); }
            50% { transform: translateZ(50px) translateY(-15px); }
        }

        @media (max-width: 992px) {
            .hero-grid { grid-template-columns: 1fr; text-align: center; }
            .hero-content { margin: 0 auto; text-align: center; }
            .hero-desc { margin: 0 auto 40px; }
            .hero-actions { justify-content: center; }
        }

        @media (max-width: 768px) {
            .btn-primary, .btn-secondary { width: 100%; }
            .hero-actions { flex-direction: column; }
        }

        @media (max-width: 768px) {
            .ht-lg-btn-primary,
            .ht-lg-btn-secondary {
                width: 100%;
            }
            .ht-lg-content h1 {
                font-size: 2.5rem;
            }
        }

        /* ===== BASE SECTION & STARRY EFFECT ===== */
        .seo-services-section {
            padding: 100px 20px;
            position: relative;
            z-index: 10;
            background-color: #020617;
            /* Fallback base */
        }

        /* Shared star overlay */
        .seo-services-section::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: -1;
            pointer-events: none;
            opacity: 0.5;
            background-image:
                radial-gradient(1px 1px at 10% 20%, rgba(255, 255, 255, 0.8), transparent),
                radial-gradient(1px 1px at 30% 65%, rgba(255, 255, 255, 0.6), transparent),
                radial-gradient(1.5px 1.5px at 70% 30%, rgba(255, 255, 255, 0.9), transparent),
                radial-gradient(2px 2px at 85% 80%, rgba(255, 255, 255, 0.4), transparent),
                radial-gradient(1px 1px at 50% 50%, rgba(56, 189, 248, 0.5), transparent),
                radial-gradient(2px 2px at 20% 90%, rgba(14, 165, 233, 0.7), transparent),
                radial-gradient(1px 1px at 90% 10%, rgba(255, 255, 255, 0.7), transparent);
            background-size: 250px 250px;
        }

        /* ===== DISTINCT SECTION BACKGROUNDS ===== */
        #core-seo {
            background:
                radial-gradient(1200px circle at 10% -10%, rgba(56, 189, 248, 0.15), transparent 40%),
                radial-gradient(900px circle at 90% 20%, rgba(14, 165, 233, 0.12), transparent 45%),
                linear-gradient(180deg, #020617, #060b26);
        }

        #core-seo::before {
            background-size: 250px 250px;
            opacity: 0.6;
        }

        #specialized-seo {
            background:
                radial-gradient(1000px circle at 80% 0%, rgba(139, 92, 246, 0.12), transparent 50%),
                radial-gradient(800px circle at 20% 100%, rgba(56, 189, 248, 0.1), transparent 40%),
                linear-gradient(180deg, #060b26, #020617);
        }

        #specialized-seo::before {
            background-size: 350px 350px;
            opacity: 0.4;
        }

        #seo-process {
            background:
                radial-gradient(1100px circle at 50% 50%, rgba(56, 189, 248, 0.08), transparent 60%),
                linear-gradient(180deg, #020617, #04081c);
        }

        #seo-process::before {
            background-size: 200px 200px;
            opacity: 0.7;
        }

        #seo-tools {
            background:
                radial-gradient(900px circle at 0% 50%, rgba(236, 72, 153, 0.08), transparent 50%),
                radial-gradient(900px circle at 100% 50%, rgba(14, 165, 233, 0.1), transparent 50%),
                linear-gradient(180deg, #04081c, #020617);
        }

        #seo-tools::before {
            background-size: 400px 400px;
            opacity: 0.5;
        }

        #technologies {
            background:
                radial-gradient(800px circle at 50% -20%, rgba(16, 185, 129, 0.08), transparent 50%),
                linear-gradient(180deg, #020617, #060b27);
        }

        #technologies::before {
            background-size: 280px 280px;
            opacity: 0.6;
        }

        #testimonials {
            background:
                radial-gradient(1000px circle at 100% 100%, rgba(245, 158, 11, 0.08), transparent 50%),
                radial-gradient(1000px circle at 0% 0%, rgba(56, 189, 248, 0.12), transparent 50%),
                linear-gradient(180deg, #060b27, #020617);
        }

        #testimonials::before {
            background-size: 320px 320px;
            opacity: 0.5;
        }

        #faq {
            background:
                radial-gradient(1200px circle at 50% 100%, rgba(56, 189, 248, 0.15), transparent 50%),
                linear-gradient(180deg, #020617, #020617);
        }

        #faq::before {
            background-size: 250px 250px;
            opacity: 0.8;
        }


        .seo-container {
            max-width: 1240px;
            margin: auto;
        }

        .seo-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .seo-header h2 {
            font-size: clamp(2.2rem, 4vw, 3.2rem);
            margin-bottom: 18px;
        }

        .seo-header h2 span {
            background: linear-gradient(90deg, #38BDF8, #7dd3fc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .seo-header p {
            font-size: 18px;
            color: var(--text-muted);
            max-width: 750px;
            margin: auto;
        }

        .seo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
        }

        /* LIQUID GLASS CARDS */
        .seo-card {
            position: relative;
            padding: 40px 30px;
            border-radius: 22px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
            backdrop-filter: blur(18px) saturate(140%);
            -webkit-backdrop-filter: blur(18px) saturate(140%);
            border: 1px solid var(--glass-border);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 30px 60px rgba(0, 0, 0, 0.4);
            transition: all 0.45s ease;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .seo-card::before {
            content: "";
            position: absolute;
            inset: -1px;
            background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.35), transparent 70%);
            opacity: 0;
            transform: translateX(-60%);
            transition: all 0.7s ease;
        }

        .seo-card:hover::before {
            opacity: 1;
            transform: translateX(60%);
        }

        .seo-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 40px 90px rgba(56, 189, 248, 0.35);
            border-color: rgba(56, 189, 248, 0.45);
        }

        .seo-icon {
            width: 68px;
            height: 68px;
            border-radius: 18px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.05));
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.35);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            color: var(--accent);
            margin-bottom: 24px;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
            transition: all 0.4s ease;
        }

        .seo-card:hover .seo-icon {
            background: linear-gradient(135deg, #38BDF8, #0ea5e9);
            color: #fff;
            transform: scale(1.12);
            box-shadow: 0 0 30px rgba(56, 189, 248, 0.7);
        }

        .seo-card h3 {
            font-size: 22px;
            color: var(--text-main);
            margin-bottom: 12px;
        }

        .seo-card p {
            font-size: 15px;
            color: #cbd5f5;
            line-height: 1.7;
            margin-bottom: 24px;
            flex-grow: 1;
        }

        .seo-features {
            list-style: none;
            width: 100%;
            text-align: left;
            margin-top: auto;
        }

        .seo-features li {
            font-size: 14px;
            color: #cbd5f5;
            padding: 10px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .seo-features li i {
            color: var(--accent);
            font-size: 12px;
            opacity: 0.8;
            transition: all 0.3s ease;
        }

        .seo-card:hover .seo-features li i {
            opacity: 1;
            transform: scale(1.2);
            text-shadow: 0 0 10px var(--accent);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            .ht-nav {
                padding: 20px;
            }

            .seo-hero {
                padding: 120px 16px 80px;
            }

            .seo-hero-content {
                padding: 40px 20px;
            }

            .seo-services-section {
                padding: 80px 16px;
            }
        }

        /* ===== TESTIMONIALS SECTION ===== */
        .testi-card {
            position: relative;
            padding: 40px 30px;
            border-radius: 22px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
            backdrop-filter: blur(15px) saturate(140%);
            -webkit-backdrop-filter: blur(15px) saturate(140%);
            border: 1px solid var(--glass-border);
            text-align: left;
            transition: transform 0.4s ease;
        }

        .testi-card:hover {
            transform: translateY(-8px);
            border-color: rgba(56, 189, 248, 0.3);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .stars {
            color: #fbbf24;
            /* Golden yellow */
            font-size: 16px;
            margin-bottom: 20px;
        }

        .testi-text {
            font-size: 16px;
            color: var(--text-main);
            font-style: italic;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .client-info {
            display: flex;
            align-items: center;
            gap: 15px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
        }

        .client-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent), #3B82F6);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: bold;
            color: #fff;
        }

        .client-details h4 {
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            color: var(--text-main);
            margin-bottom: 2px;
        }

        .client-details p {
            font-size: 13px;
            color: var(--text-muted);
            margin: 0;
        }

        /* ===== FAQ SECTION ===== */
        .faq-list {
            max-width: 850px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            backdrop-filter: blur(10px);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .faq-item details {
            width: 100%;
        }

        .faq-item summary {
            padding: 24px 30px;
            font-family: 'Inter', sans-serif;
            font-size: 18px;
            font-weight: 600;
            color: var(--text-main);
            cursor: pointer;
            list-style: none;
            /* Hide default arrow */
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
            /* For Chrome/Safari */
        }

        .faq-item summary::after {
            content: '\f067';
            /* FontAwesome plus */
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: var(--accent);
            font-size: 18px;
            transition: transform 0.3s ease;
        }

        .faq-item details[open] summary::after {
            content: '\f068';
            /* FontAwesome minus */
            transform: rotate(180deg);
        }

        .faq-content {
            padding: 0 30px 24px 30px;
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.7;
        }

        /* ===== SEO STEPS SECTION ===== */
        .step-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
            counter-reset: seo-step;
        }

        .step-card {
            position: relative;
            padding: 35px 25px;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(10px);
            text-align: left;
            transition: all 0.4s ease;
        }

        .step-card:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-5px);
            border-color: rgba(56, 189, 248, 0.4);
        }

        .step-number {
            font-family: 'Orbitron', sans-serif;
            font-size: 40px;
            font-weight: 800;
            color: transparent;
            -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
            margin-bottom: 20px;
            transition: all 0.4s ease;
        }

        .step-card:hover .step-number {
            background: linear-gradient(135deg, #38BDF8, #3B82F6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            -webkit-text-stroke: 0;
            text-shadow: 0 0 20px rgba(56, 189, 248, 0.5);
        }

        .step-card h3 {
            font-size: 18px;
            color: var(--text-main);
            margin-bottom: 12px;
        }

        .step-card p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.6;
            margin: 0;
        }

        /* ===== LOGO GRID (TOOLS & TECH) ===== */
        .logo-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .logo-box {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 24px;
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            font-size: 16px;
            font-weight: 500;
            color: var(--text-main);
            transition: all 0.3s ease;
        }

        .logo-box:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
            border-color: var(--accent);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), inset 0 0 15px rgba(56, 189, 248, 0.2);
        }

        .logo-box i {
            font-size: 20px;
            color: var(--accent);
        }

        /* ===== CRO ELEMENTS & CTAs ===== */
        .ht-btn-primary {
            padding: 14px 28px;
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            border-radius: 12px;
            background: linear-gradient(135deg, #38BDF8, #3B82F6);
            color: #020617;
            text-decoration: none;
            box-shadow: 0 0 30px rgba(56, 189, 248, 0.4);
            transition: all 0.3s ease;
            display: inline-block;
            border: none;
            cursor: pointer;
        }

        .ht-btn-primary:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 0 50px rgba(56, 189, 248, 0.6);
        }

        .ht-nav .actions {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .hero-actions {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 35px;
            flex-wrap: wrap;
        }

        .ht-btn-secondary {
            padding: 14px 28px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-main);
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .ht-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.12);
            transform: translateY(-2px);
        }

        .trust-badges {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 40px;
            opacity: 0.8;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-muted);
            flex-wrap: wrap;
        }

        .trust-badges span {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .trust-badges i {
            color: var(--accent);
            font-size: 16px;
        }

        /* ===== MID-PAGE CTA BANNER ===== */
        .cta-banner {
            max-width: 1000px;
            margin: 60px auto;
            padding: 50px;
            border-radius: 24px;
            background: linear-gradient(135deg, rgba(56, 189, 248, 0.15), rgba(59, 130, 246, 0.05));
            border: 1px solid rgba(56, 189, 248, 0.3);
            text-align: center;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(20px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
        }

        .cta-banner h2 {
            font-size: 32px;
            margin-bottom: 20px;
            color: var(--text-main);
        }

        .cta-banner p {
            font-size: 18px;
            color: var(--text-muted);
            margin-bottom: 30px;
        }

        /* ===== FINAL FORM CTA ===== */
        .audit-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--glass-border);
            border-radius: 14px;
            padding: 8px;
            backdrop-filter: blur(10px);
        }

        .audit-form input {
            flex-grow: 1;
            background: transparent;
            border: none;
            padding: 15px 20px;
            color: var(--text-main);
            font-size: 16px;
            font-family: 'Inter', sans-serif;
            outline: none;
        }

        .audit-form input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }

        @media (max-width: 768px) {
            .audit-form {
                flex-direction: column;
                gap: 10px;
                padding: 15px;
            }

            .audit-form .ht-btn-primary {
                width: 100%;
                text-align: center;
            }

            .ht-nav .actions {
                display: none;
            }
        }/* End custom CSS */