:root {
    --primary-color: #818cf8;
    --secondary-color: #a5b4fc;
    --accent-color: #34d399;
    --text-color: #f8fafc;
    --text-muted: #94a3b8;
    --light-bg: #0f172a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background: var(--light-bg);
}

/* Header & Nav */
header {
    background: rgba(15, 23, 42, 0.9);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo img {
    height: 100px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
    text-shadow: 0 0 15px rgba(129, 140, 248, 0.4);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    max-width: 600px;
}

.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, background 0.2s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Features */
.features {
    padding: 4rem 2rem;
    background: var(--light-bg);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 800;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    padding: 2rem;
    border-radius: 12px;
    background: #1e293b;
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Services / Pricing */
.services {
    padding: 4rem 2rem;
    background: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #1e293b;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.price-tag {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.price-sub {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 400;
}

.service-card ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.service-card ul li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #475569;
}

.service-card ul li::before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
}

.highlight-badge {
    background: var(--accent-color);
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 0.5rem;
}

/* Gallery */
.gallery {
    padding: 4rem 2rem;
    background: #0f172a;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    height: 200px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Footer */
footer {
    background: #1e293b;
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.footer-links {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
}

.footer-links a:hover {
    color: white;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(8px);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: rgba(30, 41, 59, 0.98);
    padding: 2.5rem;
    border-radius: 24px;
    width: 90%;
    max-width: 500px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: scale(0.95) translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-color);
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.close-modal:hover {
    background: rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
}

/* Modal Steps Flow */
.modal-step {
    display: none;
    animation: fadeInSlide 0.4s ease-out;
}

.modal-step.active {
    display: block;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Plan Selection Styles (Shared) */
.vultr-plan-card, .hosting-plan-card {
    border: 2px solid #e2e8f0 !important;
    padding: 1.5rem !important;
    border-radius: 12px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    background: #1e293b !important; /* Match card background */
}

.vultr-plan-card:hover, .hosting-plan-card:hover {
    border-color: var(--primary-color) !important;
    box-shadow: 0 10px 15px -3px rgba(129, 140, 248, 0.2) !important;
}

.vultr-plan-card.selected, .hosting-plan-card.selected {
    border-color: var(--primary-color) !important;
    background: rgba(129, 140, 248, 0.1) !important;
    box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.3) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(15, 23, 42, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        text-align: center;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 1001;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }
}

/* ============================================================
   NUEVOS ESTILOS v2.0
   ============================================================ */

/* Hero Badge */
.hero-badge {
    display: inline-block;
    background: rgba(129, 140, 248, 0.15);
    border: 1px solid rgba(129, 140, 248, 0.3);
    color: var(--primary-color);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.04em;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.cta-outline {
    background: transparent !important;
    border: 2px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
}

.cta-outline:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
}

/* Trust Bar */
.trust-bar {
    background: #1e293b;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 1.5rem 2rem;
}

.trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto 1rem;
}

.trust-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.trust-stat strong {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 800;
}

.trust-stat span {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.trust-sep {
    color: #334155;
    font-size: 1.8rem;
    font-weight: 100;
}

.trust-certs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-certs span {
    font-size: 0.78rem;
    color: var(--text-muted);
    padding: 0.3rem 0.9rem;
    border: 1px solid #334155;
    border-radius: 20px;
}

/* Domain Search */
.domain-search-wrap {
    max-width: 680px;
    margin: 0 auto;
}

.domain-search-row {
    display: flex;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(129, 140, 248, 0.35);
    background: #1e293b;
    transition: border-color 0.2s;
}

.domain-search-row:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.15);
}

.domain-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-color);
    font-size: 1.1rem;
    padding: 1rem 1.2rem;
    outline: none;
    font-family: 'Inter', sans-serif;
}

.domain-input::placeholder { color: #475569; }

.domain-dot {
    display: flex;
    align-items: center;
    padding: 0 1rem;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
    border-left: 1px solid #334155;
    border-right: 1px solid #334155;
    background: rgba(129, 140, 248, 0.08);
    white-space: nowrap;
}

.domain-search-row .cta-button {
    border-radius: 0;
    padding: 1rem 1.5rem;
}

.domain-hint {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-top: 0.8rem;
}

/* Red / Network Section */
.red-section {
    background: #0a1628;
    padding: 4rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.red-inner {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.red-nodes {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-top: 1.5rem;
}

.red-node {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.red-node strong { color: var(--text-color); }

/* FAQ */
.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-item {
    background: #1e293b;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
}

.faq-q {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 600;
    padding: 1.2rem 1.5rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
    transition: color 0.2s;
    gap: 1rem;
}

.faq-q:hover { color: var(--primary-color); }

.faq-q span {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 300;
    flex-shrink: 0;
    line-height: 1;
}

.faq-a {
    display: none;
    padding: 0 1.5rem 1.2rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Footer Legal */
.footer-legal {
    margin: 0.8rem 0 0.2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: 0.82rem;
}

.footer-legal a {
    color: #475569;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover { color: var(--text-color); }
.footer-legal span { color: #334155; }

/* Responsive nuevos */
@media (max-width: 768px) {
    .red-inner { grid-template-columns: 1fr; }
    .trust-sep { display: none; }
    .domain-search-row { flex-wrap: wrap; }
    .domain-dot { border-radius: 0; }
}

/* ============================================================
   MEJORAS VISUALES v2.1 — Diseño más potente
   ============================================================ */

/* ── Variables adicionales ── */
:root {
    --green: #34d399;
    --green-dark: #10b981;
    --glow-purple: rgba(129, 140, 248, 0.18);
    --glow-green: rgba(52, 211, 153, 0.25);
    --card-bg: #111827;
    --border-subtle: rgba(255,255,255,0.07);
}

/* ── Hero rediseñado ── */
.hero {
    position: relative;
    overflow: hidden;
    padding: 6rem 2rem 5rem;
    background:
        radial-gradient(ellipse 90% 60% at 50% -10%, var(--glow-purple) 0%, transparent 70%),
        var(--light-bg);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(129,140,248,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(129,140,248,.04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.6rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.08;
    margin-bottom: 1.2rem;
}

.hero-gradient {
    background: linear-gradient(130deg, var(--primary-color) 30%, var(--green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.15rem;
    color: #94a3b8;
    margin-bottom: 0.4rem;
    line-height: 1.6;
}

.hero-sub2 {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 2.2rem;
}

.hero-micro {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.6rem;
}

.hero-micro span {
    font-size: 0.8rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.hero-micro span::before {
    content: '✓';
    color: var(--green);
    font-weight: 700;
}

/* ── Botón CTA verde — el botón principal ── */
.cta-green {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%) !important;
    color: #052e16 !important;
    font-weight: 700 !important;
    font-size: 1.05rem !important;
    padding: 0.95rem 2.2rem !important;
    box-shadow: 0 0 28px var(--glow-green);
    border: none !important;
    letter-spacing: 0.01em;
}

.cta-green:hover {
    background: linear-gradient(135deg, #6ee7b7 0%, var(--green) 100%) !important;
    box-shadow: 0 0 45px var(--glow-green) !important;
    transform: translateY(-3px);
}

/* ── Garantía strip ── */
.guarantee-strip {
    background: rgba(52, 211, 153, 0.06);
    border-top: 1px solid rgba(52, 211, 153, 0.15);
    border-bottom: 1px solid rgba(52, 211, 153, 0.15);
    padding: 1rem 2rem;
    text-align: center;
}

.guarantee-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--green);
    font-weight: 600;
}

.guarantee-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ── Section titles mejorados ── */
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.6rem;
}

.section-label {
    display: inline-block;
    background: rgba(129,140,248,0.12);
    border: 1px solid rgba(129,140,248,0.25);
    color: var(--primary-color);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

/* ── Secciones con más respiro ── */
.services, .features {
    padding: 5.5rem 2rem;
}

/* ── Cards rediseñadas ── */
.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border-subtle);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--green));
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover::before { opacity: 1; }

.service-card:hover {
    border-color: rgba(129,140,248,0.2);
    box-shadow: 0 24px 48px rgba(0,0,0,0.4);
    transform: translateY(-6px);
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-subtle);
    position: relative;
}

.feature-card:hover {
    border-color: rgba(129,140,248,0.25);
    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
    transform: translateY(-6px);
}

/* ── Precios más llamativos ── */
.price-tag {
    background: linear-gradient(135deg, var(--primary-color), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.2rem;
}

/* ── FAQ mejorado ── */
.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-subtle);
    transition: border-color 0.2s;
}

.faq-item:has(.faq-a[style*="block"]) {
    border-color: rgba(129,140,248,0.2);
}

/* ── Trust bar mejorado ── */
.trust-bar {
    background: linear-gradient(90deg, #0d1b2e 0%, #111827 50%, #0d1b2e 100%);
}

.trust-stat strong {
    background: linear-gradient(135deg, var(--primary-color), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Highlight badge ── */
.highlight-badge {
    background: linear-gradient(135deg, var(--green), #059669);
    color: #052e16;
    font-weight: 800;
}

/* ── Mobile mejorado ── */
@media (max-width: 768px) {
    .hero { padding: 4rem 1.5rem 3.5rem; }
    .hero h1 { font-size: 2.4rem; letter-spacing: -0.02em; }
    .hero-sub { font-size: 1rem; }
    .hero-ctas { flex-direction: column; align-items: center; }
    .hero-ctas .cta-button { width: 100%; max-width: 320px; text-align: center; }
    .hero-micro { gap: 0.8rem; }
    .services, .features { padding: 3.5rem 1.2rem; }
    .section-title { font-size: 1.8rem; }
    .services-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .guarantee-inner { gap: 1.2rem; flex-direction: column; }
    .trust-inner { gap: 1rem; }
    .service-card { padding: 1.5rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    nav { padding: 0.8rem 1rem; }
    .logo img { height: 60px; }
}

/* ============================================================
   v2.2 — VPS Plans · Dominios · Testimonios · WhatsApp Float
   ============================================================ */

/* ── Nav compacto para 8 items ── */
.nav-links { gap: 1.4rem; font-size: 0.87rem; }
.nav-links a { letter-spacing: -0.01em; }
.nav-links .login-link {
    background: rgba(129,140,248,0.15);
    border: 1px solid rgba(129,140,248,0.3);
    padding: 0.4rem 0.9rem;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.2s;
}
.nav-links .login-link:hover {
    background: rgba(129,140,248,0.3);
    color: #fff;
}

/* ── VPS Plans Section ── */
.plans-section {
    padding: 5.5rem 2rem;
    background: #070d1a;
    position: relative;
    overflow: hidden;
}

.plans-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(52,211,153,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(52,211,153,.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.plan-card {
    background: #111827;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 18px;
    padding: 2rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    position: relative;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.plan-card:hover {
    transform: translateY(-6px);
    border-color: rgba(129,140,248,0.25);
    box-shadow: 0 24px 50px rgba(0,0,0,0.5);
}

.plan-card.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(170deg, #1a2540 0%, #111827 100%);
    box-shadow: 0 0 50px rgba(129,140,248,0.12);
}

.plan-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--green));
    color: #000;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 20px;
    white-space: nowrap;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.plan-name {
    font-size: 1rem;
    font-weight: 700;
    color: #94a3b8;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.78rem;
}

.plan-price {
    text-align: center;
    line-height: 1.1;
}

.plan-amount {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(130deg, var(--primary-color), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-per {
    font-size: 0.78rem;
    color: var(--text-muted);
    display: block;
    margin-top: 0.2rem;
}

.plan-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    padding: 0.9rem;
    border: 1px solid rgba(255,255,255,0.04);
}

.plan-spec {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2px;
    padding: 0.3rem;
}

.spec-val {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-color);
}

.spec-lbl {
    font-size: 0.68rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.plan-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.plan-tag {
    font-size: 0.7rem;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.tag-co {
    background: rgba(255,224,51,0.1);
    border: 1px solid rgba(255,224,51,0.25);
    color: #ffe033;
}

.tag-ia {
    background: rgba(52,211,153,0.1);
    border: 1px solid rgba(52,211,153,0.25);
    color: var(--green);
}

.tag-ip {
    background: rgba(129,140,248,0.1);
    border: 1px solid rgba(129,140,248,0.25);
    color: var(--primary-color);
}

.plan-footer {
    font-size: 0.75rem;
    color: #475569;
    text-align: center;
    margin-top: auto;
}

/* ── Domain TLD Price Row ── */
.domain-tld-row {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.tld-chip {
    background: #111827;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    padding: 0.8rem 1.1rem;
    text-align: center;
    min-width: 90px;
    transition: border-color 0.2s, transform 0.2s;
    cursor: pointer;
}

.tld-chip:hover {
    border-color: rgba(129,140,248,0.3);
    transform: translateY(-3px);
}

.tld-chip.featured-tld {
    border-color: rgba(255,224,51,0.3);
    background: rgba(255,224,51,0.04);
}

.tld-ext {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
}

.tld-chip.featured-tld .tld-ext { color: #ffe033; }

.tld-price {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-color);
    display: block;
    margin-top: 0.3rem;
}

.tld-yr {
    font-size: 0.65rem;
    color: #64748b;
    display: block;
}

/* ── Testimonios ── */
.testimonials-section {
    padding: 5.5rem 2rem;
    background: #070d1a;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: #111827;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 18px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: border-color 0.2s, transform 0.2s;
}

.testimonial-card:hover {
    border-color: rgba(129,140,248,0.2);
    transform: translateY(-4px);
}

.testimonial-stars { color: #fbbf24; font-size: 0.9rem; letter-spacing: 0.1em; }

.testimonial-text {
    color: #94a3b8;
    font-size: 0.94rem;
    line-height: 1.75;
    font-style: italic;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.t-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--green));
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; color: #000; font-size: 1rem;
    flex-shrink: 0;
}

.t-name { font-weight: 700; color: var(--text-color); font-size: 0.88rem; }
.t-role { font-size: 0.75rem; color: #64748b; margin-top: 1px; }

/* ── WhatsApp flotante ── */
.wa-float {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 60px; height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 24px rgba(37,211,102,0.45);
    z-index: 9999;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}

.wa-float:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 36px rgba(37,211,102,0.6);
}

.wa-float svg { width: 32px; height: 32px; fill: white; }

/* ── Responsive plans ── */
@media (max-width: 1024px) {
    .plans-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .plans-grid { grid-template-columns: 1fr; max-width: 420px; }
    .nav-links { gap: 1rem; font-size: 0.9rem; }
    .wa-float { bottom: 16px; right: 16px; width: 52px; height: 52px; }
    .wa-float svg { width: 26px; height: 26px; }
    .domain-tld-row { gap: 0.6rem; }
    .tld-chip { min-width: 78px; padding: 0.7rem 0.8rem; }
    .testimonials-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   HERO CARRUSEL v2.3
   ============================================================ */
.hero-carousel {
    position: relative;
    width: 100%;
    min-height: 72vh;
    background-color: #0b1220;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 4rem 2rem 3.5rem;
    box-sizing: border-box;
}

/* Grid sutil */
.hero-carousel::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(129,140,248,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(129,140,248,.05) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

/* Resplandor verde tenue arriba */
.hero-carousel::after {
    content: '';
    position: absolute;
    top: -80px; left: 50%;
    transform: translateX(-50%);
    width: 700px; height: 350px;
    background: radial-gradient(circle, rgba(52,211,153,.07) 0%, transparent 70%);
    pointer-events: none;
}

.carousel-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.slides-wrapper {
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide {
    position: absolute;
    top: 50%; left: 0;
    transform: translateY(-50%);
    width: 100%;
    opacity: 0;
    transition: opacity 0.85s ease-in-out;
    pointer-events: none;
    text-align: center;
    padding: 0 1rem;
}

.slide.active {
    opacity: 1;
    position: relative;
    top: auto; left: auto;
    transform: none;
    pointer-events: auto;
}

.slide-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: #fff;
    margin: 0 0 1.2rem;
    line-height: 1.08;
    letter-spacing: -0.03em;
    font-size: clamp(2.6rem, 8vw, 5.5rem);
}

.slide-subtitle {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
    color: rgba(255,255,255,0.75);
    font-size: clamp(1rem, 2.5vw, 1.45rem);
    letter-spacing: 0.02em;
    margin: 0 auto;
    max-width: 680px;
    line-height: 1.5;
}

/* Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 2.5rem;
    position: relative;
    z-index: 1;
}

.c-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, transform 0.3s;
}

.c-dot.active {
    background: #34d399;
    transform: scale(1.3);
}

/* CTAs del carrusel */
.cta-wrapper {
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.btn-primary {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.9rem 2.4rem;
    background: transparent;
    color: #fff;
    border: 1.5px solid #fff;
    border-radius: 40px;
    text-decoration: none;
    transition: background 0.3s, color 0.3s, transform 0.2s, box-shadow 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255,255,255,0.15);
}

.btn-secondary {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.9rem 2.4rem;
    background: rgba(52,211,153,0.12);
    color: #34d399;
    border: 1.5px solid rgba(52,211,153,0.4);
    border-radius: 40px;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    background: rgba(52,211,153,0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(52,211,153,0.2);
}

@media (max-width: 768px) {
    .hero-carousel { padding: 1.5rem 1rem; min-height: 100svh; }
    .slides-wrapper { min-height: 220px; }
    .slide-title { margin-bottom: 0.8rem; }
    .cta-wrapper { flex-direction: column; align-items: center; gap: 0.8rem; margin-top: 2.5rem; }
    .btn-primary, .btn-secondary { width: 100%; max-width: 280px; text-align: center; }
}

/* ============================================================
   CURRENCY SWITCHER v2.4
   ============================================================ */
.currency-switcher {
    display: flex;
    align-items: center;
    gap: 2px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 3px;
    margin-left: 0.5rem;
}

.cur-btn {
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 4px 10px;
    border-radius: 16px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.cur-btn:hover { color: #e2e8f0; }

.cur-btn.active {
    background: var(--primary-color);
    color: #fff;
}

@media (max-width: 768px) {
    .currency-switcher { margin-left: 0; margin-top: 0.5rem; }
}