/* PRO HOSTING THEME */
        :root {
            --primary: #012970;
            --secondary: #2506ad;
            --accent: #ffae00;
            --bg-light: #f4f7ff;
        }

        .experience { padding-top: 10rem !important; }

        /* Hero Styling */
       .hosting-hero {
            background: linear-gradient(135deg, rgba(5, 37, 92, 0.95), rgba(59, 21, 226, 0.9)), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=1920');
            background-size: cover;
            padding: 18rem 9% 12rem;
            text-align: center;
            color: #fff;
            clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
        }

        .founder-badge {
            background: var(--accent);
            color: var(--primary);
            padding: 0.8rem 2.5rem;
            border-radius: 5rem;
            font-weight: 800;
            font-size: 1.3rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        /* Information Tiles */
        .grid-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            padding: 5rem 9%;
            margin-top: -8rem;
        }

        .info-card {
            background: #fff;
            padding: 4rem 3rem;
            border-radius: 2rem;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            border: 1px solid #eee;
            transition: all 0.4s ease;
            cursor: pointer;
            text-align: center;
        }

        .info-card:hover {
            transform: translateY(-15px);
            border-color: var(--secondary);
            box-shadow: 0 20px 40px rgba(37, 6, 173, 0.2);
        }

        .info-card i { font-size: 4.5rem; color: var(--secondary); margin-bottom: 2.5rem; }
        .info-card h3 { font-size: 2.4rem; color: var(--primary); margin-bottom: 1.5rem; }
        .info-card p { font-size: 1.5rem; color: #666; line-height: 1.7; }
        .view-specs { 
            display: inline-block; margin-top: 2rem; color: var(--secondary); 
            font-weight: 700; font-size: 1.4rem; border-bottom: 2px solid transparent;
        }
        .info-card:hover .view-specs { border-bottom: 2px solid var(--secondary); }


        /* MIGRATION SECTION */
        .migration-banner {
            background: var(--secondary);
            color: #fff;
            padding: 8rem 9%;
            display: flex;
            align-items: center;
            gap: 5rem;
            flex-wrap: wrap;
            margin: 5rem 0;
        }

        .migration-content { flex: 1 1 45rem; }
        .migration-content h2 { font-size: 4rem; margin-bottom: 2rem; }
        .migration-content p { font-size: 1.8rem; margin-bottom: 3rem; opacity: 0.9; }

        /* APP INSTALLER SECTION */
        .apps-section { padding: 8rem 9%; text-align: center; }
        .app-grid {
            display: flex;
            justify-content: center;
            gap: 4rem;
            flex-wrap: wrap;
            margin-top: 4rem;
        }
        .app-item { text-align: center; width: 120px; }
        .app-item img { width: 80px; height: 80px; object-fit: contain; margin-bottom: 1.5rem; filter: drop-shadow(0 5px 10px rgba(0,0,0,0.1)); }
        .app-item span { font-weight: 600; font-size: 1.4rem; color: var(--primary); }

       /* FAQ SECTION */
        .faq-section { padding: 8rem 9%; background: var(--light-bg); }
        .faq-container { max-width: 900px; margin: 4rem auto 0; }
        .faq-item { background: #fff; margin-bottom: 1.5rem; border-radius: 1rem; overflow: hidden; border: 1px solid #eee; }
        .faq-question { padding: 2rem; font-size: 1.8rem; font-weight: 700; color: var(--primary); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 0 2rem; max-height: 0; overflow: hidden; transition: 0.3s ease; font-size: 1.5rem; line-height: 1.8; color: #555; }
        .faq-item.active .faq-answer { padding: 1rem 2rem 2rem; max-height: 200px; }


        /* MODAL POPUP - RIGID OVERRIDE */
        #hostingModal {
            display: none; /* Controlled by JS */
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            z-index: 99999 !important; /* Forces it above everything */
            justify-content: center;
            align-items: center;
            padding: 2rem;
        }

        .modal-content {
            background: #fff;
            width: 100%;
            max-width: 800px;
            padding: 5rem;
            border-radius: 3rem;
            position: relative;
            animation: modalSlide 0.4s ease;
            max-height: 90vh;
            overflow-y: auto;
        }

        @keyframes modalSlide {
            from { transform: translateY(50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .close-modal {
            position: absolute;
            top: 2rem; right: 3rem;
            font-size: 4rem;
            cursor: pointer;
            color: #333;
        }

        .modal-body h2 { font-size: 3.5rem; color: var(--secondary); margin-bottom: 2rem; border-bottom: 3px solid var(--accent); display: inline-block; }
        .modal-body .spec-list { list-style: none; margin: 3rem 0; }
        .modal-body .spec-list li { 
            font-size: 1.8rem; margin-bottom: 1.5rem; color: #444;
            display: flex; align-items: center; gap: 1.5rem;
        }
        .modal-body .spec-list li i { color: #28a745; }

        .btn-contact {
            display: inline-block;
            background: var(--secondary);
            color: #fff;
            padding: 1.5rem 4rem;
            border-radius: 5rem;
            font-size: 1.8rem;
            font-weight: 700;
            transition: 0.3s;
            text-decoration: none;
        }
        .btn-contact:hover { background: var(--accent); color: var(--primary); transform: scale(1.05); }

        .btn-main {
            display: inline-block;
            background: var(--secondary);
            color: #fff;
            padding: 1.5rem 4rem;
            border-radius: 5rem;
            font-size: 1.6rem;
            font-weight: 700;
            transition: 0.3s;
            text-decoration: none;
        }
        .btn-main:hover { background: var(--accent); color: var(--primary); transform: translateY(-3px);
         }

        /* Tech Strip */
        .tech-marquee {
            padding: 6rem 9%;
            display: flex;
            justify-content: center;
            gap: 5rem;
            flex-wrap: wrap;
            background: var(--bg-light);
        }
        .tech-marquee img { height: 45px; filter: grayscale(50%); transition: 0.3s; opacity: 0.6; }
        .tech-marquee img:hover { filter: grayscale(0%); opacity: 1; }
