
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --deep-space: #0a0a0f;
            --neon-blue: #00f3ff;
            --neon-purple: #b967ff;
            --matrix-green: #00ff9d;
            --stardust: rgba(255, 255, 255, 0.92);
            --glass-bg: rgba(255, 255, 255, 0.04);
            --glass-border: rgba(255, 255, 255, 0.12);
            --card-radius: 28px;
        }

        body {
            background: var(--deep-space);
            color: var(--stardust);
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
            position: relative;
        }

        #particles-js {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            opacity: 0.6;
        }

        .main-content {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem 1.5rem 4rem;
        }

        /* Hero */
        .hero-pro {
            text-align: center;
            margin-bottom: 2rem;
        }
        .pro-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            background: rgba(0, 243, 255, 0.15);
            border: 1px solid var(--neon-blue);
            border-radius: 60px;
            padding: 0.5rem 1.5rem;
            font-size: 0.8rem;
            font-weight: 700;
            backdrop-filter: blur(8px);
            margin-bottom: 1.5rem;
        }
        .hero-pro h1 {
            font-family: 'Poiret One', sans-serif;
            font-size: 3.5rem;
            background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple), var(--matrix-green));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 1rem;
        }
        .hero-description {
            font-size: 1.1rem;
            line-height: 1.5;
            max-width: 850px;
            margin: 0 auto 1.2rem;
        }
        .includes-badge {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
            background: rgba(0, 255, 157, 0.08);
            border-radius: 60px;
            padding: 0.8rem 1.8rem;
            width: fit-content;
            margin: 1.5rem auto;
        }
        .includes-badge span {
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn-primary {
            background: linear-gradient(45deg, var(--matrix-green), #00e08c);
            color: var(--deep-space);
            padding: 0.9rem 2.2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 800;
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            transition: 0.2s;
            box-shadow: 0 0 20px rgba(0, 255, 157, 0.5);
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 30px var(--matrix-green);
        }

        /* Currency selector */
        .currency-section {
            text-align: center;
            margin: 2rem 0 3rem;
        }
        .currency-toggle {
            display: inline-flex;
            background: var(--glass-bg);
            border-radius: 50px;
            padding: 5px;
            border: 1px solid var(--glass-border);
        }
        .currency-toggle button {
            background: transparent;
            border: none;
            color: var(--stardust);
            padding: 0.6rem 1.8rem;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            transition: 0.2s;
        }
        .currency-toggle button.active {
            background: var(--neon-blue);
            color: var(--deep-space);
            box-shadow: 0 0 12px var(--neon-blue);
        }

        /* Grid Layout 50/50 estilo carrito */
        .cart-grid {
            display: grid;
            grid-template-columns: 1fr 450px;
            gap: 2rem;
            margin: 2rem 0;
            align-items: start;
        }
        
        .cart-grid-left {
            /* Columna izquierda - planes */
        }
        
        .cart-grid-right {
            /* Columna derecha - extras/info */
            position: sticky;
            top: 2rem;
            display: flex;
            flex-direction: column;
        }

        /* Plan Card estilo carrito (.cpc) */
        .cpc {
            background: linear-gradient(135deg, rgba(0, 243, 255, 0.03), rgba(185, 103, 255, 0.03));
            backdrop-filter: blur(14px);
            border: 1px solid var(--glass-border);
            border-radius: var(--card-radius);
            padding: 0;
            margin-bottom: 2rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            overflow: hidden;
        }
        
        .cpc-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.5rem;
            background: rgba(0, 0, 0, 0.2);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            gap: 1.5rem;
        }
        
        .cpc-icon {
            width: 55px;
            height: 55px;
            border-radius: 12px;
            background: rgba(0, 243, 255, 0.1);
            border: 1px solid rgba(0, 243, 255, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }
        
        .cpc-info {
            flex: 1;
        }
        
        .cpc-name {
            font-size: 0.75rem;
            color: var(--neon-blue);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 0.3rem;
        }
        
        .cpc-type {
            font-family: 'Poiret One', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--stardust);
        }
        
        .cpc-price-col {
            text-align: right;
            flex-shrink: 0;
            min-width: 180px;
        }
        
        .cpc-price-main {
            font-family: 'Poiret One', sans-serif;
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--matrix-green), #00e08c);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1;
        }
        
        .cpc-price-period {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 0.3rem;
        }
        
        .cpc-price-renewal {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.5);
            margin-top: 0.2rem;
        }
        
        .cpc-price-usd {
            font-size: 0.7rem;
            color: var(--neon-blue);
            margin-top: 0.3rem;
        }
        
        .cpc-body {
            padding: 2rem;
        }
        
        .cpc-includes-label {
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 1rem;
        }
        
        .cpc-includes {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.8rem;
            margin-bottom: 1.5rem;
        }
        
        .cpc-feat {
            display: flex;
            align-items: center;
            gap: 0.7rem;
            font-size: 0.9rem;
            padding: 0.5rem;
        }
        
        .cpc-feat .ck {
            color: var(--matrix-green);
            font-size: 1rem;
            flex-shrink: 0;
        }
        
        .cpc-cycle-row {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 12px;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }
        
        .cpc-cycle-label {
            font-size: 0.9rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .cycle-select-wrap {
            position: relative;
            flex: 1;
            min-width: 200px;
        }
        
        .cycle-select {
            width: 100%;
            background: rgba(0, 0, 0, 0.4);
            border: 2px solid rgba(0, 243, 255, 0.3);
            color: var(--stardust);
            padding: 0.8rem 2.5rem 0.8rem 1rem;
            border-radius: 12px;
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            outline: none;
            appearance: none;
            transition: all 0.3s ease;
        }
        
        .cycle-select:hover {
            border-color: var(--neon-blue);
            background: rgba(0, 243, 255, 0.08);
        }
        
        .cycle-select:focus {
            border-color: var(--neon-blue);
            box-shadow: 0 0 0 4px rgba(0, 243, 255, 0.2);
        }
        
        .cycle-arrow {
            position: absolute;
            right: 1rem;
            top: 50%;
            transform: translateY(-50%);
            pointer-events: none;
            color: var(--neon-blue);
            font-size: 0.7rem;
        }
        
        .discount-badge {
            background: rgba(0, 255, 157, 0.15);
            border: 1px solid var(--matrix-green);
            color: var(--matrix-green);
            padding: 0.4rem 0.9rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.03em;
        }
        
        .cpc-remove-row {
            padding: 1rem 2rem;
            background: rgba(0, 0, 0, 0.15);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .cpc-remove {
            background: transparent;
            border: 1px solid rgba(255, 77, 77, 0.3);
            color: rgba(255, 77, 77, 0.9);
            padding: 0.6rem 1.2rem;
            border-radius: 8px;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .cpc-remove:hover {
            background: rgba(255, 77, 77, 0.1);
            border-color: rgba(255, 77, 77, 0.6);
        }

        /* Trust bar para columna derecha */
        .trust-card {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            backdrop-filter: blur(8px);
            order: 2;
        }

        .trust-card:first-of-type {
            order: 2;
        }

        .trust-card-payment {
            order: 3;
        }

        .trust-card-security {
            order: 4;
        }

        .btn-contratar-plan {
            order: 5;
        }
        
        .trust-card h3 {
            font-family: 'Poiret One', sans-serif;
            font-size: 1.3rem;
            color: var(--stardust);
            margin-bottom: 1rem;
        }
        
        .trust-features {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        
        .trust-feat {
            display: flex;
            align-items: center;
            gap: 0.7rem;
            font-size: 0.9rem;
        }
        
        .trust-feat i {
            color: var(--neon-blue);
            font-size: 1rem;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .cart-grid {
                grid-template-columns: 1fr;
            }
            
            .cart-grid-right {
                position: static;
            }

            /* En móvil, botón al principio */
            .btn-contratar-plan {
                order: 1;
                margin-bottom: 1.5rem;
                margin-top: 0;
            }

            .trust-card:first-of-type {
                order: 2;
            }

            .trust-card-payment {
                order: 3;
            }

            .trust-card-security {
                order: 4;
            }
        }

        /* Tabs con efectos mejorados - REMOVED */

        /* Sección promocional dentro del card - estilo hostpro */
        .promo-section {
            background: linear-gradient(135deg, rgba(0, 243, 255, 0.08), rgba(185, 103, 255, 0.08));
            border: 1px solid rgba(0, 243, 255, 0.2);
            border-radius: 20px;
            padding: 2rem;
            margin-bottom: 2rem;
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
        }
        
        .promo-icon {
            width: 70px;
            height: 70px;
            border-radius: 16px;
            background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--deep-space);
            flex-shrink: 0;
            box-shadow: 0 8px 24px rgba(0, 243, 255, 0.3);
        }
        
        .promo-content {
            flex: 1;
        }
        
        .promo-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(0, 255, 157, 0.15);
            border: 1px solid var(--matrix-green);
            border-radius: 30px;
            padding: 0.4rem 1rem;
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--matrix-green);
            margin-bottom: 1rem;
        }
        
        .promo-title {
            font-family: 'Poiret One', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin: 0 0 0.8rem 0;
            line-height: 1.2;
        }
        
        .promo-description {
            color: rgba(255, 255, 255, 0.85);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1rem;
        }
        
        .promo-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 0.8rem;
        }
        
        .promo-feature {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.9);
        }
        
        .promo-feature i {
            color: var(--neon-blue);
            font-size: 1rem;
        }

        .plan-badge {
            display: inline-block;
            padding: 0.25rem 0.7rem;
            border-radius: 20px;
            font-size: 0.65rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.03em;
        }
        
        .badge-offer {
            background: rgba(255, 157, 0, 0.15);
            border: 1px solid rgba(255, 157, 0, 0.4);
            color: #ff9d00;
        }
        
        .badge-popular {
            background: rgba(0, 255, 157, 0.15);
            border: 1px solid rgba(0, 255, 157, 0.4);
            color: var(--matrix-green);
        }
        
        .plan-selector-wrapper {
            position: relative;
            margin-bottom: 1.5rem;
        }
        
        .plan-selector-wrapper label {
            display: block;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.02em;
        }
        
        .plan-select {
            width: 100%;
            background: rgba(0, 0, 0, 0.4);
            border: 2px solid rgba(0, 243, 255, 0.3);
            color: var(--stardust);
            padding: 1rem 3rem 1rem 1.2rem;
            border-radius: 15px;
            font-family: 'Poiret One', sans-serif;
            font-size: 1.15rem;
            font-weight: 600;
            cursor: pointer;
            outline: none;
            appearance: none;
            transition: all 0.3s ease;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='10'%3E%3Cpath fill='%2300f3ff' d='M1 1l6 6 6-6' stroke='%2300f3ff' stroke-width='2' fill='none'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 1.2rem center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }
        
        .plan-select:hover {
            border-color: var(--neon-blue);
            background: rgba(0, 243, 255, 0.08);
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(0, 243, 255, 0.15);
        }
        
        .plan-select:focus {
            border-color: var(--neon-blue);
            box-shadow: 0 0 0 4px rgba(0, 243, 255, 0.2), 0 6px 20px rgba(0, 243, 255, 0.15);
        }
        
        .plan-select option {
            background: rgba(10, 10, 15, 0.95);
            color: var(--stardust);
            padding: 0.5rem;
        }
        
        .select-arrow {
            position: absolute;
            right: 1rem;
            top: 50%;
            transform: translateY(-50%);
            pointer-events: none;
            color: var(--neon-blue);
            font-size: 0.8rem;
        }
        
        .plan-price-col {
            text-align: right;
            flex-shrink: 0;
            min-width: 180px;
        }
        
        .price-label {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 0.3rem;
        }
        
        .price-old {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.4);
            text-decoration: line-through;
            margin-bottom: 0.2rem;
        }
        
        .price-main {
            font-family: 'Poiret One', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--matrix-green), #00e08c);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1;
            display: inline;
        }
        
        .price-currency {
            font-size: 1rem;
            color: var(--matrix-green);
            font-weight: 600;
            margin-left: 0.3rem;
        }
        
        .price-detail {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 0.3rem;
        }
        
        .price-period {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.85rem;
            margin-top: 0.3rem;
        }
        
        .plan-includes-section {
            margin-bottom: 2rem;
        }
        
        .plan-includes-label {
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 1rem;
            padding-left: 0.5rem;
        }
        
        .plan-features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.8rem;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            gap: 0.7rem;
            font-size: 0.9rem;
            padding: 0.5rem;
        }
        
        .feature-item i {
            color: var(--matrix-green);
            font-size: 0.9rem;
            flex-shrink: 0;
        }
        
        .btn-plan {
            width: 100%;
            background: linear-gradient(135deg, rgba(0,243,255,0.12), rgba(185,103,255,0.12));
            border: 1px solid var(--neon-blue);
            padding: 1rem;
            border-radius: 50px;
            text-align: center;
            font-weight: 700;
            text-decoration: none;
            color: white;
            transition: 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
            font-size: 1rem;
            cursor: pointer;
        }
        
        .btn-plan:hover {
            background: var(--neon-blue);
            color: #0a0a0f;
            box-shadow: 0 0 15px var(--neon-blue);
            transform: translateY(-2px);
        }

        /* Reviews y FAQ (sin cambios) */
        .reviews-section {
            margin: 5rem 0;
            padding: 2rem 0;
            background: rgba(26, 11, 46, 0.3);
            border-radius: 40px;
        }
        .reviews-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        .rating-overview {
            text-align: center;
            margin-bottom: 2rem;
        }
        .rating-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--matrix-green);
        }
        .rating-stars {
            color: #FFD700;
            margin: 0.5rem 0;
        }
        .reviews-carousel {
            overflow: hidden;
        }
        .reviews-track {
            display: flex;
            transition: transform 0.5s ease;
            gap: 1.5rem;
        }
        .review-card {
            flex: 0 0 calc(33.333% - 1rem);
            background: var(--glass-bg);
            border-radius: 20px;
            padding: 1.5rem;
            backdrop-filter: blur(8px);
        }
        .review-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }
        .review-avatar {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }
        .carousel-controls {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 2rem;
        }
        .carousel-arrow {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            cursor: pointer;
            transition: 0.2s;
        }
        .carousel-arrow:hover {
            background: var(--neon-blue);
            color: #0a0a0f;
        }

        .faq-section {
            max-width: 900px;
            margin: 4rem auto;
        }
        .accordion-item {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            margin-bottom: 1rem;
            overflow: hidden;
        }
        .accordion-header {
            display: flex;
            justify-content: space-between;
            padding: 1.2rem 1.5rem;
            cursor: pointer;
            font-weight: 600;
        }
        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding: 0 1.5rem;
        }
        .accordion-content.active {
            max-height: 300px;
            padding: 0 1.5rem 1.2rem;
        }
        .consult-block {
            background: var(--glass-bg);
            border-radius: 40px;
            padding: 2.5rem;
            text-align: center;
            margin-top: 3rem;
        }
        
        .ext-badge {
            background: rgba(0, 243, 255, 0.1);
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-size: 0.75rem;
            border: 1px solid rgba(0, 243, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .ext-badge:hover {
            background: rgba(0, 243, 255, 0.2);
            border-color: var(--neon-blue);
            transform: translateY(-2px);
        }
        
        .saved-domain-chip {
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            align-items: center;
            gap: 10px;
            padding: 12px 16px;
            background: rgba(0, 255, 157, 0.1);
            border: 1px solid rgba(0, 255, 157, 0.3);
            border-radius: 12px;
            color: var(--matrix-green);
            font-size: 0.9rem;
            margin-bottom: 1rem;
            animation: slideIn 0.3s ease;
        }
        
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .saved-domain-main {
            min-width: 0;
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        
        .saved-domain-label {
            color: rgba(255, 255, 255, 0.7);
            font-weight: 600;
            white-space: nowrap;
        }
        
        .saved-domain-value {
            min-width: 0;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            color: var(--matrix-green);
            font-weight: 700;
        }
        
        .saved-domain-remove {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            border: 1px solid rgba(255, 77, 77, 0.4);
            background: rgba(255, 77, 77, 0.15);
            color: rgba(255, 77, 77, 0.9);
            font-size: 0.9rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s;
            flex-shrink: 0;
        }
        
        .saved-domain-remove:hover {
            background: rgba(255, 77, 77, 0.25);
            border-color: rgba(255, 77, 77, 0.6);
            color: #fff;
            transform: scale(1.05);
        }
        
        .btn-add-domain {
            background: linear-gradient(45deg, var(--matrix-green), #00e08c);
            border: none;
            padding: 0.6rem 1.2rem;
            border-radius: 8px;
            color: var(--deep-space);
            font-weight: 700;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .btn-add-domain:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 255, 157, 0.4);
        }
        
        .domain-section {
            background: rgba(0, 243, 255, 0.05);
            border: 1px solid rgba(0, 243, 255, 0.2);
            border-radius: 20px;
            padding: 0;
            margin-top: 2rem;
            overflow: hidden;
        }
        
        .domain-tabs {
            display: flex;
            border-bottom: 1px solid rgba(0, 243, 255, 0.2);
            background: rgba(0, 0, 0, 0.2);
        }
        
        .domain-tab {
            flex: 1;
            background: transparent;
            border: none;
            color: rgba(255, 255, 255, 0.6);
            padding: 1rem 1.5rem;
            font-size: 0.9rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.6rem;
            cursor: pointer;
            transition: all 0.2s;
            border-bottom: 2px solid transparent;
        }
        
        .domain-tab:hover {
            color: var(--neon-blue);
            background: rgba(0, 243, 255, 0.05);
        }
        
        .domain-tab.active {
            color: var(--neon-blue);
            border-bottom-color: var(--neon-blue);
            background: rgba(0, 243, 255, 0.08);
        }
        
        .domain-tab .tab-icon {
            font-size: 1.1rem;
        }
        
        .domain-tab-content {
            display: none;
            padding: 1.5rem;
        }
        
        .domain-tab-content.active {
            display: block;
        }
        
        .domain-bonus-msg {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            font-size: 0.9rem;
            margin-bottom: 1rem;
            padding: 0.8rem;
            background: rgba(0, 255, 157, 0.08);
            border-radius: 12px;
        }
        
        .domain-bonus-msg .bonus-icon {
            font-size: 1.3rem;
            flex-shrink: 0;
        }
        
        .domain-bonus-msg strong {
            color: var(--matrix-green);
        }
        
        .domain-bonus-msg span {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .domain-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        
        .form-label {
            font-size: 0.85rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .form-input {
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(0, 243, 255, 0.3);
            color: var(--stardust);
            padding: 0.7rem 1rem;
            border-radius: 12px;
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            outline: none;
            transition: all 0.2s;
        }
        
        .form-input:focus {
            border-color: var(--neon-blue);
            box-shadow: 0 0 0 3px rgba(0, 243, 255, 0.1);
        }
        
        .form-error {
            color: rgba(255, 77, 77, 0.9);
            font-size: 0.8rem;
            padding: 0.5rem 0.8rem;
            background: rgba(255, 77, 77, 0.1);
            border: 1px solid rgba(255, 77, 77, 0.3);
            border-radius: 8px;
            display: none;
        }
        
        .form-success {
            color: var(--matrix-green);
            font-size: 0.8rem;
            padding: 0.5rem 0.8rem;
            background: rgba(0, 255, 157, 0.1);
            border: 1px solid rgba(0, 255, 157, 0.3);
            border-radius: 8px;
            display: none;
        }
        
        .btn-validate {
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
            color: var(--deep-space);
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 12px;
            font-weight: 700;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
        }
        
        .btn-validate:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 243, 255, 0.4);
        }

        @media (max-width: 968px) {
            .hero-pro h1 {
                font-size: 2.5rem;
            }
            .review-card {
                flex: 0 0 calc(100% - 1rem);
            }
            .hosting-card h3 {
                font-size: 1.6rem;
            }
            .hosting-price {
                font-size: 2.2rem;
            }
            .plan-info-row {
                flex-direction: column;
                align-items: flex-start;
            }
            .plan-price-col {
                text-align: left;
                width: 100%;
            }
            .plan-features-grid {
                grid-template-columns: 1fr;
            }
            .promo-section {
                flex-direction: column;
            }
            .cpc-header {
                flex-direction: column;
                align-items: flex-start;
            }
            .cpc-price-col {
                text-align: left;
                width: 100%;
            }
            .cpc-includes {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            .hero-pro h1 {
                font-size: 2rem;
            }
            .domain-search {
                padding: 0.3rem;
            }
            .domain-search input {
                padding: 0.8rem 1rem;
                font-size: 0.9rem;
            }
            .domain-search button {
                padding: 0.7rem 1.5rem;
                font-size: 0.85rem;
            }
            .plan-card {
                padding: 1.5rem;
            }
            .promo-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
            .price-main {
                font-size: 1.8rem;
            }
            .cpc {
                margin-bottom: 1.5rem;
            }
            .cpc-body {
                padding: 1.5rem;
            }
            .cpc-price-main {
                font-size: 1.8rem;
            }
        }
    