.elementor-482 .elementor-element.elementor-element-0111ae0{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-82ff811 */:root {
            --accent: #38BDF8; /* Fuchsia for SMM */
            --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;
        }

        /* ===== NAVIGATION ===== */
        .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);
        }

        .ht-nav .actions {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .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);
        }

        /* ===== CRO ELEMENTS & CTAs ===== */
        .ht-btn-primary {
            padding: 14px 28px;
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            border-radius: 12px;
            background: var(--btn-primary-bg);
            color: #fff;
            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-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);
            display: inline-block;
        }

        .ht-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.12);
            transform: translateY(-2px);
        }

        /* ===== 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 ===== */
        .dev-services-section {
            padding: 100px 20px;
            position: relative;
            z-index: 10;
            background-color: #020617; /* Fallback base */
        }
        
        .dev-services-section::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: -1;
            pointer-events: none;
            opacity: 0.5;
            background-image: 
                radial-gradient(1px 1px at 15% 25%, rgba(255,255,255,0.8), transparent),
                radial-gradient(1.5px 1.5px at 30% 75%, rgba(255,255,255,0.6), transparent),
                radial-gradient(2px 2px at 75% 25%, rgba(255,255,255,0.9), transparent),
                radial-gradient(1.5px 1.5px at 85% 85%, rgba(255,255,255,0.4), transparent),
                radial-gradient(1px 1px at 50% 40%, rgba(56, 189, 248, 0.5), transparent),
                radial-gradient(2px 2px at 20% 85%, rgba(14, 165, 233, 0.7), transparent),
                radial-gradient(1px 1px at 90% 15%, rgba(255,255,255,0.7), transparent);
            background-size: 280px 280px;
        }

        /* ===== DISTINCT SECTION BACKGROUNDS (NEBULAS) ===== */
        #core-dev {
            background: 
                radial-gradient(1200px circle at 10% -10%, rgba(56, 189, 248, 0.1), transparent 40%),
                radial-gradient(900px circle at 90% 20%, rgba(14, 165, 233, 0.12), transparent 45%),
                linear-gradient(180deg, #020617, #060b26);
        }
        #core-dev::before { background-size: 250px 250px; opacity: 0.6; }

        #pricing-tiers {
            background: 
                radial-gradient(1000px circle at 50% 50%, rgba(56, 189, 248, 0.08), transparent 60%),
                linear-gradient(180deg, #060b26, #020617);
        }

        #dev-process {
            background: 
                radial-gradient(1100px circle at 20% 80%, rgba(14, 165, 233, 0.1), transparent 50%),
                linear-gradient(180deg, #020617, #060b26);
        }

        #quote-form {
            background: linear-gradient(180deg, #060b26, #143D66);
        }

        /* ===== CONTAINER & HEADERS ===== */
        .dev-container {
            max-width: 1240px;
            margin: auto;
        }

        .dev-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .dev-header h2 {
            font-size: clamp(2.2rem, 4vw, 3.2rem);
            margin-bottom: 18px;
            color: var(--text-main);
        }

        .dev-header h2 span {
            background: linear-gradient(90deg, #38BDF8, #7dd3fc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .dev-header p {
            font-size: 18px;
            color: var(--text-muted);
            max-width: 750px;
            margin: auto;
        }

        /* ===== GRID & CARDS (CORE SERVICES) ===== */
        .dev-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
        }

        .dev-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;
        }

        .dev-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;
        }

        .dev-card:hover::before {
            opacity: 1;
            transform: translateX(60%);
        }

        .dev-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);
        }

        .dev-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;
        }

        .dev-card:hover .dev-icon {
            background: linear-gradient(135deg, #38BDF8, #3B82F6);
            color: #fff;
            transform: scale(1.12);
            box-shadow: 0 0 30px rgba(56, 189, 248, 0.7);
        }

        .dev-card h3 {
            font-size: 22px;
            color: var(--text-main);
            margin-bottom: 12px;
        }

        .dev-card p {
            font-size: 15px;
            color: #cbd5f5;
            line-height: 1.7;
            margin-bottom: 24px;
            flex-grow: 1;
        }

        /* ===== PROGRESS / STEPS GRID ===== */
        .step-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
        }

        .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, #7dd3fc);
            -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 (PLATFORMS) ===== */
        .logo-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            max-width: 1000px;
            margin: 0 auto 60px 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);
        }

        /* ===== PRICING TIERS (SMM MATRIX) ===== */
        .tier-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .tier-card {
            background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.01));
            backdrop-filter: blur(25px);
            border: 1px solid var(--glass-border);
            border-radius: 28px;
            padding: 45px 35px;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
            text-align: left;
            display: flex;
            flex-direction: column;
        }

        .tier-card.featured {
            border-color: rgba(56, 189, 248, 0.5);
            box-shadow: 0 0 40px rgba(56, 189, 248, 0.15), inset 0 0 20px rgba(56, 189, 248, 0.05);
            transform: scale(1.03);
        }

        .tier-card:hover {
            transform: translateY(-10px) scale(1.03);
            border-color: var(--accent);
            box-shadow: 0 20px 50px rgba(56, 189, 248, 0.2);
        }

        .tier-label { 
            font-size: 0.85rem; 
            color: var(--accent); 
            font-weight: 700; 
            letter-spacing: 2px; 
            text-transform: uppercase; 
        }

        .tier-title { 
            font-size: 2rem; 
            margin: 12px 0 5px 0; 
            font-family: 'Orbitron', sans-serif;
            color: #fff; 
        }
        
        .client-type { 
            font-size: 0.95rem; 
            color: var(--text-muted); 
            margin-bottom: 25px; 
            min-height: 40px; 
        }

        .tier-price { 
            font-size: 2.8rem; 
            font-weight: 700; 
            margin: 0 0 20px 0; 
            color: #fff;
            display: flex;
            align-items:flex-end;
            gap: 10px;
        }
        
        .tier-price span { 
            font-size: 1rem; 
            color: var(--text-muted); 
            font-weight: 500;
            margin-bottom: 8px;
        }

        .tier-features {
            list-style: none;
            margin-top: 20px;
            margin-bottom: 35px;
            flex-grow: 1;
        }

        .tier-features li {
            font-size: 14.5px;
            color: #e2e8f0;
            padding: 12px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .tier-features li i {
            color: var(--accent);
            font-size: 14px;
            margin-top: 4px;
        }

        /* ===== 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;
            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; 
        }

        .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;
        }

        /* ===== FINAL FORM CTA ===== */
        .cta-banner {
            max-width: 1000px;
            margin: 0 auto;
            padding: 50px;
            border-radius: 24px;
            background: linear-gradient(135deg, rgba(56, 189, 248, 0.15), rgba(14, 165, 233, 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;
        }

        .audit-form {
            display: flex;
            max-width: 800px;
            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.full-form {
            flex-direction: column;
            gap: 15px;
            padding: 20px;
        }

        .audit-form input,
        .audit-form select {
            flex-grow: 1;
            background: rgba(0,0,0,0.2);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 8px;
            padding: 15px 20px;
            color: var(--text-main);
            font-size: 16px;
            font-family: 'Inter', sans-serif;
            outline: none;
            transition: all 0.3s ease;
        }
        
        .audit-form input:focus,
        .audit-form select:focus {
            border-color: var(--accent);
        }

        .audit-form input::placeholder {
            color: rgba(255,255,255,0.4);
        }

        @media (max-width: 768px) {
            .ht-nav { padding: 20px; }
            .ht-nav .actions { display: none; }
            .dev-services-section { padding: 80px 16px; }
            .tier-card.featured { transform: scale(1); }
            .tier-card:hover { transform: translateY(-5px); }
        }/* End custom CSS */