/* ============================================
   ExploraHost - Custom Styles v3.0
   Paleta: Azul/Blanco profesional
   ============================================ */

/* --- CSS Variables --- */
:root {
    --eh-primary: #1e3a5f;
    --eh-primary-light: #2563eb;
    --eh-primary-hover: #1d4ed8;
    --eh-accent: #0ea5e9;
    --eh-gradient: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
    --eh-gradient-soft: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    --eh-bg-light: #f8fafc;
    --eh-bg-section: #f1f5f9;
    --eh-white: #ffffff;
    --eh-text: #1e293b;
    --eh-text-muted: #64748b;
    --eh-text-light: #94a3b8;
    --eh-border: #e2e8f0;
    --eh-success: #10b981;
    --eh-warning: #f59e0b;
    --eh-danger: #ef4444;
    --eh-shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --eh-shadow: 0 4px 16px rgba(30,58,95,0.1);
    --eh-shadow-lg: 0 12px 40px rgba(30,58,95,0.15);
    --eh-shadow-hover: 0 16px 48px rgba(30,58,95,0.2);
    --eh-radius: 12px;
    --eh-radius-lg: 16px;
    --eh-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --bs-link-color: var(--eh-primary-light);
    --bs-link-hover-color: var(--eh-primary-hover);
    --bs-link-color-rgb: 37,99,235;
}

/* Links on dark backgrounds */
.bg-primary-gradient a:not(.btn):not([class*="template-btn"]),
.eh-topbar a,
.eh-footer a {
    color: inherit;
}
.bg-primary-gradient a:not(.btn):not([class*="template-btn"]):hover {
    color: #fff;
}

/* --- Topbar --- */
.eh-topbar {
    background: var(--eh-primary);
    padding: 8px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.85);
}
.eh-topbar a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: var(--eh-transition);
}
.eh-topbar a:hover {
    color: #fff;
}
.eh-topbar .topbar-promo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.eh-topbar .topbar-promo .badge {
    background: var(--eh-warning);
    color: var(--eh-primary);
    font-weight: 700;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 4px;
}
.eh-topbar .topbar-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}
.eh-topbar .topbar-actions a {
    padding: 3px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}
.eh-topbar .topbar-actions .btn-login {
    border: 1px solid rgba(255,255,255,0.3);
}
.eh-topbar .topbar-actions .btn-login:hover {
    border-color: #fff;
}
.eh-topbar .topbar-actions .btn-register {
    background: var(--eh-accent);
    color: #fff;
}
.eh-topbar .topbar-actions .btn-register:hover {
    background: #0284c7;
}

/* Currency Selector */
.currency-selector {
    position: relative;
    display: inline-block;
}
.currency-btn {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 4px;
    padding: 3px 10px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--eh-transition);
}
.currency-btn:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
}
.currency-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--eh-white);
    border-radius: 8px;
    box-shadow: var(--eh-shadow-lg);
    min-width: 200px;
    z-index: 9999;
    overflow: hidden;
}
.currency-dropdown.show {
    display: block;
}
.currency-option {
    display: block;
    padding: 10px 14px;
    font-size: 13px;
    color: var(--eh-text) !important;
    text-decoration: none !important;
    transition: var(--eh-transition);
}
.currency-option:hover {
    background: var(--eh-bg-light);
    color: var(--eh-primary-light) !important;
}
.currency-option.active {
    background: var(--eh-gradient-soft);
    color: var(--eh-primary-light) !important;
    font-weight: 600;
}

/* Currency Mobile */
.currency-mobile-btn {
    flex: 1;
    background: var(--eh-bg-light);
    border: 2px solid var(--eh-border);
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--eh-text);
    cursor: pointer;
    transition: var(--eh-transition);
}
.currency-mobile-btn:hover {
    border-color: var(--eh-primary-light);
    color: var(--eh-primary-light);
}
.currency-mobile-btn.active {
    background: var(--eh-primary-light);
    border-color: var(--eh-primary-light);
    color: #fff;
}

.eh-topbar .topbar-actions .btn-whatsapp {
    background: #25D366;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.eh-topbar .topbar-actions .btn-whatsapp:hover {
    background: #1fb855;
    color: #fff;
}
.eh-topbar .topbar-actions .btn-discord {
    background: #5865F2;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.eh-topbar .topbar-actions .btn-discord:hover {
    background: #4752c4;
    color: #fff;
}

/* --- Navbar Enhanced --- */
.header-section {
    background: var(--eh-white);
    box-shadow: var(--eh-shadow-sm);
    transition: var(--eh-transition);
}
.header-section.sticky-header {
    box-shadow: var(--eh-shadow);
}
.header-gradient {
    background: transparent;
}
.nav-menu {
    border-radius: 8px !important;
    box-shadow: var(--eh-shadow) !important;
    padding: 12px 24px !important;
    margin-bottom: -30px;
}
.sticky-header .nav-menu {
    border-radius: 0 !important;
    box-shadow: none !important;
    margin-bottom: 0;
}

/* --- Hero Section --- */
.eh-hero {
    background: var(--eh-gradient);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}
.eh-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.eh-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14,165,233,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.eh-hero h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}
.eh-hero h1 .text-gradient {
    background: linear-gradient(90deg, #93c5fd, #7dd3fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.eh-hero .hero-subtitle {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 32px;
}
.eh-hero .hero-price {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 32px;
}
.eh-hero .hero-price .price-value {
    color: var(--eh-warning);
    font-weight: 700;
}
.eh-hero .hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.eh-hero .btn-hero-primary {
    background: var(--eh-accent);
    color: #fff;
    border: 2px solid var(--eh-accent);
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--eh-transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.eh-hero .btn-hero-primary:hover {
    background: #0284c7;
    border-color: #0284c7;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(14,165,233,0.4);
}
.eh-hero .btn-hero-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--eh-transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.eh-hero .btn-hero-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
    color: #fff;
    transform: translateY(-2px);
}
.eh-hero-img {
    position: relative;
    z-index: 1;
}
.eh-hero-img img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

/* Hero Trust Badges */
.eh-trust-badges {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    flex-wrap: wrap;
}
.eh-trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}
.eh-trust-badge i {
    font-size: 20px;
    color: var(--eh-accent);
}

/* --- Promo Cards --- */
.eh-promo-section {
    margin-top: -60px;
    position: relative;
    z-index: 10;
    padding-bottom: 40px;
}
.eh-promo-card {
    background: var(--eh-white);
    border-radius: var(--eh-radius);
    padding: 28px 24px;
    box-shadow: var(--eh-shadow);
    transition: var(--eh-transition);
    border: 1px solid var(--eh-border);
    height: 100%;
}
.eh-promo-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--eh-shadow-lg);
}
.eh-promo-card .promo-icon {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background: var(--eh-gradient-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--eh-primary-light);
    flex-shrink: 0;
}
.eh-promo-card h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--eh-text);
    margin: 0;
}
.eh-promo-card p {
    color: var(--eh-text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* --- Pricing Section --- */
.eh-section {
    padding: 80px 0;
}
.eh-section-light {
    background: var(--eh-bg-light);
}
.eh-section-title {
    text-align: center;
    margin-bottom: 48px;
}
.eh-section-title .badge {
    background: var(--eh-gradient-soft);
    color: var(--eh-primary-light);
    font-weight: 600;
    font-size: 13px;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
    display: inline-block;
}
.eh-section-title h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--eh-text);
    margin-bottom: 12px;
}
.eh-section-title p {
    color: var(--eh-text-muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Pricing Cards */
.eh-pricing-card {
    background: var(--eh-white);
    border-radius: var(--eh-radius-lg);
    padding: 36px 28px;
    box-shadow: var(--eh-shadow);
    transition: var(--eh-transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.eh-pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--eh-shadow-hover);
}
.eh-pricing-card.popular {
    border-color: var(--eh-primary-light);
}
.eh-pricing-card .popular-tag {
    position: absolute;
    top: 16px;
    right: -32px;
    background: var(--eh-primary-light);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 40px;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.eh-pricing-card .card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--eh-gradient-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--eh-primary-light);
    margin-bottom: 20px;
}
.eh-pricing-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--eh-text);
    margin-bottom: 8px;
}
.eh-pricing-card .pricing-from {
    font-size: 13px;
    color: var(--eh-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.eh-pricing-card .pricing-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--eh-primary);
    margin-bottom: 4px;
}
.eh-pricing-card .pricing-amount span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--eh-text-muted);
}
.eh-pricing-card .pricing-desc {
    color: var(--eh-text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    flex-grow: 1;
}
.eh-pricing-card .pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}
.eh-pricing-card .pricing-features li {
    padding: 6px 0;
    font-size: 14px;
    color: var(--eh-text);
    display: flex;
    align-items: center;
    gap: 8px;
}
.eh-pricing-card .pricing-features li i {
    color: var(--eh-success);
    font-size: 14px;
}
.eh-pricing-card .btn-pricing {
    display: block;
    text-align: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--eh-transition);
    margin-top: auto;
}
.eh-pricing-card .btn-pricing-primary {
    background: var(--eh-primary-light);
    color: #fff;
    border: 2px solid var(--eh-primary-light);
}
.eh-pricing-card .btn-pricing-primary:hover {
    background: var(--eh-primary-hover);
    border-color: var(--eh-primary-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,99,235,0.3);
}
.eh-pricing-card .btn-pricing-outline {
    background: transparent;
    color: var(--eh-primary-light);
    border: 2px solid var(--eh-primary-light);
}
.eh-pricing-card .btn-pricing-outline:hover {
    background: var(--eh-primary-light);
    color: #fff;
    transform: translateY(-2px);
}

/* --- Domain Search --- */
.eh-domain-box {
    background: var(--eh-white);
    border-radius: var(--eh-radius-lg);
    padding: 48px;
    box-shadow: var(--eh-shadow-lg);
    position: relative;
    z-index: 2;
    margin-top: -40px;
}
.eh-domain-box h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--eh-text);
    margin-bottom: 24px;
}
.eh-domain-form {
    display: flex;
    gap: 0;
    max-width: 600px;
    margin: 0 auto;
}
.eh-domain-form input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid var(--eh-border);
    border-right: none;
    border-radius: 8px 0 0 8px;
    font-size: 1rem;
    outline: none;
    transition: var(--eh-transition);
}
.eh-domain-form input:focus {
    border-color: var(--eh-primary-light);
}
.eh-domain-form button {
    background: var(--eh-primary-light);
    color: #fff;
    border: 2px solid var(--eh-primary-light);
    padding: 14px 28px;
    border-radius: 0 8px 8px 0;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--eh-transition);
    white-space: nowrap;
}
.eh-domain-form button:hover {
    background: var(--eh-primary-hover);
    border-color: var(--eh-primary-hover);
}
.eh-domain-extensions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 24px;
}
.eh-domain-ext {
    background: var(--eh-bg-light);
    border: 1px solid var(--eh-border);
    border-radius: 8px;
    padding: 10px 18px;
    text-align: center;
    transition: var(--eh-transition);
}
.eh-domain-ext:hover {
    border-color: var(--eh-primary-light);
    background: #eff6ff;
}
.eh-domain-ext h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--eh-primary-light);
    margin: 0;
}
.eh-domain-ext span {
    font-size: 13px;
    color: var(--eh-text-muted);
}

/* --- Stats Section --- */
.eh-stats {
    background: var(--eh-gradient);
    padding: 60px 0;
}
.eh-stat-item {
    text-align: center;
    padding: 20px;
}
.eh-stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}
.eh-stat-item .stat-label {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.75);
}

/* --- Features Section --- */
.eh-feature-card {
    background: var(--eh-white);
    border-radius: var(--eh-radius);
    padding: 28px 24px;
    box-shadow: var(--eh-shadow-sm);
    transition: var(--eh-transition);
    border: 1px solid var(--eh-border);
    height: 100%;
}
.eh-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--eh-shadow);
    border-color: var(--eh-primary-light);
}
.eh-feature-card .feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background: var(--eh-gradient-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--eh-primary-light);
    margin-bottom: 16px;
}
.eh-feature-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--eh-text);
    margin-bottom: 8px;
}
.eh-feature-card p {
    color: var(--eh-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* --- Migration / CTA Banner --- */
.eh-cta-banner {
    background: var(--eh-gradient);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.eh-cta-banner::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
}
.eh-cta-banner h2 {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}
.eh-cta-banner p {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    margin-bottom: 24px;
}
.eh-cta-banner .cta-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}
.eh-cta-banner .cta-list li {
    color: rgba(255,255,255,0.9);
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}
.eh-cta-banner .cta-list li i {
    color: var(--eh-accent);
    font-size: 16px;
}
.eh-cta-banner .btn-hero-primary {
    background: var(--eh-accent);
    color: #fff;
    border: 2px solid var(--eh-accent);
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--eh-transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.eh-cta-banner .btn-hero-primary:hover {
    background: #0284c7;
    border-color: #0284c7;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(14,165,233,0.4);
}
.eh-cta-banner .btn-hero-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--eh-transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.eh-cta-banner .btn-hero-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
    color: #fff;
    transform: translateY(-2px);
}

/* CTA phone button (WhatsApp in "Necesitas ayuda?" sections) */
.cta-phone-btn {
    color: #fff !important;
    text-decoration: none !important;
    font-size: 16px;
    font-weight: 600;
    gap: 8px;
}
.cta-phone-btn span {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.15) !important;
    color: #25D366 !important;
    font-size: 20px;
}
.cta-phone-btn:hover {
    color: #fff !important;
    opacity: 0.9;
}

/* --- Apps Grid --- */
.eh-app-item {
    background: var(--eh-white);
    border-radius: var(--eh-radius);
    padding: 20px;
    box-shadow: var(--eh-shadow-sm);
    border: 1px solid var(--eh-border);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--eh-transition);
    height: 100%;
}
.eh-app-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--eh-shadow);
    border-color: var(--eh-primary-light);
}
.eh-app-item img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: contain;
    flex-shrink: 0;
}
.eh-app-item h6 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--eh-text);
}

/* --- Footer --- */
.eh-footer {
    background: var(--eh-primary);
    color: rgba(255,255,255,0.75);
}
.eh-footer-main {
    padding: 64px 0 48px;
}
.eh-footer .footer-brand p {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 16px 0 20px;
}
.eh-footer .footer-social {
    display: flex;
    gap: 10px;
}
.eh-footer .footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    transition: var(--eh-transition);
    text-decoration: none;
}
.eh-footer .footer-social a:hover {
    background: var(--eh-accent);
    color: #fff;
    transform: translateY(-2px);
}
.eh-footer h5 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}
.eh-footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.eh-footer .footer-links li {
    margin-bottom: 10px;
}
.eh-footer .footer-links a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--eh-transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.eh-footer .footer-links a:hover {
    color: #fff;
    padding-left: 4px;
}
.eh-footer .payment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.eh-footer .payment-item {
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 8px 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.eh-footer .payment-item img {
    max-height: 24px;
    width: auto;
    opacity: 0.85;
    filter: brightness(1.2);
}
.eh-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
}
.eh-footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}
.eh-footer-bottom a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--eh-transition);
}
.eh-footer-bottom a:hover {
    color: #fff;
}

/* --- Floating Buttons --- */
.floating-buttons {
    position: fixed;
    bottom: 24px;
    left: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}
.floating-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    text-decoration: none;
    box-shadow: var(--eh-shadow);
    transition: var(--eh-transition);
    position: relative;
}
.floating-whatsapp {
    background: #25D366;
}
.floating-facebook {
    background: #1877f2;
}
.floating-btn:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: var(--eh-shadow-lg);
}
.floating-whatsapp:hover {
    background: #1faa52;
}
.floating-facebook:hover {
    background: #145dbf;
}
.floating-btn .tooltip-label {
    position: absolute;
    left: 100%;
    margin-left: 10px;
    background: var(--eh-text);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--eh-transition);
}
.floating-btn:hover .tooltip-label {
    opacity: 1;
}

/* --- Popup System --- */
.ehpopup {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 99999;
    padding: 20px;
    animation: ehPopupFadeIn 0.3s ease;
    transition: opacity 0.3s ease;
}
@keyframes ehPopupFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.ehpopup_container {
    background: var(--eh-white);
    padding: 0;
    z-index: 99999;
    max-width: 520px;
    width: 100%;
    border-radius: var(--eh-radius-lg);
    box-shadow: var(--eh-shadow-lg);
    overflow: hidden;
    animation: ehPopupSlideIn 0.3s ease;
}
@keyframes ehPopupSlideIn {
    from { transform: scale(0.9) translateY(20px); opacity: 0; }
    to { transform: scale(1) translateY(0); opacity: 1; }
}
.ehpopup_title {
    display: flex;
    justify-content: flex-end;
    padding: 12px 16px 0;
}
.ehpopup_close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--eh-bg-light);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--eh-transition);
    font-size: 16px;
    color: var(--eh-text-muted);
    line-height: 1;
}
.ehpopup_close:hover {
    background: var(--eh-danger);
    color: #fff;
}
.ehpopup_content {
    padding: 0 24px 24px;
}
.ehpopup_content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
.ehpopup_html {
    font-size: 15px;
    line-height: 1.6;
    color: var(--eh-text);
}
.ehpopup_html h2, .ehpopup_html h3, .ehpopup_html h4 {
    color: var(--eh-primary);
    margin-bottom: 12px;
    font-weight: 700;
}
.ehpopup_html p {
    margin-bottom: 16px;
    color: var(--eh-text-muted);
}
.ehpopup_html .btn,
.ehpopup_html a.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--eh-transition);
}
.ehpopup_html img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* --- Buttons General --- */
.btn-social-left {
    transition: var(--eh-transition);
}
.btn-social-left:hover {
    transform: translateY(-3px);
    opacity: 0.85;
}

/* --- Lazy Loading Skeleton --- */
img[loading="lazy"] {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: ehSkeleton 1.5s ease-in-out infinite;
}
img[loading="lazy"].loaded {
    background: none;
    animation: none;
}
@keyframes ehSkeleton {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* --- Breadcrumbs --- */
.eh-breadcrumb {
    padding: 12px 0 0;
    font-size: 13px;
}
.eh-breadcrumb ol {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.eh-breadcrumb li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
}
.eh-breadcrumb li + li::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 10px;
    color: rgba(255,255,255,0.4);
}
.eh-breadcrumb a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: var(--eh-transition);
}
.eh-breadcrumb a:hover {
    color: #fff;
    text-decoration: underline;
}
.eh-breadcrumb .active {
    color: #fff;
    font-weight: 500;
}

/* --- Scroll to Top --- */
.scrolltop-btn {
    position: fixed !important;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--eh-primary-light) !important;
    color: #fff !important;
    border: none;
    box-shadow: var(--eh-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.3s ease;
    z-index: 998;
}
.scrolltop-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scrolltop-btn:hover {
    background: var(--eh-primary-hover) !important;
    transform: translateY(-2px);
}

/* --- WhatsApp Chat Widget --- */
.wa-chat-widget {
    position: fixed;
    bottom: 88px;
    left: 24px;
    z-index: 1000;
    width: 320px;
    background: var(--eh-white);
    border-radius: var(--eh-radius-lg);
    box-shadow: var(--eh-shadow-lg);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px) scale(0.95);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
.wa-chat-widget.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}
.wa-chat-header {
    background: #25D366;
    color: #fff;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.wa-chat-header-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.wa-chat-header-info h6 {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}
.wa-chat-header-info span {
    font-size: 12px;
    opacity: 0.85;
}
.wa-chat-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--eh-transition);
}
.wa-chat-close:hover { opacity: 1; }
.wa-chat-body {
    padding: 16px;
    background: #e5ddd5;
    min-height: 80px;
}
.wa-chat-bubble {
    background: #fff;
    padding: 10px 14px;
    border-radius: 0 8px 8px 8px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--eh-text);
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    max-width: 85%;
}
.wa-chat-bubble small {
    display: block;
    text-align: right;
    color: var(--eh-text-light);
    font-size: 11px;
    margin-top: 4px;
}
.wa-chat-footer {
    padding: 12px 16px;
    display: flex;
    gap: 8px;
}
.wa-chat-footer input {
    flex: 1;
    border: 1px solid var(--eh-border);
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 13px;
    outline: none;
    transition: var(--eh-transition);
}
.wa-chat-footer input:focus {
    border-color: #25D366;
}
.wa-chat-footer button {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #25D366;
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--eh-transition);
    flex-shrink: 0;
}
.wa-chat-footer button:hover {
    background: #1faa52;
}

/* --- Domain Search Navbar --- */
.navbar-domain-search {
    position: fixed;
    top: 110px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    max-width: 90vw;
    background: var(--eh-white);
    border-radius: 0 0 var(--eh-radius) var(--eh-radius);
    box-shadow: var(--eh-shadow-lg);
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 100;
}
.navbar-domain-search.open {
    opacity: 1;
    visibility: visible;
}
.navbar-domain-form {
    display: flex;
    gap: 8px;
}
.navbar-domain-form input {
    flex: 1;
    border: 2px solid var(--eh-border);
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 14px;
    outline: none;
    transition: var(--eh-transition);
}
.navbar-domain-form input:focus {
    border-color: var(--eh-primary-light);
}
.navbar-domain-form button {
    background: var(--eh-primary-light);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--eh-transition);
    white-space: nowrap;
}
.navbar-domain-form button:hover {
    background: var(--eh-primary-hover);
}
.navbar-domain-trigger {
    background: var(--eh-primary);
    border: none;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    padding: 6px 14px !important;
    cursor: pointer;
    padding: 4px 8px;
    transition: var(--eh-transition);
    display: flex;
    align-items: center;
}
.navbar-domain-trigger:hover {
    background: var(--eh-primary-light);
    color: #fff;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .eh-hero {
        padding: 120px 0 60px;
        text-align: center;
    }
    .eh-hero h1 {
        font-size: 2.2rem;
    }
    .eh-hero .hero-btns {
        justify-content: center;
    }
    .eh-trust-badges {
        justify-content: center;
    }
    .eh-hero-img {
        margin-top: 40px;
    }
    .eh-topbar .topbar-promo {
        font-size: 12px;
    }
    .eh-domain-box {
        padding: 32px 20px;
    }
}
@media (max-width: 767px) {
    .eh-hero h1 {
        font-size: 1.75rem;
    }
    .eh-topbar .topbar-social {
        display: none;
    }
    .eh-section {
        padding: 60px 0;
    }
    .eh-section-title h2 {
        font-size: 1.6rem;
    }
    .eh-domain-form {
        flex-direction: column;
    }
    .eh-domain-form input {
        border-right: 2px solid var(--eh-border);
        border-radius: 8px;
    }
    .eh-domain-form input:focus {
        border-color: var(--eh-primary-light);
    }
    .eh-domain-form button {
        border-radius: 8px;
    }
    .eh-stat-item .stat-number {
        font-size: 2rem;
    }
    .eh-footer-main {
        padding: 48px 0 32px;
    }
}
@media (max-width: 575px) {
    .eh-topbar .topbar-actions {
        display: none;
    }
    .floating-btn .tooltip-label {
        display: none;
    }
    .wa-chat-widget {
        width: calc(100vw - 48px);
        left: 24px;
        right: 24px;
    }
    .navbar-domain-search {
        width: calc(100vw - 32px);
    }
}

/* ============================================
   Overrides para modulos existentes
   Adapta las clases de main.css al nuevo diseño
   ============================================ */

/* --- Gradiente principal (heroes de todos los modulos) --- */
.bg-primary-gradient {
    background: var(--eh-gradient) !important;
}

/* --- Section titles globales --- */
.section-title h2,
.sh-section-title h2,
.ds-seciton-title h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--eh-text);
}
.section-title p,
.sh-section-title p,
.ds-seciton-title p {
    color: var(--eh-text-muted);
}

/* --- Botones template (todos los modulos) --- */
.template-btn {
    border-radius: 8px !important;
    font-weight: 600 !important;
    transition: var(--eh-transition) !important;
    text-decoration: none !important;
}
.template-btn:hover {
    transform: translateY(-2px);
}
.template-btn.primary-btn {
    background: var(--eh-primary-light) !important;
    border-color: var(--eh-primary-light) !important;
    color: #fff !important;
}
.template-btn.primary-btn:hover {
    background: var(--eh-primary-hover) !important;
    border-color: var(--eh-primary-hover) !important;
    box-shadow: 0 6px 20px rgba(37,99,235,0.3);
}
.template-btn.secondary-btn {
    background: transparent !important;
    color: var(--eh-primary-light) !important;
    border: 2px solid var(--eh-primary-light) !important;
}
.template-btn.secondary-btn:hover {
    background: var(--eh-primary-light) !important;
    color: #fff !important;
}
.template-btn.outline-btn {
    background: transparent !important;
    color: #fff !important;
    border: 2px solid rgba(255,255,255,0.4) !important;
}
.template-btn.outline-btn:hover {
    background: rgba(255,255,255,0.1) !important;
    border-color: rgba(255,255,255,0.7) !important;
}
.template-btn.rs-primary-btn {
    background: var(--eh-primary-light) !important;
    border-color: var(--eh-primary-light) !important;
    color: #fff !important;
}

/* --- Pricing columns (web-hosting, reseller, etc.) --- */
.pricing-column,
.sh-pricing-column,
.rs-pricing-column {
    border-radius: var(--eh-radius-lg) !important;
    box-shadow: var(--eh-shadow) !important;
    transition: var(--eh-transition) !important;
    border: 2px solid transparent !important;
}
.pricing-column:hover,
.sh-pricing-column:hover,
.rs-pricing-column:hover {
    transform: translateY(-6px);
    box-shadow: var(--eh-shadow-hover) !important;
}

/* --- Deep shadow override --- */
.deep-shadow {
    box-shadow: var(--eh-shadow) !important;
}

/* --- Rounded overrides --- */
.rounded-10 {
    border-radius: var(--eh-radius) !important;
}

/* --- VPS/DS pricing items --- */
.ds-pricing-item {
    border-radius: var(--eh-radius) !important;
    box-shadow: var(--eh-shadow) !important;
    transition: var(--eh-transition) !important;
    border: 1px solid var(--eh-border);
}
.ds-pricing-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--eh-shadow-lg) !important;
    border-color: var(--eh-primary-light);
}

/* --- DS/VPS background sections --- */
.ds-bg {
    background: var(--eh-bg-light) !important;
}

/* --- DS About columns --- */
.ds-about-column {
    border-radius: var(--eh-radius) !important;
    box-shadow: var(--eh-shadow) !important;
    transition: var(--eh-transition) !important;
    border: 1px solid var(--eh-border);
}
.ds-about-column:hover {
    transform: translateY(-4px);
    box-shadow: var(--eh-shadow-lg) !important;
    border-color: var(--eh-primary-light);
}

/* --- Icon wrappers (menus y features) --- */
.icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: var(--eh-gradient-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--eh-primary-light);
    flex-shrink: 0;
}

/* --- Accordion FAQ (todos los modulos) --- */
.hm2-accordion .accordion-item {
    border: 1px solid var(--eh-border) !important;
    border-radius: var(--eh-radius) !important;
    margin-bottom: 12px;
    overflow: hidden;
}
.hm2-accordion .accordion-button {
    font-weight: 600;
    color: var(--eh-text);
    background: var(--eh-white);
}
.hm2-accordion .accordion-button:not(.collapsed) {
    background: var(--eh-gradient-soft);
    color: var(--eh-primary-light);
    box-shadow: none;
}
.hm2-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: var(--eh-border);
}
.hm2-accordion .accordion-header a {
    display: block;
    padding: 16px 20px;
    font-weight: 600;
    color: var(--eh-text);
    text-decoration: none;
    transition: var(--eh-transition);
}
.hm2-accordion .accordion-header a:hover {
    color: var(--eh-primary-light);
}
.hm2-accordion .accordion-header a:not(.collapsed) {
    background: var(--eh-gradient-soft);
    color: var(--eh-primary-light);
}
.hm2-accordion .accordion-body {
    color: var(--eh-text-muted);
    line-height: 1.7;
}

/* --- CTA sections (ds-cta en VPS pages) --- */
.ds-cta-content {
    border-radius: var(--eh-radius-lg) !important;
    padding: 48px !important;
}
.ds-cta-content h2,
.ds-cta-content h3 {
    color: #fff;
}
.ds-cta-content p {
    color: rgba(255,255,255,0.8);
}

/* --- Breadcrumb (paginas legales) --- */
.breadcrumb-area {
    padding: 120px 0 60px;
}
.breadcrumb-area h2,
.breadcrumb-area h1 {
    color: #fff;
    font-weight: 700;
}
.breadcrumb-content p {
    color: rgba(255,255,255,0.8);
}

/* --- Terms and conditions content --- */
.terms-and-conditions {
    color: var(--eh-text);
    line-height: 1.8;
}
.terms-and-conditions h3 {
    color: var(--eh-text);
    font-weight: 700;
    margin-top: 32px;
}
.terms-and-conditions p {
    color: var(--eh-text-muted);
}
.terms-and-conditions ul {
    color: var(--eh-text-muted);
}
.terms-and-conditions a {
    color: var(--eh-primary-light);
}
.terms-and-conditions a:hover {
    color: var(--eh-primary-hover);
}

/* --- Feature list (checkmarks en pricing) --- */
.feature-list li {
    color: var(--eh-text);
    font-size: 14px;
    padding: 5px 0;
}
.feature-list li i {
    color: var(--eh-success);
}

/* --- Popular badge (pricing cards) --- */
.popular-badge {
    background: var(--eh-primary-light) !important;
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    border-radius: 4px;
}
.saving-badge {
    background: var(--eh-success) !important;
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    border-radius: 4px;
    padding: 2px 8px;
}

/* --- WP features items (web-hosting) --- */
.wp-feature-item {
    border-radius: var(--eh-radius) !important;
    box-shadow: var(--eh-shadow) !important;
    transition: var(--eh-transition) !important;
    border: 1px solid var(--eh-border);
}
.wp-feature-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--eh-shadow-lg) !important;
    border-color: var(--eh-primary-light);
}

/* --- Tab switch pricing toggle --- */
.tab-switch-btn .toggle-switch-btn {
    background: var(--eh-primary-light) !important;
}

/* --- Promo items del template original --- */
.promo-item {
    border-radius: var(--eh-radius) !important;
    border: 1px solid var(--eh-border);
    transition: var(--eh-transition);
}
.promo-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--eh-shadow-lg) !important;
}

/* --- RS hero checklist --- */
.rs-hero-checklist span {
    color: rgba(255,255,255,0.9);
}

/* --- Nav tabs (reseller pricing) --- */
.nav-tabs .nav-link {
    border-radius: 8px !important;
    font-weight: 600;
    color: var(--eh-text-muted);
    transition: var(--eh-transition);
}
.nav-tabs .nav-link.active {
    background: var(--eh-primary-light) !important;
    border-color: var(--eh-primary-light) !important;
    color: #fff !important;
}

/* --- Primary text color --- */
.primary-text,
.tx-primary {
    color: var(--eh-primary-light) !important;
}

/* --- Gradient text --- */
.gradient-txt {
    background: var(--eh-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Migrate section override --- */
.migrate-hosting {
    background: var(--eh-gradient) !important;
}

/* --- Light bg sections --- */
.light-bg {
    background: var(--eh-bg-light) !important;
}

/* --- App list items --- */
.app_list_item {
    border-radius: var(--eh-radius) !important;
    border: 1px solid var(--eh-border) !important;
    transition: var(--eh-transition) !important;
}
.app_list_item:hover {
    transform: translateY(-3px);
    box-shadow: var(--eh-shadow-lg) !important;
    border-color: var(--eh-primary-light) !important;
}

/* --- Domain search box override --- */
.domain-search-box {
    border-radius: var(--eh-radius-lg) !important;
    box-shadow: var(--eh-shadow-lg) !important;
}
.domain-search-form button {
    background: var(--eh-primary-light) !important;
    border-color: var(--eh-primary-light) !important;
    border-radius: 0 8px 8px 0 !important;
}
.domain-search-form button:hover {
    background: var(--eh-primary-hover) !important;
}

/* --- Responsive overrides para modulos --- */
@media (max-width: 991px) {
    .breadcrumb-area {
        padding: 100px 0 40px;
    }
    .ds-cta-content {
        padding: 32px !important;
    }
}
@media (max-width: 767px) {
    .breadcrumb-area {
        padding: 90px 0 32px;
    }
    .breadcrumb-area h2,
    .breadcrumb-area h1 {
        font-size: 1.6rem;
    }
}

/* ============================================
   VPS Economicos - Modulo diferenciado
   ============================================ */

/* Hero verde */
.vps-eco-hero {
    background: linear-gradient(135deg, #064e3b 0%, #059669 50%, #10b981 100%);
    position: relative;
}
.vps-eco-hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.vps-eco-hero .shape-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
}
.vps-eco-hero .shape-1 { width: 400px; height: 400px; top: -100px; right: -100px; }
.vps-eco-hero .shape-2 { width: 250px; height: 250px; bottom: -80px; left: -60px; }
.vps-eco-hero .shape-3 { width: 150px; height: 150px; top: 50%; left: 40%; }

/* Badges */
.vps-eco-badge {
    display: inline-block;
    background: #fbbf24;
    color: #1e293b;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.vps-eco-badge.pulse {
    animation: ecoPulse 2s ease-in-out infinite;
}
@keyframes ecoPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(251,191,36,0.5); }
    50% { box-shadow: 0 0 0 10px rgba(251,191,36,0); }
}
.vps-eco-badge-outline {
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

/* Hero price */
.vps-eco-price-hero {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 12px 24px;
    border-radius: 12px;
}
.vps-eco-price-hero .price-label {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-weight: 500;
}
.vps-eco-price-hero .price-amount {
    color: #fbbf24;
    font-size: 2rem;
    font-weight: 800;
}
.vps-eco-price-hero .price-period {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
}

/* Hero list */
.vps-eco-hero .ds-hero-list li {
    color: rgba(255,255,255,0.9);
}

/* Hero CTA button */
.vps-eco-btn {
    background: #fbbf24 !important;
    color: #1e293b !important;
    border: none !important;
    font-weight: 700 !important;
    padding: 12px 32px !important;
}
.vps-eco-btn:hover {
    background: #f59e0b !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(251,191,36,0.4);
}

/* Hero visual */
.eco-icon-container {
    position: relative;
    display: inline-block;
}
.eco-floating-badge {
    position: absolute;
    top: 20px;
    right: -20px;
    background: #fbbf24;
    color: #1e293b;
    font-size: 13px;
    font-weight: 800;
    padding: 8px 16px;
    border-radius: 8px;
    animation: ecoFloat 3s ease-in-out infinite;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
@keyframes ecoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Pricing section */
.vps-eco-pricing {
    background: var(--eh-bg-light);
}

/* Card styles */
.vps-eco-card {
    border: 2px solid transparent;
    transition: var(--eh-transition);
}
.vps-eco-card:hover {
    border-color: var(--eh-success);
    transform: translateY(-4px);
    box-shadow: var(--eh-shadow-hover);
}
.vps-eco-featured {
    border-color: var(--eh-success) !important;
    box-shadow: 0 8px 32px rgba(16,185,129,0.15);
}

/* Card badge */
.vps-eco-card-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    background: var(--eh-primary-light);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 0 0 6px 6px;
    letter-spacing: 0.5px;
}
.vps-eco-card-badge-green {
    background: var(--eh-success);
}

/* Card price */
.vps-eco-card-price .price-big {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--eh-success);
}
.vps-eco-card-price .price-period {
    font-size: 14px;
    color: var(--eh-text-muted);
}

/* OS tags */
.vps-eco-os-tags {
    display: flex;
    gap: 8px;
}
.os-tag {
    background: var(--eh-bg-light);
    color: var(--eh-text-muted);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Buy button (non-featured) */
.vps-eco-buy-btn {
    background: var(--eh-success) !important;
    color: #fff !important;
    border: none !important;
}
.vps-eco-buy-btn:hover {
    background: #059669 !important;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991px) {
    .vps-eco-price-hero .price-amount { font-size: 1.5rem; }
    .vps-eco-hero .display-3 { font-size: 2rem; }
}

/* --- 404 Page --- */
.eh-404-hero {
    background: linear-gradient(135deg, #13233a 0%, #1e3a5f 45%, #2563eb 100%);
    padding: 130px 0 90px;
    position: relative;
    overflow: hidden;
}
.eh-404-hero::before,
.eh-404-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
}
.eh-404-hero::before {
    width: 320px;
    height: 320px;
    background: rgba(14,165,233,0.18);
    top: -60px;
    right: -60px;
}
.eh-404-hero::after {
    width: 240px;
    height: 240px;
    background: rgba(255,255,255,0.08);
    bottom: -80px;
    left: 5%;
}
.eh-404-hero h1 {
    color: #fff;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.05;
    margin: 18px 0 18px;
    max-width: 700px;
}
.eh-404-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 700;
}
.eh-404-lead {
    color: rgba(255,255,255,0.82);
    font-size: 1.08rem;
    max-width: 620px;
    margin-bottom: 28px;
}
.eh-404-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}
.eh-404-quicklinks {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.eh-404-quicklinks a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.14);
    transition: var(--eh-transition);
}
.eh-404-quicklinks a:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-2px);
}
.eh-404-illustration {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 28px;
    padding: 36px 28px;
    text-align: center;
    color: #fff;
    box-shadow: 0 20px 60px rgba(7,15,30,0.25);
}
.eh-404-code {
    font-family: "Urbanist", sans-serif;
    font-size: clamp(5rem, 16vw, 8rem);
    line-height: 1;
    font-weight: 700;
    letter-spacing: -4px;
    margin-bottom: 10px;
}
.eh-404-code span {
    color: #7dd3fc;
}
.eh-404-illustration p {
    color: rgba(255,255,255,0.88);
    font-size: 1rem;
    margin-bottom: 12px;
}
.eh-404-mini-note {
    background: rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 14px 16px;
    color: rgba(255,255,255,0.78);
    font-size: 14px;
}
.eh-404-card {
    background: var(--eh-white);
    border-radius: var(--eh-radius-lg);
    box-shadow: var(--eh-shadow);
    padding: 32px 28px;
    height: 100%;
    text-align: center;
    border: 1px solid transparent;
    transition: var(--eh-transition);
}
.eh-404-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--eh-shadow-hover);
    border-color: rgba(37,99,235,0.15);
}
.eh-404-card.featured {
    background: linear-gradient(180deg, #ffffff 0%, #eff6ff 100%);
    border-color: rgba(37,99,235,0.22);
}
.eh-404-card-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    border-radius: 20px;
    background: var(--eh-gradient-soft);
    color: var(--eh-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}
.eh-404-card h3 {
    margin-bottom: 10px;
    color: var(--eh-text);
}
.eh-404-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--eh-primary);
    margin-bottom: 14px;
}
.eh-404-card p {
    color: var(--eh-text-muted);
    min-height: 72px;
}
.eh-404-help {
    padding: 0 0 80px;
    background: var(--eh-bg-light);
}
.eh-404-help-box {
    background: var(--eh-gradient);
    border-radius: 24px;
    padding: 38px 34px;
    box-shadow: var(--eh-shadow-lg);
}
.eh-404-help-box h2,
.eh-404-help-box p {
    color: #fff;
}
.eh-404-help-box p {
    opacity: 0.85;
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .eh-404-hero {
        padding: 110px 0 70px;
    }
    .eh-404-illustration {
        margin-top: 10px;
    }
}

@media (max-width: 575.98px) {
    .eh-404-actions .btn-hero-primary,
    .eh-404-actions .btn-hero-outline {
        width: 100%;
        justify-content: center;
    }
    .eh-404-help-box {
        padding: 30px 22px;
    }
    .eh-404-card p {
        min-height: auto;
    }
}

/* --- Domains Module --- */
.eh-domain-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 45%, #0ea5e9 100%);
    padding: 76px 0 84px;
    position: relative;
    overflow: hidden;
}
.eh-domain-hero::before,
.eh-domain-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
}
.eh-domain-hero::before {
    width: 360px;
    height: 360px;
    background: rgba(255,255,255,0.08);
    top: -120px;
    right: -70px;
}
.eh-domain-hero::after {
    width: 220px;
    height: 220px;
    background: rgba(14,165,233,0.18);
    bottom: -70px;
    left: -40px;
}
.eh-domain-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}
.eh-domain-hero h1 {
    color: #fff;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1.05;
    margin-bottom: 16px;
    max-width: 680px;
}
.eh-domain-lead {
    color: rgba(255,255,255,0.82);
    font-size: 1.05rem;
    max-width: 620px;
    margin-bottom: 28px;
}
.eh-domain-hero-form {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}
.eh-domain-input-wrap {
    flex: 1 1 380px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.96);
    border-radius: 18px;
    padding: 0 18px;
    min-height: 62px;
    box-shadow: 0 18px 40px rgba(15,23,42,0.16);
}
.eh-domain-input-wrap i {
    color: var(--eh-primary-light);
    font-size: 18px;
}
.eh-domain-input-wrap input {
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    font-size: 16px;
    color: var(--eh-text);
}
.eh-domain-suggestions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}
.eh-domain-suggestions span {
    color: rgba(255,255,255,0.72);
    font-size: 14px;
}
.eh-domain-suggestions a {
    text-decoration: none;
    color: #fff;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.14);
    transition: var(--eh-transition);
}
.eh-domain-suggestions a:hover {
    background: rgba(255,255,255,0.18);
}
.eh-domain-hero-card {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 26px;
    padding: 28px;
    box-shadow: 0 22px 50px rgba(15,23,42,0.2);
}
.eh-domain-hero-card h3 {
    color: #fff;
    margin-bottom: 18px;
}
.eh-domain-hero-card p {
    color: rgba(255,255,255,0.72);
    margin-top: 18px;
    margin-bottom: 0;
}
.eh-domain-price-list {
    display: grid;
    gap: 12px;
}
.eh-domain-price-list div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255,255,255,0.1);
    color: #fff;
}
.eh-domain-price-list strong {
    font-weight: 700;
}
.eh-domain-result,
.eh-domain-invalid {
    background: var(--eh-white);
    border-radius: 24px;
    box-shadow: var(--eh-shadow-lg);
    padding: 34px;
}
.eh-domain-result-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.eh-domain-result-top h2,
.eh-domain-invalid h2 {
    margin-bottom: 10px;
    color: var(--eh-text);
}
.eh-domain-result-top p,
.eh-domain-invalid p {
    color: var(--eh-text-muted);
    margin-bottom: 0;
}
.result-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--eh-primary-light);
    margin-bottom: 6px;
}
.result-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    background: #ecfdf5;
    color: #047857;
    padding: 10px 14px;
    font-weight: 700;
    font-size: 14px;
}
.result-pill-available {
    background: #ecfdf5;
    color: #047857;
}
.result-pill-unavailable {
    background: #fef2f2;
    color: #b91c1c;
}
.result-pill-unknown {
    background: #eff6ff;
    color: #1d4ed8;
}
.eh-domain-status {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 16px;
    padding: 14px 16px;
    margin-bottom: 20px;
    font-weight: 600;
}
.eh-domain-status i {
    font-size: 18px;
    flex-shrink: 0;
}
.eh-domain-status-available {
    background: #ecfdf5;
    color: #047857;
}
.eh-domain-status-unavailable {
    background: #fef2f2;
    color: #b91c1c;
}
.eh-domain-status-unknown {
    background: #eff6ff;
    color: #1d4ed8;
}
.eh-domain-action-card,
.eh-domain-feature-card {
    background: var(--eh-white);
    border-radius: 20px;
    border: 1px solid var(--eh-border);
    padding: 28px 24px;
    height: 100%;
    box-shadow: var(--eh-shadow-sm);
}
.eh-domain-action-card h3,
.eh-domain-feature-card h3 {
    color: var(--eh-text);
    margin-bottom: 10px;
}
.eh-domain-action-card p,
.eh-domain-feature-card p {
    color: var(--eh-text-muted);
}
.eh-domain-action-icon,
.eh-domain-feature-icon,
.eh-domain-invalid-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: var(--eh-gradient-soft);
    color: var(--eh-primary-light);
    font-size: 28px;
}
.eh-domain-btn-disabled {
    opacity: 0.65;
    pointer-events: none;
    cursor: not-allowed;
}
.eh-domain-alt-box {
    margin-top: 28px;
    background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
    border: 1px solid #d7e7ff;
    border-radius: 22px;
    padding: 24px;
}
.eh-domain-alt-loading,
.eh-domain-alt-empty {
    border-radius: 18px;
    padding: 18px 20px;
}
.eh-domain-alt-loading {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.8);
    border: 1px dashed #bfdbfe;
    color: var(--eh-text-muted);
}
.eh-domain-alt-loading p,
.eh-domain-alt-empty {
    margin: 0;
}
.eh-domain-alt-spinner {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #bfdbfe;
    border-top-color: #2563eb;
    animation: ehDomainSpin 0.75s linear infinite;
    flex-shrink: 0;
}
.eh-domain-alt-empty {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
}
.eh-domain-alt-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}
.eh-domain-alt-head h3 {
    margin: 8px 0 0;
    color: var(--eh-text);
}
.eh-domain-alt-head p {
    margin: 0;
    max-width: 420px;
    color: var(--eh-text-muted);
}
.eh-domain-alt-card {
    background: #fff;
    border: 1px solid #dceafd;
    border-radius: 18px;
    padding: 22px 20px;
    height: 100%;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}
.eh-domain-alt-tld {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.eh-domain-alt-card h4 {
    margin: 14px 0 8px;
    color: var(--eh-text);
    word-break: break-word;
}
.eh-domain-alt-card p {
    color: var(--eh-text-muted);
    margin-bottom: 14px;
}
.eh-domain-alt-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: #047857;
    margin-bottom: 16px;
}
@keyframes ehDomainSpin {
    to {
        transform: rotate(360deg);
    }
}
.eh-domain-invalid {
    text-align: center;
}

@media (max-width: 991.98px) {
    .eh-domain-result-top {
        flex-direction: column;
    }
    .eh-domain-alt-head {
        align-items: flex-start;
    }
}

@media (max-width: 575.98px) {
    .eh-domain-hero-form {
        flex-direction: column;
    }
    .eh-domain-hero-form .btn-hero-primary {
        width: 100%;
        justify-content: center;
    }
    .eh-domain-result,
    .eh-domain-invalid {
        padding: 26px 20px;
    }
}

/* --- Licencias Module --- */
.eh-license-module {
    padding: 60px 0 20px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

/* --- Registro Module --- */
.eh-register-module {
    background: linear-gradient(135deg, #0f172a 0%, #1d4ed8 45%, #38bdf8 100%);
    padding: 76px 0 88px;
    position: relative;
    overflow: hidden;
}
.eh-register-module::before,
.eh-register-module::after {
    content: '';
    position: absolute;
    border-radius: 50%;
}
.eh-register-module::before {
    width: 360px;
    height: 360px;
    top: -120px;
    right: -80px;
    background: rgba(255,255,255,0.08);
}
.eh-register-module::after {
    width: 240px;
    height: 240px;
    bottom: -100px;
    left: -40px;
    background: rgba(125,211,252,0.14);
}
.eh-register-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.eh-register-module h1 {
    color: #fff;
    font-size: clamp(2.2rem, 4.8vw, 4rem);
    line-height: 1.05;
    margin-bottom: 16px;
    max-width: 700px;
}
.eh-register-lead {
    color: rgba(255,255,255,0.82);
    max-width: 600px;
    font-size: 1.05rem;
    margin-bottom: 26px;
}
.eh-register-highlights {
    display: grid;
    gap: 12px;
    max-width: 580px;
}
.eh-register-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
}
.eh-register-highlight i {
    font-size: 18px;
    color: #bfdbfe;
}
.eh-register-sidecard {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 26px;
    padding: 28px;
    color: #fff;
    box-shadow: 0 24px 50px rgba(15,23,42,0.18);
}
.eh-register-sidecard h3 {
    color: #fff;
    margin-bottom: 18px;
}
.eh-register-sidegrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.eh-register-sidegrid div {
    background: rgba(255,255,255,0.1);
    border-radius: 18px;
    padding: 18px;
}
.eh-register-sidegrid strong {
    display: block;
    margin-bottom: 8px;
}
.eh-register-sidegrid p {
    margin: 0;
    color: rgba(255,255,255,0.76);
    font-size: 0.95rem;
}
.eh-register-card,
.eh-register-help {
    background: var(--eh-white);
    border-radius: 24px;
    box-shadow: var(--eh-shadow-lg);
    border: 1px solid var(--eh-border);
}
.eh-register-card {
    padding: 32px;
}
.eh-register-help {
    padding: 24px;
    margin-bottom: 20px;
}
.eh-register-help h3 {
    margin-bottom: 14px;
    color: var(--eh-text);
}
.eh-register-help p,
.eh-register-help li,
.eh-register-card-head p {
    color: var(--eh-text-muted);
}
.eh-register-help ul {
    margin: 0;
    padding-left: 18px;
}
.eh-register-card-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.eh-register-card-head h2 {
    margin: 10px 0 0;
    color: var(--eh-text);
}
.eh-register-card-head p {
    margin: 0;
    max-width: 360px;
}
.eh-register-group-title {
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--eh-primary-light);
    margin-bottom: 14px;
}
.eh-register-input {
    min-height: 52px;
    border-radius: 14px;
    border: 1px solid var(--eh-border);
    box-shadow: none;
}
.eh-register-input:focus {
    border-color: #93c5fd;
    box-shadow: 0 0 0 4px rgba(59,130,246,0.12);
}
.eh-register-error {
    min-height: 20px;
    padding-top: 6px;
    color: #b91c1c;
    font-size: 0.86rem;
}
.eh-register-hint {
    color: var(--eh-text-muted);
    font-size: 0.84rem;
    margin-top: 6px;
}
.eh-register-actions {
    margin-top: 30px;
    display: block;
}
.eh-register-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    border: none;
    gap: 8px;
}
.eh-register-note {
    margin-top: 14px;
    color: var(--eh-text-muted);
    font-size: 0.94rem;
    max-width: 100%;
}
.eh-register-alert {
    border-radius: 16px;
    padding: 14px 16px;
    margin-bottom: 20px;
    font-weight: 600;
}
.eh-register-alert-success {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
}
.eh-register-alert-error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

@media (max-width: 991.98px) {
    .eh-register-sidegrid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .eh-register-card,
    .eh-register-help,
    .eh-register-sidecard {
        padding: 22px 20px;
    }
    .eh-register-submit {
        width: 100%;
        justify-content: center;
    }
}
.eh-license-module__hero {
    background: linear-gradient(135deg, #17324f 0%, #2563eb 100%);
    border-radius: 24px;
    padding: 42px 36px;
    box-shadow: var(--eh-shadow-lg);
}
.eh-license-module__eyebrow,
.eh-vps-compare-module__eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.eh-license-module__hero h1,
.eh-vps-compare-module__hero h1 {
    color: #fff;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.05;
    margin-bottom: 16px;
}
.eh-license-module__hero p,
.eh-vps-compare-module__hero p {
    color: rgba(255,255,255,0.84);
    font-size: 1.05rem;
    margin-bottom: 0;
}
.eh-license-module__actions,
.eh-vps-compare-module__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 24px;
}
.eh-license-module__note,
.eh-vps-compare-module__note {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 20px;
    padding: 24px;
    color: #fff;
}
.eh-license-module__note h3,
.eh-vps-compare-module__note h3 {
    color: #fff;
    margin-bottom: 14px;
}
.eh-license-module__note ul,
.eh-vps-compare-module__note ul,
.eh-license-module__features {
    list-style: none;
    margin: 0;
    padding: 0;
}
.eh-license-module__note li,
.eh-vps-compare-module__note li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.82);
}
.eh-license-module__note li::before,
.eh-vps-compare-module__note li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #7dd3fc;
}
.eh-license-module__section,
.eh-vps-compare-module__section {
    padding: 70px 0;
}
.eh-license-module__card {
    position: relative;
    background: #fff;
    border-radius: 22px;
    box-shadow: var(--eh-shadow);
    padding: 30px 28px;
    height: 100%;
    border: 1px solid rgba(37,99,235,0.08);
    transition: var(--eh-transition);
}
.eh-license-module__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--eh-shadow-hover);
}
.eh-license-module__badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--eh-primary-light);
    color: #fff;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
}
.eh-license-module__top {
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
}
.eh-license-module__icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: var(--eh-gradient-soft);
    color: var(--eh-primary-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 30px;
}
.eh-license-module__top h3 {
    color: var(--eh-text);
    margin-bottom: 8px;
}
.eh-license-module__top p {
    color: var(--eh-text-muted);
    margin-bottom: 0;
}
.eh-license-module__price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--eh-primary);
    margin-bottom: 18px;
}
.eh-license-module__price span,
.eh-license-module__price small {
    color: var(--eh-text-muted);
}
.eh-license-module__features li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 12px;
    color: var(--eh-text);
}
.eh-license-module__features i {
    color: var(--eh-success);
    margin-top: 3px;
}

/* --- Comparador VPS Module --- */
.eh-vps-compare-module {
    padding: 60px 0 20px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}
.eh-vps-compare-module__hero {
    background: linear-gradient(135deg, #111827 0%, #1e3a5f 52%, #1d4ed8 100%);
    border-radius: 24px;
    padding: 42px 36px;
    box-shadow: var(--eh-shadow-lg);
}
.eh-vps-compare-module__table-wrap {
    overflow-x: auto;
    background: #fff;
    border-radius: 22px;
    box-shadow: var(--eh-shadow-lg);
}
.eh-vps-compare-module__table {
    width: 100%;
    min-width: 920px;
    border-collapse: collapse;
}
.eh-vps-compare-module__table th,
.eh-vps-compare-module__table td {
    padding: 18px 16px;
    border-bottom: 1px solid var(--eh-border);
    vertical-align: top;
    text-align: left;
}
.eh-vps-compare-module__table thead th {
    background: #f8fbff;
}
.eh-vps-compare-module__table thead th {
    position: sticky;
    top: 0;
    z-index: 3;
}
.eh-vps-compare-module__sticky-col {
    position: sticky;
    left: 0;
    z-index: 2;
    background: #fff;
    min-width: 220px;
}
.eh-vps-compare-module__table thead .eh-vps-compare-module__sticky-col {
    z-index: 4;
    background: #f8fbff;
}
.eh-vps-compare-module__plan {
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-radius: 14px;
    padding: 12px;
}
.eh-vps-compare-module__group {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--eh-primary-light);
    font-weight: 700;
}
.eh-vps-compare-module__plan strong {
    color: var(--eh-text);
}
.eh-vps-compare-module__price {
    color: var(--eh-success);
    font-weight: 700;
}
.eh-vps-compare-module__plan--eco {
    background: #f0fdf4;
}
.eh-vps-compare-module__plan--pro {
    background: #eff6ff;
}
.eh-vps-compare-module__plan--max {
    background: #fff7ed;
}
.eh-vps-compare-module__empty {
    color: var(--eh-text-light);
}
.eh-vps-compare-module__section--tight {
    padding-top: 20px;
}
.eh-vps-compare-module__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}
.eh-vps-compare-module__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.eh-vps-compare-module__toolbar-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--eh-border);
    background: #fff;
    color: var(--eh-text);
    border-radius: 999px;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 700;
    transition: var(--eh-transition);
}
.eh-vps-compare-module__toolbar-btn:hover,
.eh-vps-compare-module__toolbar-btn.is-active {
    background: var(--eh-primary-light);
    border-color: var(--eh-primary-light);
    color: #fff;
}
.eh-vps-compare-module__toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--eh-text);
}
.eh-vps-compare-module__choice-price {
    margin-bottom: 14px;
    color: var(--eh-text);
}
.eh-vps-compare-module__choice-price strong {
    color: var(--eh-primary);
    font-size: 1.2rem;
}
.eh-vps-compare-module__choice-meta {
    color: var(--eh-text-muted);
    font-size: 14px;
    margin-bottom: 18px;
}
.eh-vps-compare-module__choice-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.eh-vps-compare-module__choice {
    background: #fff;
    border-radius: 22px;
    box-shadow: var(--eh-shadow);
    padding: 28px 24px;
    height: 100%;
    border: 1px solid rgba(37,99,235,0.08);
}
.eh-vps-compare-module__choice--featured {
    background: linear-gradient(180deg, #ffffff 0%, #eff6ff 100%);
    border-color: rgba(37,99,235,0.18);
}
.eh-vps-compare-module__choice--entry {
    border-color: rgba(16,185,129,0.16);
    background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
}
.eh-vps-compare-module__choice--performance {
    border-color: rgba(249,115,22,0.18);
    background: linear-gradient(180deg, #ffffff 0%, #fff7ed 100%);
}
.eh-vps-compare-module__choice-tag {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 6px 12px;
    background: var(--eh-gradient-soft);
    color: var(--eh-primary-light);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 14px;
}
.eh-vps-compare-module__choice h3,
.eh-vps-compare-module__closing h2 {
    color: var(--eh-text);
}
.eh-vps-compare-module__choice p {
    color: var(--eh-text-muted);
    margin-bottom: 18px;
}
.eh-vps-compare-module__cell--eco {
    background: linear-gradient(180deg, rgba(16,185,129,0.14) 0%, rgba(16,185,129,0.10) 100%);
    border-left: 1px solid rgba(16,185,129,0.18);
    border-right: 1px solid rgba(16,185,129,0.18);
}
.eh-vps-compare-module__cell--pro {
    background: linear-gradient(180deg, rgba(37,99,235,0.14) 0%, rgba(37,99,235,0.10) 100%);
    border-left: 1px solid rgba(37,99,235,0.18);
    border-right: 1px solid rgba(37,99,235,0.18);
}
.eh-vps-compare-module__cell--max {
    background: linear-gradient(180deg, rgba(249,115,22,0.16) 0%, rgba(249,115,22,0.11) 100%);
    border-left: 1px solid rgba(249,115,22,0.20);
    border-right: 1px solid rgba(249,115,22,0.20);
}
.eh-vps-compare-module__closing {
    background: linear-gradient(135deg, #17324f 0%, #2563eb 100%);
    border-radius: 24px;
    padding: 34px 30px;
    box-shadow: var(--eh-shadow-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.eh-vps-compare-module__closing h2,
.eh-vps-compare-module__closing p {
    color: #fff;
}
.eh-vps-compare-module__closing p {
    margin-bottom: 0;
    opacity: 0.85;
    max-width: 780px;
}

@media (max-width: 575.98px) {
    .eh-license-module__hero,
    .eh-vps-compare-module__hero {
        padding: 28px 20px;
    }
    .eh-license-module__actions .template-btn,
    .eh-vps-compare-module__actions .template-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .eh-license-module__top {
        flex-direction: column;
    }
    .eh-vps-compare-module__toolbar {
        align-items: flex-start;
    }
    .eh-vps-compare-module__choice-actions .template-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .eh-vps-compare-module__closing {
        padding: 28px 20px;
    }
}

/* --- Campaign Modules --- */
.eh-campaign-module {
    padding: 60px 0 20px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}
.eh-campaign-module__hero {
    border-radius: 24px;
    padding: 42px 36px;
    box-shadow: var(--eh-shadow-lg);
}
.eh-campaign-module__hero--migration {
    background: linear-gradient(135deg, #17324f 0%, #2563eb 100%);
}
.eh-campaign-module__hero--wordpress {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 52%, #0ea5e9 100%);
}
.eh-campaign-module__eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.eh-campaign-module__eyebrow--dark {
    background: var(--eh-gradient-soft);
    color: var(--eh-primary-light);
}
.eh-campaign-module__hero h1,
.eh-testimonials-module__hero h1 {
    color: #fff;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.05;
    margin-bottom: 16px;
}
.eh-campaign-module__hero p,
.eh-testimonials-module__hero p {
    color: rgba(255,255,255,0.84);
    font-size: 1.05rem;
    margin-bottom: 0;
}
.eh-campaign-module__actions,
.eh-testimonials-module__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 24px;
}
.eh-campaign-module__sidecard,
.eh-testimonials-module__sidecard {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 20px;
    padding: 24px;
    color: #fff;
}
.eh-campaign-module__sidecard h3,
.eh-testimonials-module__sidecard h3 {
    color: #fff;
    margin-bottom: 14px;
}
.eh-campaign-module__sidecard ul,
.eh-campaign-module__steps,
.eh-campaign-module__checklist ul,
.eh-testimonials-module__sidecard ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.eh-campaign-module__sidecard li,
.eh-campaign-module__checklist li,
.eh-testimonials-module__sidecard li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.82);
}
.eh-campaign-module__sidecard li::before,
.eh-campaign-module__checklist li::before,
.eh-testimonials-module__sidecard li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #7dd3fc;
}
.eh-campaign-module__section,
.eh-testimonials-module__section {
    padding: 70px 0;
}
.eh-campaign-module__section--soft,
.eh-testimonials-module__section--soft {
    background: var(--eh-bg-light);
}
.eh-campaign-module__card,
.eh-testimonials-module__card,
.eh-campaign-module__checklist,
.eh-campaign-module__plan {
    background: #fff;
    border-radius: 22px;
    box-shadow: var(--eh-shadow);
    padding: 28px 24px;
    height: 100%;
}
.eh-campaign-module__icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: var(--eh-gradient-soft);
    color: var(--eh-primary-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 16px;
}
.eh-campaign-module__card h3,
.eh-campaign-module__content h2,
.eh-campaign-module__checklist h3,
.eh-campaign-module__plan h3,
.eh-testimonials-module__card h3 {
    color: var(--eh-text);
}
.eh-campaign-module__card p,
.eh-campaign-module__content p,
.eh-campaign-module__plan ul li,
.eh-testimonials-module__quote,
.eh-testimonials-module__empty p {
    color: var(--eh-text-muted);
}
.eh-campaign-module__content {
    padding-right: 20px;
}
.eh-campaign-module__steps li {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--eh-border);
    padding: 16px 18px;
    margin-bottom: 12px;
    color: var(--eh-text);
    box-shadow: var(--eh-shadow-sm);
}
.eh-campaign-module__checklist {
    background: linear-gradient(180deg, #ffffff 0%, #eff6ff 100%);
}
.eh-campaign-module__checklist h3 {
    color: var(--eh-text);
}
.eh-campaign-module__checklist li {
    color: var(--eh-text-muted);
}
.eh-campaign-module__checklist li::before {
    background: var(--eh-primary-light);
}
.eh-campaign-module__cta {
    background: var(--eh-gradient);
    border-radius: 24px;
    box-shadow: var(--eh-shadow-lg);
    padding: 34px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.eh-campaign-module__cta h2,
.eh-campaign-module__cta p {
    color: #fff;
}
.eh-campaign-module__cta p {
    margin-bottom: 0;
    opacity: 0.86;
    max-width: 760px;
}
.eh-campaign-module__price {
    color: rgba(255,255,255,0.9);
    font-size: 1.05rem;
    margin-top: 18px;
}
.eh-campaign-module__price strong {
    color: #fff;
    font-size: 1.35rem;
}
.eh-campaign-module__plan {
    position: relative;
}
.eh-campaign-module__plan--featured {
    background: linear-gradient(180deg, #ffffff 0%, #eff6ff 100%);
    border: 1px solid rgba(37,99,235,0.16);
}
.eh-campaign-module__plan-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--eh-success);
    color: #fff;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
}
.eh-campaign-module__plan-price {
    color: var(--eh-primary);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 18px;
}
.eh-campaign-module__plan-price small {
    color: var(--eh-text-muted);
}
.eh-campaign-module__plan ul {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
}
.eh-campaign-module__plan li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 12px;
}
.eh-campaign-module__plan li i {
    color: var(--eh-success);
    margin-top: 3px;
}

/* --- Testimonials Module --- */
.eh-testimonials-module {
    padding: 60px 0 20px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}
.eh-testimonials-module__hero {
    background: linear-gradient(135deg, #17324f 0%, #2563eb 100%);
    border-radius: 24px;
    padding: 42px 36px;
    box-shadow: var(--eh-shadow-lg);
}
.eh-testimonials-module__eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.eh-testimonials-module__card--featured {
    background: linear-gradient(180deg, #ffffff 0%, #eff6ff 100%);
    border: 1px solid rgba(37,99,235,0.14);
}
.eh-testimonials-module__stars {
    display: flex;
    gap: 6px;
    color: #f59e0b;
    margin-bottom: 14px;
}
.eh-testimonials-module__quote {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 18px;
}
.eh-testimonials-module__meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.eh-testimonials-module__meta strong {
    color: var(--eh-text);
}
.eh-testimonials-module__meta span,
.eh-testimonials-module__meta small {
    color: var(--eh-text-muted);
}
.eh-testimonials-module__pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 6px 12px;
    background: var(--eh-gradient-soft);
    color: var(--eh-primary-light);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 14px;
}
.eh-testimonials-module__empty {
    background: #fff;
    border-radius: 22px;
    box-shadow: var(--eh-shadow);
    padding: 34px 28px;
    text-align: center;
}
.eh-testimonials-module__empty h3 {
    color: var(--eh-text);
}

@media (max-width: 575.98px) {
    .eh-campaign-module__hero,
    .eh-testimonials-module__hero {
        padding: 28px 20px;
    }
    .eh-campaign-module__actions .template-btn,
    .eh-testimonials-module__actions .template-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .eh-campaign-module__cta {
        padding: 28px 20px;
    }
}
