* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: Arial, sans-serif;
    color: white;
    min-height: 100%;
    scroll-behavior: smooth;
    background: linear-gradient(135deg, #050816 0%, #0b1024 100%);
}

body {
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

.pmu-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(8, 12, 30, 0.75);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.pmu-logo {
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.pmu-nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.pmu-nav-links a {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    transition: .3s;
}

.pmu-nav-links a:hover {
    color: #57b8ff;
}


.pmu-content {
    max-width: 1000px;
}

.pmu-badge {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 30px;
    background: rgba(0,0,0,0.28);
    border: 1px solid rgba(255,255,255,0.10);
    margin-bottom: 30px;
    font-size: 14px;
	backdrop-filter: blur(10px);
}

.pmu-content h1 {
    font-size: 72px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
	text-shadow: 0 4px 25px rgba(0,0,0,0.45);
}

.pmu-highlight {
    color: #49b6ff;
}

.pmu-content p {
    font-size: 20px;
    color: rgba(255,255,255,0.75);
    max-width: 850px;
    margin: 0 auto 35px;
    line-height: 1.7;
	color: rgba(255,255,255,0.88);
}

.pmu-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.pmu-main-btn,
.pmu-secondary-btn {
    padding: 16px 34px;
    border-radius: 14px;
    font-weight: bold;
    transition: .3s;
}

.pmu-main-btn {
    background: linear-gradient(90deg, #37b7ff, #7c4dff);
    color: white;
}

.pmu-main-btn:hover {
    transform: translateY(-2px);
}

.pmu-secondary-btn {
    border: 1px solid rgba(255,255,255,0.12);
    color: white;
    background: rgba(255,255,255,0.04);
}

.pmu-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 40px auto 80px;
    padding: 0 30px;
}

.pmu-stat {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.pmu-stat h3 {
    font-size: 34px;
    color: #57b8ff;
    margin-bottom: 10px;
}

.pmu-stat p {
    color: rgba(255,255,255,0.65);
}

@media(max-width: 980px) {
    .pmu-content h1 {
        font-size: 42px;
    }

    .pmu-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .pmu-navbar {
        padding: 20px;
    }

    .pmu-nav-links {
        display: none;
    }
}

@media(max-width: 640px) {
    .pmu-stats {
        grid-template-columns: 1fr;
    }

    .pmu-content p {
        font-size: 16px;
    }
}
.pmu-section-title {
    text-align: center;
    font-size: 54px;
    font-weight: 800;
    margin-bottom: 20px;
}

.pmu-section-subtitle {
    text-align: center;
    color: rgba(255,255,255,0.70);
    font-size: 18px;
    max-width: 850px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

.pmu-pricing {
    padding: 180px 40px 120px;
    max-width: 1400px;
    margin: auto;
}

.pmu-pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.pmu-pricing-card {
    width: 350px;
    padding: 40px;
    border-radius: 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    transition: .35s;
    box-shadow: 0 0 30px rgba(0,0,0,0.35);
}

.pmu-pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(87,184,255,0.35);
    box-shadow: 0 0 40px rgba(87,184,255,0.18);
}

.pmu-featured {
    border: 1px solid rgba(124,77,255,0.45);
    transform: scale(1.03);
}

.pmu-plan-name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.pmu-price-big {
    font-size: 58px;
    font-weight: 900;
    color: #57b8ff;
    margin-bottom: 25px;
}

.pmu-price-big span {
    font-size: 18px;
    color: rgba(255,255,255,0.6);
}

.pmu-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
}

.pmu-plan-features li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.82);
}

.pmu-plan-btn {
    display: block;
    text-align: center;
    padding: 16px;
    border-radius: 14px;
    background: linear-gradient(90deg, #37b7ff, #7c4dff);
    color: white;
    font-weight: bold;
    transition: .3s;
}

.pmu-plan-btn:hover {
    transform: scale(1.03);
}
.pmu-inner-section {
    min-height: auto;
    padding: 140px 40px;
}
.pmu-services {
    padding: 120px 40px;
    max-width: 1400px;
    margin: auto;
}

.pmu-services-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.pmu-service-card {
    width: 360px;
    padding: 35px;
    border-radius: 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    transition: .35s;
}

.pmu-service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(87,184,255,0.30);
    box-shadow: 0 0 35px rgba(87,184,255,0.12);
}

.pmu-service-card h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: white;
}

.pmu-service-card p {
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
}
.pmu-hosting-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 60px;
}

.pmu-hosting-card {
    width: 320px;
    padding: 35px;
    border-radius: 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    transition: .35s;
    text-align: center;
}

.pmu-hosting-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 35px rgba(87,184,255,0.12);
    border-color: rgba(87,184,255,0.25);
}

.pmu-hosting-card h3 {
    font-size: 30px;
    margin-bottom: 20px;
}

.pmu-hosting-price {
    font-size: 52px;
    color: #57b8ff;
    font-weight: 900;
    margin-bottom: 20px;
}

.pmu-hosting-price span {
    font-size: 18px;
    color: rgba(255,255,255,0.65);
}

.pmu-hosting-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.pmu-hosting-card ul li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.78);
}
.pmu-contact {
    padding: 120px 40px;
    max-width: 1400px;
    margin: auto;
    text-align: center;
}

.pmu-contact-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 60px;
}

.pmu-contact-card {
    width: 320px;
    padding: 35px;
    border-radius: 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    transition: .35s;
}

.pmu-contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 35px rgba(87,184,255,0.12);
    border-color: rgba(87,184,255,0.25);
}

.pmu-contact-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.pmu-contact-card p {
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
    margin-bottom: 25px;
}

.pmu-footer {
    padding: 60px 40px;
    margin-top: 80px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    background: rgba(255,255,255,0.02);
}

.pmu-footer h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.pmu-footer p {
    color: rgba(255,255,255,0.65);
    margin-bottom: 10px;
}

.pmu-footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.pmu-footer-links a {
    color: #57b8ff;
    transition: .3s;
}

.pmu-footer-links a:hover {
    color: white;
}
/* =========================
   MOBILE + PREMIUM FIXES
========================= */

/* navbar */
.pmu-navbar {
    padding: 16px 24px;
}

.pmu-logo {
    font-size: 20px;
    white-space: nowrap;
}

/* hero */
.pmu-hero {
    min-height: 100vh;
    padding: 120px 20px 60px;
}

.pmu-content {
    width: 100%;
    max-width: 1200px;
}

.pmu-content h1 {
    font-size: clamp(36px, 7vw, 72px);
    line-height: 1.08;
    margin-bottom: 20px;
}

.pmu-content p {
    font-size: clamp(15px, 2.8vw, 20px);
    max-width: 760px;
    line-height: 1.6;
}

/* buttons */
.pmu-main-btn,
.pmu-secondary-btn,
.pmu-plan-btn {
    min-height: 52px;
    padding: 16px 28px;
    border-radius: 16px;
}

/* sections */
.pmu-pricing,
.pmu-services,
.pmu-contact {
    padding: 90px 20px;
}

/* titles */
.pmu-section-title {
    font-size: clamp(30px, 6vw, 54px);
    line-height: 1.1;
}

.pmu-section-subtitle {
    font-size: clamp(15px, 2.5vw, 18px);
    margin-bottom: 45px;
    padding: 0 10px;
}

/* cards unified */
.pmu-pricing-card,
.pmu-service-card,
.pmu-hosting-card,
.pmu-contact-card {
    width: min(100%, 360px);
    padding: 28px;
    border-radius: 22px;
    transition: .25s ease;
}

/* featured card less aggressive */
.pmu-featured {
    transform: none;
}

/* price sizing */
.pmu-price-big,
.pmu-hosting-price {
    font-size: clamp(38px, 8vw, 58px);
}

/* service headings */
.pmu-service-card h3,
.pmu-contact-card h3,
.pmu-hosting-card h3 {
    font-size: clamp(22px, 4vw, 30px);
}

/* stats */
.pmu-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.pmu-stat {
    padding: 28px;
}

.pmu-stat h3 {
    font-size: clamp(26px, 5vw, 34px);
}

/* footer */
.pmu-footer {
    padding: 50px 20px;
}

.pmu-footer-links {
    gap: 18px;
}

/* smoother hover desktop */
@media (hover:hover) {
    .pmu-pricing-card:hover,
    .pmu-service-card:hover,
    .pmu-hosting-card:hover,
    .pmu-contact-card:hover {
        transform: translateY(-8px);
    }

    .pmu-plan-btn:hover,
    .pmu-main-btn:hover {
        transform: translateY(-3px);
    }
}

/* TABLET */
@media (max-width: 1024px) {
    .pmu-nav-links {
        display: none;
    }

    .pmu-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .pmu-pricing,
    .pmu-services,
    .pmu-contact {
        padding: 80px 20px;
    }
}

/* MOBILE */
@media (max-width: 768px) {

    .pmu-navbar {
        padding: 14px 16px;
    }

    .pmu-logo {
        font-size: 17px;
    }

    .pmu-hero {
        padding-top: 110px;
        min-height: auto;
    }

    .pmu-badge {
        font-size: 12px;
        padding: 8px 14px;
    }

    .pmu-buttons {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .pmu-main-btn,
    .pmu-secondary-btn {
        width: 100%;
        max-width: 320px;
    }

    .pmu-pricing-grid,
    .pmu-services-grid,
    .pmu-hosting-grid,
    .pmu-contact-grid {
        gap: 20px;
    }

    .pmu-stats {
        grid-template-columns: 1fr;
        padding: 0 16px;
    }

    .pmu-stat {
        padding: 24px;
    }

    .pmu-footer-links {
        flex-direction: column;
        gap: 12px;
    }
}

/* CURSORES */
body {
    cursor: default;
}

h1, h2, h3, h4, h5, h6,
p,
span,
li,
div {
    cursor: default;
}

h1, h2, h3, h4, h5, h6,
p,
span,


a,
button,
.pmu-plan-btn,
.pmu-main-btn,
.pmu-secondary-btn,
.pmu-nav-links a {
    cursor: pointer;
}
@media (max-width: 768px) {
    .pmu-hero-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .pmu-hero-image img {
        max-width: 90%;
        margin-top: 30px;
    }
}
@media (max-width: 980px) {
    .pmu-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pmu-hero-left p {
        margin: auto;
    }

    .pmu-panel-content {
        grid-template-columns: 1fr;
    }
}
.pmu-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 40px;
    position: relative;
    overflow: hidden;

    background-image:
        linear-gradient(rgba(5, 8, 22, 0.40), rgba(5, 8, 22, 0.50)),
        url('/templates/defaultblack/img/hero-bg.png') !important;

    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}


/* EXTRA SMALL */
@media (max-width: 420px) {

    .pmu-content h1 {
        font-size: 32px;
    }

    .pmu-content p {
        font-size: 15px;
    }

    .pmu-pricing-card,
    .pmu-service-card,
    .pmu-hosting-card,
    .pmu-contact-card {
        padding: 22px;
    }
}
.mu-hero {
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 40px;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    position: relative;
}

.mu-hero-content {
    max-width: 1000px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.mu-hero h1 {
    font-size: 72px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.6);
}

.mu-hero p {
    font-size: 20px;
    color: rgba(255,255,255,0.92);
    max-width: 850px;
    margin: auto;
}

#mu.pmu-services {
    padding-top: 80px !important;
}
