/* WordPress Page Specific Styles - Prefixed with mz-wp */

.mz-wp-page {
    padding-bottom: 0px;
}

/* Hero Section */
.mz-wp-hero {
    padding-top: 80px !important;
    padding-bottom: 40px !important;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.mz-wp-hero-wrapper {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 60px;
}

.mz-wp-hero-image {
    flex: 1;
    max-width: 550px;
}

.mz-wp-hero-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--mz-shadow-sm);
}

/* Hero Visual Illustration */
.mz-wp-hero-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 500px;
    margin: 0 auto;
}

/* Floating Spec Tags */
.mz-wp-hero-floating-tags {
    position: absolute;
    left: -40px;
    top: 25%;
    z-index: 30;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mz-wp-hero-float-tag {
    background: var(--mz-white);
    border: 1px solid var(--mz-border-color);
    padding: 10px 14px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: mz-pulse 2s infinite;
    box-shadow: var(--mz-shadow-sm);
}

.mz-wp-hero-float-tag svg {
    width: 20px;
    height: 20px;
    color: var(--mz-primary);
    flex-shrink: 0;
}

.mz-wp-hero-float-tag span:last-child {
    font-size: 12px;
    font-family: var(--mz-font-bold);
    color: var(--mz-text-dark);
    white-space: nowrap;
}

/* Background Accent */
.mz-wp-hero-visual-bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 137, 138, 0.05);
    border-radius: 50%;
    scale: 1.1;
    filter: blur(48px);
}

.mz-wp-hero-visual-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(12deg);
    width: 80%;
    height: 80%;
    border: 2px solid rgba(189, 201, 200, 0.3);
    border-radius: 12px;
    transition: transform 0.7s ease;
}

.mz-wp-hero-visual:hover .mz-wp-hero-visual-ring {
    transform: translate(-50%, -50%) rotate(6deg);
}

/* Main Image Container */
.mz-wp-hero-visual-main {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    background: var(--mz-white);
    border: 1px solid var(--mz-border-color);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mz-wp-hero-visual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Floating Speed Indicators */
.mz-wp-hero-float-speed {
    position: absolute;
    padding: 12px 16px;
    background: var(--mz-white);
    border: 1px solid var(--mz-border-color);
    border-radius: 12px;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: mz-bounce 3s infinite;
    box-shadow: var(--mz-shadow-sm);
}

.mz-wp-hero-float-speed-top {
    top: -24px;
    right: -24px;
    animation-duration: 3s;
}

.mz-wp-hero-float-speed-bottom {
    bottom: -24px;
    left: -24px;
    animation-duration: 4s;
}

.mz-wp-hero-float-speed svg {
    width: 24px;
    height: 24px;
}

.mz-wp-hero-float-speed-top svg {
    color: var(--mz-primary);
}

.mz-wp-hero-float-speed-bottom svg {
    color: var(--mz-primary);
}

.mz-wp-hero-float-label {
    font-size: 12px;
    font-family: var(--mz-font-bold);
    color: var(--mz-text-light);
    display: block;
}

.mz-wp-hero-float-value {
    font-size: 16px;
    font-family: var(--mz-font-bold);
    display: block;
}

.mz-wp-hero-float-speed-top .mz-wp-hero-float-value {
    color: var(--mz-primary);
}

.mz-wp-hero-float-speed-bottom .mz-wp-hero-float-value {
    color: var(--mz-primary);
}

@keyframes mz-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.mz-wp-hero-content {
    flex: 1;
}

/* Hero Badge */
.mz-wp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--mz-white);
    border-radius: 9999px;
    border: 1px solid var(--mz-border-color);
    margin-bottom: 20px;
    font-size: 13px;
    font-family: var(--mz-font-bold);
    color: var(--mz-text-light);
}

.mz-wp-hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--mz-primary);
    border-radius: 50%;
    animation: mz-pulse 2s infinite;
}

@keyframes mz-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.mz-wp-hero-content h1 {
    font-size: 26px;
    color: var(--mz-text-dark);
    font-family: var(--mz-font-bold);
    margin-bottom: 15px;
    line-height: 1.4;
}

.mz-wp-hero-highlight {
    color: var(--mz-primary);
}

.mz-wp-hero-sub {
    font-size: var(--mz-fs-h4);
    color: var(--mz-primary);
    margin-bottom: 25px;
    font-family: var(--mz-font-bold);
}

.mz-wp-hero-content p {
    font-size: var(--mz-fs-h5);
    color: var(--mz-text-main);
    line-height: 2;
    margin-bottom: 35px;
    text-align: justify;
}

.mz-wp-hero-btns {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
}

/* Hero Technical Features Row */
.mz-wp-hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid var(--mz-border-color);
}

.mz-wp-hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mz-wp-hero-feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--mz-white);
    border: 1px solid var(--mz-border-color);
    color: var(--mz-primary);
    flex-shrink: 0;
    transition: var(--mz-transition);
}

.mz-wp-hero-feature-item span {
    font-size: 13px;
    font-family: var(--mz-font-bold);
    color: var(--mz-text-dark);
    white-space: nowrap;
}
.mz-wp-pricing {
    padding: var(--mz-section-gap) 0;
}

.mz-wp-pricing .mz-section-title {
    margin-bottom: 12px;
}

.mz-wp-pricing-intro {
    max-width: 680px;
    margin: 0 auto 38px;
    color: var(--mz-text-light);
    font-size: 15px;
    line-height: 1.8;
    text-align: center;
}

.mz-wp-plans-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mz-wp-plan-card {
    background: var(--mz-white);
    border-radius: 8px;
    border: 1px solid var(--mz-border-color);
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.mz-wp-plan-top {
    display: flex;
    align-items: center;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--mz-bg-light);
}

.mz-wp-plan-title {
    width: 200px;
    text-align: left;
}

.mz-wp-plan-title h3 {
    font-size: 24px;
    line-height: 1.2;
    color: var(--mz-text-dark);
    font-family: var(--mz-font-bold);
    margin: 0;
}

.mz-wp-plan-specs {
    flex: 1;
    display: flex;
    gap: 16px;
    padding-left: 24px;
}

.mz-wp-spec-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
    text-align: left;
    direction: ltr;
    min-width: 0;
}

.mz-wp-spec-icon {
    color: var(--mz-text-main);
    background: transparent;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid var(--mz-border-color);
}

.mz-wp-spec-icon svg {
    width: 20px;
    height: 20px;
}

.mz-wp-spec-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: flex-start;
}

.mz-wp-spec-label {
    font-size: 13px;
    color: var(--mz-text-dark);
    font-family: var(--mz-font-bold);
}

.mz-wp-spec-value {
    font-size: 12px;
    color: var(--mz-text-main);
    font-family: var(--mz-font-main);
    white-space: nowrap;
}

.mz-wp-spec-unit {
    font-size: var(--mz-fs-xs);
    color: var(--mz-text-muted);
}

.mz-wp-plan-bottom {
    display: flex;
    gap: 20px;
    align-items: stretch;
}

.mz-wp-plan-prices {
    flex: 1;
    background: var(--mz-bg-light);
    border-radius: 6px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding: 15px 24px;
    align-items: center;
}

.mz-wp-price-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.mz-wp-price-label {
    font-size: 12px;
    color: var(--mz-text-light);
    font-family: var(--mz-font-bold);
}

.mz-wp-price-item:not(:first-child) .mz-wp-price-label {
    color: var(--mz-primary);
}

.mz-wp-price-val {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--mz-fs-h3);
    color: var(--mz-primary);
    font-family: var(--mz-font-bold);
}

.mz-wp-price-old {
    font-size: var(--mz-fs-sm);
    color: var(--mz-text-light);
    text-decoration: line-through;
    font-family: 'en', var(--mz-font-main);
}

.mz-wp-price-now {
    font-size: 18px;
    color: var(--mz-text-dark);
    font-family: 'en', var(--mz-font-bold);
}

.mz-wp-plan-action {
    width: 230px;
}

.mz-wp-plan-action .mz-btn-group,
.mz-wp-plan-action .mz-btn-main {
    height: 100%;
}

.mz-wp-plan-action .mz-btn-main {
    justify-content: center;
    font-size: 13px;
}

/* Features Section */
.mz-wp-features {
    padding: var(--mz-section-gap) 0;
}

.mz-wp-features-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.mz-wp-features-badge {
    background: var(--mz-white);
    color: var(--mz-primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: var(--mz-fs-sm);
    font-family: var(--mz-font-bold);
    display: inline-block;
    margin-bottom: 15px;
}

.mz-wp-features-sub {
    font-size: var(--mz-fs-h3);
    color: var(--mz-text-main);
    margin-bottom: 20px;
    font-family: var(--mz-font-bold);
}

.mz-wp-features-desc {
    font-size: var(--mz-fs-md);
    color: var(--mz-text-light);
    line-height: 1.9;
}

.mz-wp-features-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.mz-wp-feature-item {
    display: flex;
    align-items: center;
    gap: 60px;
}

.mz-wp-feature-item.mz-reverse {
    flex-direction: row-reverse;
}

.mz-wp-feature-item.mz-reverse .mz-btn-group {
    margin-left: 0;
    margin-right: 0;
}

.mz-wp-feature-content {
    flex: 1;
    text-align: left;
}

.mz-wp-feature-content h3 {
    font-size: var(--mz-fs-h2);
    color: var(--mz-text-dark);
    font-family: var(--mz-font-bold);
    margin-bottom: 20px;
}

.mz-wp-feature-content p {
    font-size: var(--mz-fs-md);
    color: var(--mz-text-main);
    line-height: 1.9;
    margin-bottom: 20px;
}

.mz-wp-feature-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.mz-wp-feature-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: var(--mz-fs-md);
    color: var(--mz-text-main);
}

.mz-wp-feature-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--mz-primary);
    font-family: var(--mz-font-bold);
}

/* Info Section */
.mz-wp-info {
    padding: var(--mz-section-gap) 0;
}

.mz-wp-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mz-wp-info-card {
    background: radial-gradient(285px 285px at 84% 0%, #5b5b5b0d, #ffffff 62%);
    padding: 35px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--mz-border-color);
    transition: var(--mz-transition);
}

.mz-wp-info-card:hover {
    transform: translateY(-5px);
    border-color: #ebebeb;
}

.mz-wp-info-icon {
    color: var(--mz-primary);
    margin-bottom: 20px;
    display: inline-block;
}

.mz-wp-info-card h4 {
    font-size: var(--mz-fs-h3);
    margin-bottom: 15px;
    font-family: var(--mz-font-bold);
}

.mz-wp-info-card p {
    font-size: var(--mz-fs-sm);
    color: var(--mz-text-main);
    line-height: 1.8;
}

/* SEO Content */
.mz-wp-seo {
    padding: var(--mz-section-gap) 0;
}

.mz-wp-seo-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.mz-wp-seo-text h2 {
    font-size: var(--mz-fs-h2);
    color: var(--mz-text-dark);
    font-family: var(--mz-font-bold);
    margin-bottom: 25px;
    line-height: 1.5;
}

.mz-wp-seo-text h3 {
    font-size: var(--mz-fs-h3);
    color: var(--mz-text-main);
    font-family: var(--mz-font-bold);
    margin: 30px 0 15px;
}

.mz-wp-seo-text p {
    font-size: var(--mz-fs-lg);
    color: var(--mz-text-main);
    line-height: 1.8;
    margin-bottom: 20px;
}

.mz-wp-seo-feat {
    background: radial-gradient(285px 285px at 84% 0%, #5b5b5b0d, #ffffff 62%);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--mz-border-color);
    position: sticky;
    top: 100px;
}

.mz-wp-seo-feat h4 {
    font-size: var(--mz-fs-h4);
    color: var(--mz-text-dark);
    font-family: var(--mz-font-bold);
    margin-bottom: 20px;
}

.mz-wp-seo-feat ul {
    list-style: none;
    padding: 0;
}

.mz-wp-seo-feat ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: var(--mz-fs-md);
    color: var(--mz-text-main);
    font-family: var(--mz-font-bold);
}

.mz-wp-seo-feat ul li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--mz-primary);
}

/* FAQ Section */
.mz-wp-faq {
    padding: var(--mz-section-gap) 0;
}

.mz-wp-faq-list {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.mz-wp-faq-item {
background: var(--mz-white);
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--mz-border-light);
}

.mz-wp-faq-q {
padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--mz-font-bold);
    font-weight: 700;
    transition: var(--mz-transition);
}

.mz-wp-faq-q svg {
    transition: var(--mz-transition);
    color: var(--mz-text-light);
}

.mz-wp-faq-a {
    padding: 0 25px 20px;
    color: var(--mz-text-main);
    line-height: 1.9;
    font-size: var(--mz-fs-md);
    display: none;
}

.mz-wp-faq-item.mz-active .mz-wp-faq-q svg {
    transform: rotate(180deg);
}

.mz-wp-faq-item.mz-active {
    background: radial-gradient(285px 285px at 84% 0%, #5b5b5b0d, #ffffff 62%);
}

.mz-wp-faq-item.mz-active .mz-wp-faq-a {
    display: block;
}

.mz-wp-faq-item.mz-active .mz-wp-faq-q {
    color: var(--mz-primary);
}

.mz-wp-faq-item.mz-active .mz-wp-faq-q svg {
    transform: rotate(180deg);
    color: var(--mz-primary);
}

/* WordPress page typography and spacing hierarchy */
.mz-wp-page .mz-wp-hero-content h1 {
    max-width: 700px;
    margin-bottom: 18px;
    font-size: clamp(32px, 4vw, 52px);
    letter-spacing: -.03em;
    line-height: 1.12;
}

.mz-wp-page .mz-wp-hero-sub {
    margin-bottom: 14px;
    font-size: 17px;
    line-height: 1.55;
}

.mz-wp-page .mz-wp-hero-content > p:not(.mz-wp-hero-sub) {
    max-width: 680px;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.85;
}

.mz-wp-page .mz-section-title {
    max-width: 760px;
    margin: 0 auto 42px;
    font-size: clamp(28px, 3.2vw, 42px);
    letter-spacing: -.025em;
    line-height: 1.2;
}

.mz-wp-page .mz-wp-feature-content h3 {
    margin-bottom: 14px;
    font-size: clamp(23px, 2.3vw, 31px);
    line-height: 1.25;
}

.mz-wp-page .mz-wp-feature-content p {
    max-width: 620px;
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.85;
}

.mz-wp-page .mz-wp-feature-bullets { margin-bottom: 28px; }
.mz-wp-page .mz-wp-feature-bullet { min-height: 34px; }
.mz-wp-page .mz-wp-feature-bullet span { font-size: 13px; line-height: 1.5; }

.mz-wp-page .mz-wp-features-list { gap: 104px; }
.mz-wp-page .mz-wp-faq { padding-top: 90px; padding-bottom: 90px; }
.mz-wp-page .mz-wp-faq-list { max-width: 900px; }
.mz-wp-page .mz-wp-faq-q { padding: 22px 24px; font-size: 16px; line-height: 1.5; }
.mz-wp-page .mz-wp-faq-a { padding: 0 24px 24px; font-size: 14px; line-height: 1.85; }

@media (max-width: 768px) {
    .mz-wp-page .mz-wp-features-list { gap: 68px; }
    .mz-wp-page .mz-section-title { margin-bottom: 30px; }
    .mz-wp-page .mz-wp-faq { padding-top: 64px; padding-bottom: 64px; }
}

/* Final WordPress Hosting mobile and tablet layout — product sections only. */
@media (max-width: 768px) {
    .mz-wp-page { overflow-x: clip; }

    .mz-wp-page .mz-container { width: calc(100% - 32px); max-width: 620px; padding-right: 0; padding-left: 0; }

    .mz-wp-page .mz-section { padding-top: 48px; padding-bottom: 48px; }

    .mz-wp-page .mz-wp-hero { padding-top: 28px !important; padding-bottom: 46px !important; }

    .mz-wp-page .mz-wp-hero-wrapper { gap: 24px; }

    .mz-wp-page .mz-wp-hero-image { width: min(100%, 290px); max-width: 290px; }

    .mz-wp-page .mz-wp-hero-visual { max-width: 290px; }

    .mz-wp-page .mz-wp-hero-content h1 { max-width: 560px; margin-bottom: 12px; font-size: clamp(30px, 8.2vw, 40px); line-height: 1.1; }

    .mz-wp-page .mz-wp-hero-sub { margin-bottom: 10px; font-size: 16px; }

    .mz-wp-page .mz-wp-hero-content > p:not(.mz-wp-hero-sub) { max-width: 540px; margin-bottom: 22px; font-size: 15px; line-height: 1.7; }

    /* The two hero actions remain side-by-side without forcing the page wider. */
    .mz-wp-page .mz-wp-hero-btns { display: flex; flex-direction: row; flex-wrap: nowrap; align-items: stretch; justify-content: center; gap: 8px; width: 100%; }

    .mz-wp-page .mz-wp-hero-btns .mz-btn-group { width: calc(50% - 4px); min-width: 0; margin: 0; padding: 6px; }

    .mz-wp-page .mz-wp-hero-btns .mz-btn-group .mz-btn { min-width: 0; height: 42px; padding: 8px 9px; }

    .mz-wp-page .mz-wp-hero-btns .mz-btn-group .mz-btn-main { min-width: 0; padding-right: 8px; padding-left: 8px; font-size: 12px; line-height: 1.2; white-space: nowrap; }

    .mz-wp-page .mz-wp-hero-btns .mz-btn-group .mz-btn-icon-only { width: 34px; padding: 8px; flex: 0 0 34px; }

    .mz-wp-page .mz-wp-hero-btns .mz-btn-group .mz-btn-icon-only svg { width: 17px; height: 17px; }

    .mz-wp-page .mz-wp-hero-features { width: 100%; margin-top: 22px; padding-top: 18px; gap: 8px; }

    .mz-wp-page .mz-wp-hero-feature-item { min-height: 44px; justify-content: flex-start; gap: 9px; padding: 6px 8px; border: 1px solid var(--mz-border-color); border-radius: 8px; }

    .mz-wp-page .mz-wp-hero-feature-icon { width: 32px; height: 32px; flex: 0 0 32px; border-radius: 6px; }

    .mz-wp-page .mz-section-title { margin-bottom: 24px; font-size: clamp(27px, 7vw, 35px); line-height: 1.18; }

    .mz-wp-page .mz-wp-features-list { gap: 52px; }

    .mz-wp-page .mz-wp-feature-item,
    .mz-wp-page .mz-wp-feature-item.mz-reverse { flex-direction: column; align-items: stretch; gap: 18px; text-align: left; }

    .mz-wp-page .mz-wp-feature-visual { order: 0; min-height: 220px !important; max-width: 100%; border-radius: 8px; }

    .mz-wp-page .mz-wp-feature-content { width: 100%; }

    .mz-wp-page .mz-wp-feature-content h3 { margin-bottom: 10px; font-size: clamp(23px, 6.2vw, 29px); line-height: 1.24; }

    .mz-wp-page .mz-wp-feature-content p { margin-bottom: 16px; font-size: 15px; line-height: 1.72; text-align: left; }

    .mz-wp-page .mz-wp-feature-bullets { gap: 8px; margin-bottom: 20px; }

    .mz-wp-page .mz-wp-feature-bullet { min-height: 36px; padding: 7px 9px; border: 1px solid var(--mz-border-color); border-radius: 7px; }

    .mz-wp-page .mz-wp-info-grid,
    .mz-wp-page .mz-wp-seo-grid,
    .mz-wp-page .mz-wp-compare-grid { grid-template-columns: 1fr; gap: 14px; }

    .mz-wp-page .mz-wp-compare-table-wrapper { width: 100%; max-width: 100%; overflow-x: auto; }

    .mz-wp-page table.mz-wp-compare-table { min-width: 650px; }

    .mz-wp-page .mz-wp-faq { padding-top: 48px; padding-bottom: 48px; }

    .mz-wp-page .mz-wp-faq-q { padding: 17px 16px; font-size: 15px; line-height: 1.45; }

    .mz-wp-page .mz-wp-faq-a { padding: 0 16px 18px; font-size: 14px; line-height: 1.7; }
}

@media (min-width: 481px) and (max-width: 768px) {
    .mz-wp-page .mz-container { width: calc(100% - 48px); }
    .mz-wp-page .mz-wp-hero-btns { max-width: 500px; margin-right: auto; margin-left: auto; }
    .mz-wp-page .mz-wp-hero-btns .mz-btn-group .mz-btn { height: 46px; padding-right: 14px; padding-left: 14px; }
    .mz-wp-page .mz-wp-feature-visual { min-height: 280px !important; }
}

/* Keep plan specification text readable on very narrow phones. */
@media (max-width: 420px) {
    .mz-wp-plan-top { grid-template-columns: repeat(2, minmax(0, 1fr)); }

    .mz-wp-spec-item { min-width: 0; padding-right: 8px; padding-left: 8px; }

    .mz-wp-spec-info { min-width: 0; max-width: 100%; }

    .mz-wp-spec-label,
    .mz-wp-spec-value { max-width: 100%; line-height: 1.35; white-space: normal; overflow-wrap: anywhere; }

    .mz-wp-spec-label { font-size: 11px; }
    .mz-wp-spec-value { font-size: 11px; }

    .mz-wp-plan-title h3 { font-size: 17px !important; line-height: 1.25; overflow-wrap: anywhere; }
}

@media (max-width: 340px) {
    .mz-wp-plan-top { grid-template-columns: 1fr; }
    .mz-wp-plan-title,
    .mz-wp-spec-item { grid-area: auto !important; }
    .mz-wp-plan-title { order: -1; min-height: 50px; }
}

/* Universal responsive safeguards for the WordPress Hosting page. */
.mz-wp-page,
.mz-wp-page .mz-container,
.mz-wp-page .mz-wp-hero-wrapper,
.mz-wp-page .mz-wp-hero-content,
.mz-wp-page .mz-wp-feature-item,
.mz-wp-page .mz-wp-feature-content,
.mz-wp-page .mz-wp-feature-bullet,
.mz-wp-page .mz-wp-spec-item,
.mz-wp-page .mz-wp-spec-info { min-width: 0; }

.mz-wp-page img,
.mz-wp-page video,
.mz-wp-page svg { max-width: 100%; }

@media (min-width: 769px) and (max-width: 1100px) {
    .mz-wp-page .mz-container { width: min(92%, 980px); }

    .mz-wp-page .mz-wp-hero-wrapper { gap: clamp(24px, 4vw, 42px); }

    .mz-wp-page .mz-wp-hero-image { flex: 0 1 42%; min-width: 0; }

    .mz-wp-page .mz-wp-hero-visual { max-width: 390px; }

    .mz-wp-page .mz-wp-hero-float-speed-top { top: -10px; right: 0; }
    .mz-wp-page .mz-wp-hero-float-speed-bottom { bottom: -10px; left: 0; }

    /* Five specs use a stable 3 + 2 grid instead of squeezing one flex row. */
    .mz-wp-page .mz-wp-plan-top { align-items: flex-start; }

    .mz-wp-page .mz-wp-plan-title { width: 170px; flex: 0 0 170px; }

    .mz-wp-page .mz-wp-plan-specs {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        flex: 1 1 auto;
        gap: 12px;
        padding-left: 16px;
    }

    .mz-wp-page .mz-wp-spec-item { min-width: 0; gap: 7px; }
    .mz-wp-page .mz-wp-spec-icon { width: 34px; height: 34px; flex: 0 0 34px; }
    .mz-wp-page .mz-wp-spec-label,
    .mz-wp-page .mz-wp-spec-value { max-width: 100%; line-height: 1.35; white-space: normal; overflow-wrap: anywhere; }

    .mz-wp-page .mz-wp-feature-bullet { min-width: 0; }
    .mz-wp-page .mz-wp-feature-bullet span { min-width: 0; white-space: normal; overflow-wrap: anywhere; }
}

@media (max-width: 480px) {
    .mz-wp-page .mz-wp-feature-bullet { width: 100%; max-width: 100%; min-width: 0; }
    .mz-wp-page .mz-wp-feature-bullet span { min-width: 0; white-space: normal; overflow-wrap: anywhere; }
}

/* Spacing rhythm: one consistent scale for the complete WordPress Hosting page. */
.mz-wp-page {
    --wp-section-space: clamp(72px, 8vw, 104px);
    --wp-content-gap: clamp(28px, 4vw, 48px);
    --wp-item-gap: clamp(18px, 2.4vw, 30px);
}

.mz-wp-page .mz-section { padding-top: var(--wp-section-space); padding-bottom: var(--wp-section-space); }

.mz-wp-page .mz-wp-hero { padding-top: clamp(64px, 7vw, 96px) !important; padding-bottom: var(--wp-section-space) !important; }

.mz-wp-page .mz-section-title { margin-bottom: var(--wp-content-gap); }

.mz-wp-page .mz-wp-pricing-intro,
.mz-wp-page .mz-wp-compare-desc { margin-bottom: var(--wp-content-gap); }

.mz-wp-page .mz-wp-plans-list { gap: var(--wp-item-gap); }

.mz-wp-page .mz-wp-features-list { gap: var(--wp-section-space); }

.mz-wp-page .mz-wp-feature-content h3 { margin-bottom: 14px; }
.mz-wp-page .mz-wp-feature-content p { margin-bottom: 22px; }
.mz-wp-page .mz-wp-feature-bullets { margin-bottom: 26px; }

.mz-wp-page .mz-wp-info-grid,
.mz-wp-page .mz-wp-seo-grid,
.mz-wp-page .mz-wp-compare-grid { gap: var(--wp-item-gap); }

.mz-wp-page .mz-wp-faq-list { display: grid; gap: 12px; }

@media (max-width: 768px) {
    .mz-wp-page {
        --wp-section-space: 54px;
        --wp-content-gap: 26px;
        --wp-item-gap: 18px;
    }

    .mz-wp-page .mz-wp-hero { padding-top: 32px !important; padding-bottom: 54px !important; }
    .mz-wp-page .mz-wp-feature-content p { margin-bottom: 18px; }
    .mz-wp-page .mz-wp-feature-bullets { margin-bottom: 20px; }
}

@media (max-width: 420px) {
    .mz-wp-page {
        --wp-section-space: 46px;
        --wp-content-gap: 22px;
        --wp-item-gap: 16px;
    }
}

/* WordPress decision and migration content: semantic, readable, and fully local. */
.mz-wp-site-fit { border-top: 1px solid var(--mz-border-color); border-bottom: 1px solid var(--mz-border-color); }
.mz-wp-site-fit-heading { max-width: 760px; margin-bottom: 42px; }
.mz-wp-kicker { margin: 0 0 10px; color: var(--mz-primary); font-family: var(--mz-font-bold); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.mz-wp-site-fit-heading h2,
.mz-wp-migration-copy h2 { margin: 0 0 14px; color: var(--mz-text-dark); font-family: var(--mz-font-bold); font-size: clamp(29px, 3.2vw, 43px); letter-spacing: -.025em; line-height: 1.16; }
.mz-wp-site-fit-heading > p,
.mz-wp-migration-copy > p { max-width: 680px; margin: 0; color: var(--mz-text-light); font-size: 16px; line-height: 1.8; }
.mz-wp-site-fit-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.mz-wp-site-fit-card { min-width: 0; padding: 25px; border: 1px solid var(--mz-border-color); border-radius: 8px; background: rgba(255,255,255,.74); }
.mz-wp-site-fit-number { display: block; margin-bottom: 26px; color: var(--mz-primary); font-family: var(--mz-font-bold); font-size: 13px; letter-spacing: .08em; }
.mz-wp-site-fit-card h3 { margin: 0 0 10px; color: var(--mz-text-dark); font-family: var(--mz-font-bold); font-size: 20px; line-height: 1.3; }
.mz-wp-site-fit-card p { margin: 0; color: var(--mz-text-main); font-size: 14px; line-height: 1.75; }
.mz-wp-site-facts { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin: 18px 0 0; border: 1px solid var(--mz-border-color); border-radius: 8px; }
.mz-wp-site-facts div { min-width: 0; padding: 18px 20px; border-right: 1px solid var(--mz-border-color); }
.mz-wp-site-facts div:last-child { border-right: 0; }
.mz-wp-site-facts dt { margin-bottom: 5px; color: var(--mz-text-light); font-size: 11px; }
.mz-wp-site-facts dd { margin: 0; color: var(--mz-text-dark); font-family: var(--mz-font-bold); font-size: 14px; overflow-wrap: anywhere; }
.mz-wp-migration-layout { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(42px, 8vw, 104px); align-items: start; }
.mz-wp-migration-copy .mz-btn { display: inline-flex; margin-top: 26px; }
.mz-wp-migration-steps { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; counter-reset: migration; }
.mz-wp-migration-steps li { position: relative; min-height: 92px; padding: 0 0 27px 62px; color: var(--mz-text-main); }
.mz-wp-migration-steps li::before { position: absolute; top: 0; left: 0; display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid var(--mz-primary); border-radius: 5px; color: var(--mz-primary); content: counter(migration, decimal-leading-zero); counter-increment: migration; font-family: var(--mz-font-bold); font-size: 11px; }
.mz-wp-migration-steps li:not(:last-child)::after { position: absolute; top: 48px; bottom: 6px; left: 18px; width: 1px; background: var(--mz-border-color); content: ''; }
.mz-wp-migration-steps strong { display: block; margin-bottom: 6px; color: var(--mz-text-dark); font-family: var(--mz-font-bold); font-size: 18px; }
.mz-wp-migration-steps span { display: block; font-size: 14px; line-height: 1.75; }

@media (max-width: 768px) {
    .mz-wp-site-fit-heading { margin-bottom: 28px; }
    .mz-wp-site-fit-grid { grid-template-columns: 1fr; gap: 12px; }
    .mz-wp-site-fit-card { padding: 20px; }
    .mz-wp-site-fit-number { margin-bottom: 16px; }
    .mz-wp-site-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .mz-wp-site-facts div:nth-child(2) { border-right: 0; }
    .mz-wp-site-facts div:nth-child(-n+2) { border-bottom: 1px solid var(--mz-border-color); }
    .mz-wp-migration-layout { grid-template-columns: 1fr; gap: 34px; }
}

/* Built for WordPress Workloads: a unified technical-card composition. */
.mz-wp-features {
    border-top: 1px solid var(--mz-border-color);
    border-bottom: 1px solid var(--mz-border-color);
}

.mz-wp-features-header {
    max-width: 760px;
    margin-bottom: 42px;
}

.mz-wp-features-header::before {
    display: block;
    margin-bottom: 10px;
    color: var(--mz-primary);
    content: 'WORDPRESS INFRASTRUCTURE';
    font-family: var(--mz-font-bold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
}

.mz-wp-features-list {
    display: grid;
    gap: 22px;
}

.mz-wp-features-list > .mz-wp-feature-item,
.mz-wp-features-list > .mz-wp-feature-item.mz-reverse {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(340px, .96fr);
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--mz-border-color);
    border-radius: 10px;
    background: rgba(255,255,255,.74);
}

.mz-wp-features-list > .mz-wp-feature-item.mz-reverse {
    grid-template-columns: minmax(340px, .96fr) minmax(0, 1.04fr);
}

.mz-wp-features-list > .mz-wp-feature-item .mz-wp-feature-content {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    padding: clamp(30px, 4vw, 52px);
}

.mz-wp-features-list > .mz-wp-feature-item .mz-wp-feature-content h3 {
    max-width: 530px;
    margin: 0 0 14px;
    color: var(--mz-text-dark);
    font-size: clamp(24px, 2.4vw, 33px);
    letter-spacing: -.025em;
    line-height: 1.2;
}

.mz-wp-features-list > .mz-wp-feature-item .mz-wp-feature-content > p {
    max-width: 560px;
    margin: 0 0 24px;
    color: var(--mz-text-main);
    font-size: 15px;
    line-height: 1.82;
}

.mz-wp-features-list > .mz-wp-feature-item .mz-wp-feature-bullets {
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 0 0 26px;
    padding-top: 0;
    border-top: 0;
}

.mz-wp-features-list > .mz-wp-feature-item .mz-wp-feature-bullet {
    min-height: 30px;
    padding: 3px 0;
    border: 0;
    border-radius: 0;
}

.mz-wp-features-list > .mz-wp-feature-item .mz-wp-feature-visual {
    min-height: 100%;
    margin: 24px;
    border: 0;
    border-radius: 8px;
    display: grid;
    place-items: center;
    position: relative;
    padding: 28px;
    box-sizing: border-box;
}

/* Use the original technical SVGs as centred illustrations, not edge-to-edge panels. */
.mz-wp-features-list > .mz-wp-feature-item .mz-wp-feature-visual > svg {
    display: block;
    width: min(100%, 500px) !important;
    height: auto !important;
    max-height: 100%;
    margin: auto;
}

/* Downloaded, locally served motion assets. The original SVG remains a no-video fallback. */
.mz-wp-features-list > .mz-wp-feature-item .mz-wp-feature-visual--motion {
    background: #f8fcfc;
}

.mz-wp-features-list > .mz-wp-feature-item .mz-wp-feature-motion {
    display: block;
    width: min(100%, 420px);
    max-height: 290px;
    height: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.mz-wp-features-list > .mz-wp-feature-item .mz-wp-feature-visual--motion > svg {
    display: none;
}

.mz-wp-features-list > .mz-wp-feature-item .mz-wp-feature-visual::before,
.mz-wp-features-list > .mz-wp-feature-item .mz-wp-feature-visual::after {
    display: none;
}

.mz-wp-features-list > .mz-wp-feature-item:nth-child(even) .mz-wp-feature-content { order: 2; }
.mz-wp-features-list > .mz-wp-feature-item:nth-child(even) .mz-wp-feature-visual { order: 1; }

@media (max-width: 768px) {
    .mz-wp-features-header { margin-bottom: 28px; }
    .mz-wp-features-list { gap: 16px; }
    .mz-wp-features-list > .mz-wp-feature-item,
    .mz-wp-features-list > .mz-wp-feature-item.mz-reverse { grid-template-columns: 1fr; }
    .mz-wp-features-list > .mz-wp-feature-item .mz-wp-feature-visual { min-height: 230px !important; margin: 14px 14px 0; padding: 16px; order: 1 !important; }
    .mz-wp-features-list > .mz-wp-feature-item .mz-wp-feature-motion { width: min(100%, 320px); max-height: 200px; }
    .mz-wp-features-list > .mz-wp-feature-item .mz-wp-feature-content { padding: 24px 20px 26px; order: 2 !important; }
    .mz-wp-features-list > .mz-wp-feature-item .mz-wp-feature-content > p { margin-bottom: 18px; }
    .mz-wp-features-list > .mz-wp-feature-item .mz-wp-feature-bullets { margin-bottom: 20px; }
}

/* Feature Bullets - Grid style like hero features row */
.mz-wp-feature-bullets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 25px;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid var(--mz-border-color);
}

.mz-wp-feature-bullet {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mz-wp-feature-bullet svg {
    width: 18px;
    height: 18px;
    color: var(--mz-primary);
    flex-shrink: 0;
}

.mz-wp-feature-bullet span {
    font-size: 13px;
    font-family: var(--mz-font-bold);
    color: var(--mz-text-dark);
    white-space: nowrap;
}

/* Feature Visual - Minimal Design */
.mz-wp-feature-visual {
    flex: 1;
    max-width: 550px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
    background: var(--mz-white);
    border: 1px solid var(--mz-border-color);
    border-radius: 20px;
    overflow: hidden;
    padding: 20px 0;
}

/* Custom feature illustrations: internal CSS only, replacing the older inline SVG diagrams. */
.mz-wp-features-list > .mz-wp-feature-item .mz-wp-feature-visual {
    min-height: 360px;
    overflow: hidden;
    border: 1px solid #bfd7d7;
    border-radius: 10px;
    background-color: #f8fcfc;
}

.mz-wp-features-list > .mz-wp-feature-item .mz-wp-feature-visual > svg {
    display: none;
}

.mz-wp-features-list > .mz-wp-feature-item .mz-wp-feature-visual::before,
.mz-wp-features-list > .mz-wp-feature-item .mz-wp-feature-visual::after {
    position: absolute;
    display: grid;
    place-items: center;
    content: '';
}

/* 1. Isolated resources: a dedicated compute cell separated from shared traffic. */
.mz-wp-features-list > .mz-wp-feature-item:nth-child(1) .mz-wp-feature-visual {
    background-image: linear-gradient(rgba(0, 137, 138, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 137, 138, .08) 1px, transparent 1px);
    background-size: 34px 34px;
}

.mz-wp-features-list > .mz-wp-feature-item:nth-child(1) .mz-wp-feature-visual::before {
    z-index: 2;
    width: 178px;
    height: 178px;
    border: 2px solid var(--mz-primary);
    border-radius: 14px;
    background: #fff;
    color: var(--mz-text-dark);
    content: 'YOUR SITE\A\A CPU  •  RAM  •  I/O';
    font-family: var(--mz-font-bold);
    font-size: 15px;
    line-height: 1.7;
    text-align: center;
    white-space: pre;
    animation: wpResourcePulse 3.6s ease-in-out infinite;
}

.mz-wp-features-list > .mz-wp-feature-item:nth-child(1) .mz-wp-feature-visual::after {
    width: 310px;
    height: 250px;
    border: 1px solid rgba(0, 137, 138, .28);
    border-radius: 8px;
    background: radial-gradient(circle at 18% 22%, rgba(0, 137, 138, .7) 0 4px, transparent 5px), radial-gradient(circle at 80% 24%, rgba(0, 137, 138, .5) 0 4px, transparent 5px), radial-gradient(circle at 20% 78%, rgba(0, 137, 138, .5) 0 4px, transparent 5px), radial-gradient(circle at 82% 76%, rgba(0, 137, 138, .7) 0 4px, transparent 5px);
    animation: wpResourceOrbit 12s linear infinite;
}

/* 2. Speed: an accelerated NVMe data lane. */
.mz-wp-features-list > .mz-wp-feature-item:nth-child(2) .mz-wp-feature-visual {
    background: linear-gradient(135deg, #f7fbfb, #e8f5f5);
}

.mz-wp-features-list > .mz-wp-feature-item:nth-child(2) .mz-wp-feature-visual::before {
    z-index: 2;
    width: 176px;
    height: 112px;
    border: 1px solid #78b9b9;
    border-radius: 8px;
    background: #fff;
    color: var(--mz-primary);
    content: 'NVMe GEN4\A DATA IN MOTION';
    font-family: var(--mz-font-bold);
    font-size: 19px;
    line-height: 1.55;
    text-align: center;
    white-space: pre;
    animation: wpSpeedCard 2.8s ease-in-out infinite;
}

.mz-wp-features-list > .mz-wp-feature-item:nth-child(2) .mz-wp-feature-visual::after {
    width: 390px;
    height: 180px;
    border-top: 2px solid rgba(0, 137, 138, .78);
    border-bottom: 2px solid rgba(0, 137, 138, .38);
    background: repeating-linear-gradient(0deg, transparent 0 26px, rgba(0, 137, 138, .28) 27px 29px, transparent 30px 54px);
    clip-path: polygon(0 35%, 88% 35%, 88% 14%, 100% 50%, 88% 86%, 88% 65%, 0 65%);
    animation: wpDataStream 1.7s linear infinite;
}

/* 3. Security: a layered shield surrounded by active perimeter rings. */
.mz-wp-features-list > .mz-wp-feature-item:nth-child(3) .mz-wp-feature-visual {
    background: linear-gradient(135deg, rgba(0, 137, 138, .12), transparent 62%), #f8fcfc;
}

.mz-wp-features-list > .mz-wp-feature-item:nth-child(3) .mz-wp-feature-visual::before {
    z-index: 2;
    width: 148px;
    height: 174px;
    padding-top: 15px;
    clip-path: polygon(50% 0, 94% 17%, 87% 70%, 50% 100%, 13% 70%, 6% 17%);
    background: var(--mz-primary);
    color: #fff;
    content: '360°\A DEFENSE';
    font-family: var(--mz-font-bold);
    font-size: 20px;
    line-height: 1.45;
    text-align: center;
    white-space: pre;
    animation: wpShieldPulse 3s ease-in-out infinite;
}

.mz-wp-features-list > .mz-wp-feature-item:nth-child(3) .mz-wp-feature-visual::after {
    width: 270px;
    height: 270px;
    border: 1px solid rgba(0, 137, 138, .35);
    border-radius: 0;
    outline: 1px solid rgba(0, 137, 138, .16);
    outline-offset: 19px;
    animation: wpDefenseOrbit 14s linear infinite;
}

/* 4. AMD EPYC: a technical processor with visible pins and core count. */
.mz-wp-features-list > .mz-wp-feature-item:nth-child(4) .mz-wp-feature-visual {
    background-color: #f6fbfb;
    background-image: linear-gradient(45deg, rgba(0, 137, 138, .035) 25%, transparent 25% 75%, rgba(0, 137, 138, .035) 75%);
    background-size: 28px 28px;
}

.mz-wp-features-list > .mz-wp-feature-item:nth-child(4) .mz-wp-feature-visual::before {
    z-index: 2;
    width: 184px;
    height: 184px;
    border: 2px solid var(--mz-primary);
    border-radius: 12px;
    background: #fff;
    color: var(--mz-text-dark);
    content: 'AMD EPYC\A 9474F\A\A 48 CORES';
    font-family: var(--mz-font-bold);
    font-size: 19px;
    line-height: 1.35;
    text-align: center;
    white-space: pre;
    animation: wpChipFloat 3.4s ease-in-out infinite;
}

.mz-wp-features-list > .mz-wp-feature-item:nth-child(4) .mz-wp-feature-visual::after {
    width: 264px;
    height: 264px;
    border: 1px solid rgba(0, 137, 138, .32);
    background: repeating-linear-gradient(0deg, transparent 0 15px, rgba(0, 137, 138, .34) 16px 18px, transparent 19px 34px), repeating-linear-gradient(90deg, transparent 0 15px, rgba(0, 137, 138, .34) 16px 18px, transparent 19px 34px);
    animation: wpCircuitFlow 8s linear infinite;
}

@keyframes wpResourcePulse {
    0%, 100% { outline: 0 solid rgba(0, 137, 138, .16); outline-offset: 0; transform: scale(1); }
    50% { outline: 12px solid rgba(0, 137, 138, 0); outline-offset: 7px; transform: scale(1.025); }
}

@keyframes wpResourceOrbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes wpSpeedCard {
    0%, 100% { transform: translateX(-8px); }
    50% { transform: translateX(13px); }
}

@keyframes wpDataStream {
    from { transform: translateX(-24px); opacity: .5; }
    50% { opacity: 1; }
    to { transform: translateX(24px); opacity: .5; }
}

@keyframes wpShieldPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.07); }
}

@keyframes wpDefenseOrbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

@keyframes wpChipFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

@keyframes wpCircuitFlow {
    from { transform: rotate(0deg); background-position: 0 0, 0 0; }
    to { transform: rotate(360deg); background-position: 34px 34px, -34px -34px; }
}

@media (prefers-reduced-motion: reduce) {
    .mz-wp-features-list > .mz-wp-feature-item .mz-wp-feature-visual::before,
    .mz-wp-features-list > .mz-wp-feature-item .mz-wp-feature-visual::after {
        animation: none;
    }
}


/* Feature Visual Mobile */
@media (max-width: 768px) {
    .mz-wp-feature-visual {
        max-width: 100%;
        min-height: 280px;
    }
}

/* -----------------------------------------
   Responsive Styles
   ----------------------------------------- */

/* Tablet (Large) - 1024px */
@media (max-width: 1024px) {
    .mz-wp-hero-wrapper {
        gap: 40px;
    }

    .mz-wp-plan-specs {
        gap: 10px;
        padding-left: 20px;
    }

    .mz-wp-spec-label {
        font-size: 0.75rem;
    }

    .mz-wp-spec-value {
        font-size: 13px;
    }
}

/* Plan buttons retain their desktop visual treatment on mobile and tablet. */
@media (max-width: 768px) {
    .mz-wp-plan-action .mz-btn-group {
        display: flex;
        width: 100%;
        margin: 15px 0;
        gap: 4px;
        padding: 8px;
        overflow: visible;
        border: 0;
        border-radius: var(--mz-radius-md);
        background: #f1f1f1;
        box-shadow: inset 0 1px 3px rgba(210, 210, 220, .12);
    }

    .mz-wp-plan-action .mz-btn-group .mz-btn {
        height: auto;
        padding: 12px 20px;
        border: 0;
        border-radius: 10px;
        background: transparent;
    }

    .mz-wp-plan-action .mz-btn-group .mz-btn-main {
        justify-content: center;
        padding-left: 20px;
        background: var(--mz-white);
        color: var(--mz-text-dark);
        box-shadow: var(--mz-shadow-sm);
    }

    .mz-wp-plan-action .mz-btn-group .mz-btn-icon-only {
        width: auto;
        padding: 12px 15px;
        border-left: 0;
        color: var(--mz-text-main);
    }
}

/* Tablet (Small) - 768px */
@media (max-width: 768px) {
    .mz-wp-hero {
        padding-top: 40px !important;
        padding-bottom: 70px !important;
    }

    .mz-wp-hero-wrapper {
        flex-direction: column-reverse;
        text-align: center;
        gap: 40px;
    }

    .mz-wp-hero-image {
        width: 100%;
        max-width: 450px;
    }

    /* Hero Visual - Mobile */
    .mz-wp-hero-floating-tags {
        display: none;
    }

    .mz-wp-hero-float-speed {
        display: none;
    }

    .mz-wp-hero-visual {
        max-width: 350px;
    }

    .mz-wp-hero-content h1 {
        font-size: 1.45rem;
        line-height: 1.6;
    }

    .mz-wp-hero-sub {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .mz-wp-hero-content p {
        font-size: 14px;
        line-height: 1.8;
        text-align: center;
        margin-bottom: 30px;
    }

    .mz-wp-hero-badge {
        margin: 0 auto;
    }

    .mz-wp-hero-btns {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .mz-wp-hero-btns .mz-btn-group {
        width: 100%;
        max-width: 340px;
    }

    /* Hero Features Row - Mobile */
    .mz-wp-hero-features {
        grid-template-columns: 1fr;
        gap: 12px;
        padding-top: 20px;
        margin-top: 20px;
    }

    .mz-wp-hero-feature-item {
        justify-content: center;
    }

    /* Plan Layout Refactor */
    .mz-wp-plan-top {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        border-bottom: none;
        padding-bottom: 0;
    }

    .mz-wp-plan-specs {
        display: contents;
    }

    .mz-wp-spec-item {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 10px;
        padding: 15px 0;
    }

    .mz-wp-spec-item:nth-child(1) { grid-area: 1 / 2; }
    .mz-wp-spec-item:nth-child(2) { grid-area: 1 / 1; }
    .mz-wp-spec-item:nth-child(3) { grid-area: 2 / 2; }
    .mz-wp-spec-item:nth-child(4) { grid-area: 2 / 1; }
    .mz-wp-spec-item:nth-child(5) { grid-area: 3 / 2; }
    
    .mz-wp-plan-title {
        grid-area: 3 / 1;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        padding: 0;
    }

    .mz-wp-plan-title h3 {
        font-size: 1.25rem !important;
        font-family: var(--mz-font-bold) !important;
    }

    .mz-wp-spec-icon {
        width: 45px;
        height: 45px;
        border: 1px solid var(--mz-border-color);
        border-radius: 12px;
    }

    .mz-wp-spec-info {
        align-items: center;
        text-align: center;
    }

    .mz-wp-plan-bottom {
        flex-direction: column;
        gap: 15px;
    }

    .mz-wp-plan-action {
        width: 100%;
        order: 1;
    }

    /* Pricing Grid 2x2 */
    .mz-wp-plan-prices {
        order: 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        padding: 25px;
    direction: ltr;
    }

    .mz-wp-price-item:nth-child(4) { grid-area: 1 / 1; }
    .mz-wp-price-item:nth-child(3) { grid-area: 1 / 2; }
    .mz-wp-price-item:nth-child(2) { grid-area: 2 / 1; }
    .mz-wp-price-item:nth-child(1) { grid-area: 2 / 2; }

    .mz-wp-price-item {
        padding: 0 !important;
    }

    .mz-wp-price-now {
        font-size: 0.9rem;
    }

    .mz-wp-price-label {
        font-size: 0.7rem;
    }

    .mz-wp-price-old {
        font-size: 0.7rem;
    }

    /* Features Stacking */
    .mz-wp-feature-item, .mz-wp-feature-item.mz-reverse {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .mz-wp-feature-content h3 {
        font-size: 1.4rem;
    }

    .mz-wp-feature-content ul li {
        text-align: left;
    }

    /* Feature bullets stack on mobile */
    .mz-wp-feature-bullets {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .mz-wp-feature-bullet {
        justify-content: center;
    }

    .mz-wp-info-grid {
        grid-template-columns: 1fr;
    }

    .mz-wp-seo-grid {
        grid-template-columns: 1fr;
    }

    .mz-wp-seo-feat {
        position: static;
    }
}

/* Why MizbanPak Section */
.mz-wp-why {
    padding: var(--mz-section-gap) 0;
}

.mz-wp-why-inner {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.mz-wp-why-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 137, 138, 0.08);
    border-radius: 16px;
    color: var(--mz-primary);
    margin: 0 auto 20px;
}

.mz-wp-why-content {
    margin-top: 24px;
}

.mz-wp-why-content p {
    font-size: 16px;
    color: var(--mz-text-main);
    line-height: 2;
    margin: 0 0 16px;
}

.mz-wp-why-content p:last-child {
    margin-bottom: 0;
}

.mz-wp-why-content strong {
    color: var(--mz-text-dark);
}

.mz-wp-why-btn {
    margin-top: 28px;
}

.mz-wp-why-btn .mz-btn-main {
    display: inline-flex;
}

/* Comparison Table Section */
.mz-wp-compare-table {
    padding-top: 80px;
    padding-bottom: 80px;
}

.mz-wp-compare-table-wrapper {
    width: 100%;
    margin: 0 auto;
    overflow-x: auto;
    border: 1px solid var(--mz-border-color);
    border-radius: 12px;
    background: var(--mz-white);
}

.mz-wp-compare-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--mz-font-main);
    direction: ltr;
}

.mz-wp-compare-table thead th {
    padding: 16px 20px;
    font-size: 14px;
    font-family: var(--mz-font-bold);
    text-align: center;
    border-bottom: 2px solid var(--mz-border-color);
    background: var(--mz-surface);
}

.mz-wp-compare-table thead th:first-child {
    text-align: left;
    color: var(--mz-text-dark);
}

.mz-wp-compare-table-yes {
    color: var(--mz-primary);
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

.mz-wp-compare-table-no {
    color: #ba1a1a;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

.mz-wp-compare-table tbody td {
    padding: 12px 20px;
    font-size: 14px;
    color: var(--mz-text-main);
    border-bottom: 1px solid var(--mz-border-color);
}

.mz-wp-compare-table tbody td:first-child {
    font-family: var(--mz-font-bold);
    color: var(--mz-text-dark);
}

.mz-wp-compare-table tbody tr:last-child td {
    border-bottom: none;
}

.mz-wp-compare-table tbody tr:hover {
    background: rgba(0, 137, 138, 0.02);
}

@media (max-width: 576px) {
    .mz-wp-compare-table-wrapper {
        border-radius: 8px;
    }
    
    .mz-wp-compare-table thead th,
    .mz-wp-compare-table tbody td {
        padding: 10px 12px;
        font-size: 13px;
    }
}

/* Zavoxt workload motion system — local CSS/SVG-free infinite animations. */
.mz-wp-features-list > .mz-wp-feature-item .mz-wp-feature-visual[class*="mz-wp-feature-visual--"] > svg { display: none; }
.mz-wp-features-list > .mz-wp-feature-item .mz-wp-feature-visual[class*="mz-wp-feature-visual--"] { min-height: 360px; padding: 0; background: #f5fafa; }
.cp-wp-motion { position: relative; width: min(100%, 510px); height: 330px; overflow: hidden; color: #087c7d; font-family: var(--mz-font-bold); isolation: isolate; }
.cp-wp-motion::before { position: absolute; inset: 42px 24px 24px; border: 1px solid rgba(0,137,138,.15); background-image: linear-gradient(rgba(0,137,138,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(0,137,138,.05) 1px, transparent 1px); background-size: 38px 38px; content: ''; }
.cp-wp-motion-label { position: absolute; z-index: 5; top: 24px; left: 27px; color: #5b7474; font-size: 10px; letter-spacing: .13em; }
.cp-wp-motion-label span { margin-left: 8px; color: var(--mz-primary); }

/* Dedicated-resource grid */
.cp-wp-cloud-lines { position: absolute; inset: 0; z-index: 1; transform: skewY(-11deg); }
.cp-wp-cloud-lines i { position: absolute; right: -25%; left: -25%; height: 2px; background: linear-gradient(90deg, transparent 0 20%, rgba(0,137,138,.15) 20% 35%, var(--mz-primary) 45% 51%, rgba(0,137,138,.15) 62% 78%, transparent 78%); background-size: 290px 100%; animation: cpWpFlow 3.4s linear infinite; }
.cp-wp-cloud-lines i:nth-child(1) { top: 86px; }.cp-wp-cloud-lines i:nth-child(2) { top: 128px; animation-delay: -.7s; opacity: .8; }.cp-wp-cloud-lines i:nth-child(3) { top: 170px; animation-delay: -1.4s; opacity: .65; }.cp-wp-cloud-lines i:nth-child(4) { top: 212px; animation-delay: -2.1s; opacity: .5; }.cp-wp-cloud-lines i:nth-child(5) { top: 254px; animation-delay: -2.8s; opacity: .35; }
.cp-wp-cloud-core { position: absolute; z-index: 3; top: 130px; left: 50%; display: grid; width: 132px; height: 94px; place-content: center; border: 1px solid var(--mz-primary); background: rgba(255,255,255,.93); text-align: center; transform: translateX(-50%); animation: cpWpCorePulse 3.2s ease-in-out infinite; }
.cp-wp-cloud-core b { font-size: 15px; letter-spacing: -.02em; }.cp-wp-cloud-core span { margin-top: 5px; color: #6c8585; font-size: 9px; letter-spacing: .13em; }
.cp-wp-cloud-node { position: absolute; z-index: 2; padding: 8px 10px; border: 1px solid #b9d7d7; background: rgba(255,255,255,.88); color: #567171; font-size: 10px; letter-spacing: .1em; animation: cpWpNode 4s ease-in-out infinite; }
.cp-wp-cloud-node--one { top: 83px; left: 58px; }.cp-wp-cloud-node--two { top: 83px; right: 58px; animation-delay: -1s; }.cp-wp-cloud-node--three { bottom: 43px; left: 62px; animation-delay: -2.1s; }.cp-wp-cloud-node--four { right: 62px; bottom: 43px; animation-delay: -3s; }

/* NVMe data lanes */
.cp-wp-speed-core { position: absolute; z-index: 4; top: 125px; left: 50%; display: grid; width: 132px; height: 102px; place-content: center; border: 1px solid var(--mz-primary); background: #fbfefe; text-align: center; transform: translateX(-50%); }
.cp-wp-speed-core::after { position: absolute; inset: 9px; border: 1px solid rgba(0,137,138,.18); content: ''; }.cp-wp-speed-core b { font-size: 22px; letter-spacing: -.06em; }.cp-wp-speed-core span { margin-top: 3px; color: #668080; font-size: 10px; letter-spacing: .15em; }
.cp-wp-speed-track { position: absolute; z-index: 2; right: 32px; left: 32px; height: 28px; border-top: 1px solid rgba(0,137,138,.22); border-bottom: 1px solid rgba(0,137,138,.1); overflow: hidden; }.cp-wp-speed-track--one { top: 83px; }.cp-wp-speed-track--two { top: 161px; }.cp-wp-speed-track--three { top: 239px; }
.cp-wp-speed-track i { position: absolute; top: 9px; width: 53px; height: 8px; background: linear-gradient(90deg, transparent, var(--mz-primary), transparent); animation: cpWpPacket 2.1s linear infinite; }.cp-wp-speed-track i:nth-child(2) { animation-delay: -1.05s; opacity: .42; }
.cp-wp-speed-readout { position: absolute; right: 34px; bottom: 27px; z-index: 3; padding: 7px 10px; border: 1px solid #c7dddd; background: rgba(255,255,255,.8); color: #6a8282; font-size: 9px; letter-spacing: .1em; }.cp-wp-speed-readout b { margin-left: 7px; color: var(--mz-primary); font-size: 10px; }

/* Security perimeter */
.cp-wp-security-frame { position: absolute; left: 50%; z-index: 1; transform: translateX(-50%); }.cp-wp-security-frame--outer { top: 72px; width: 300px; height: 216px; border: 1px solid rgba(0,137,138,.25); animation: cpWpFrame 7s linear infinite; }.cp-wp-security-frame--inner { top: 92px; width: 238px; height: 176px; border: 1px solid rgba(0,137,138,.17); animation: cpWpFrame 7s linear infinite reverse; }
.cp-wp-security-scan { position: absolute; top: 93px; left: calc(50% - 118px); z-index: 2; width: 236px; height: 2px; background: linear-gradient(90deg, transparent, var(--mz-primary), transparent); animation: cpWpScan 3.4s ease-in-out infinite; }
.cp-wp-security-shield { position: absolute; z-index: 3; top: 126px; left: 50%; display: grid; width: 112px; height: 118px; place-content: center; border: 1px solid var(--mz-primary); background: rgba(255,255,255,.94); clip-path: polygon(50% 0, 93% 15%, 86% 73%, 50% 100%, 14% 73%, 7% 15%); text-align: center; transform: translateX(-50%); animation: cpWpShield 3s ease-in-out infinite; }.cp-wp-security-shield b { font-size: 25px; line-height: 1; }.cp-wp-security-shield span { margin-top: 6px; font-size: 8px; letter-spacing: .1em; }
.cp-wp-security-event { position: absolute; z-index: 4; padding: 7px 8px; border-left: 2px solid var(--mz-primary); background: rgba(255,255,255,.84); color: #5b7777; font-size: 9px; letter-spacing: .08em; }.cp-wp-security-event--one { top: 111px; left: 38px; animation: cpWpEvent 3.5s ease-in-out infinite; }.cp-wp-security-event--two { right: 38px; bottom: 58px; animation: cpWpEvent 3.5s ease-in-out -1.5s infinite; }

/* Processor telemetry */
.cp-wp-compute-bus { position: absolute; right: 42px; left: 42px; z-index: 1; height: 28px; border-top: 1px solid rgba(0,137,138,.24); border-bottom: 1px solid rgba(0,137,138,.12); background: repeating-linear-gradient(90deg, transparent 0 28px, rgba(0,137,138,.26) 29px 31px, transparent 32px 58px); background-size: 220px 100%; animation: cpWpBus 3.8s linear infinite; }.cp-wp-compute-bus--top { top: 89px; }.cp-wp-compute-bus--bottom { bottom: 37px; animation-direction: reverse; }
.cp-wp-compute-chip { position: absolute; z-index: 3; top: 112px; left: 50%; width: 152px; height: 152px; border: 1px solid var(--mz-primary); background: #fbfefe; text-align: center; transform: translateX(-50%); animation: cpWpChip 4s ease-in-out infinite; }.cp-wp-compute-chip::before { position: absolute; inset: 10px; border: 1px solid rgba(0,137,138,.2); content: ''; }.cp-wp-compute-chip b { position: relative; z-index: 2; display: block; margin-top: 48px; font-size: 31px; letter-spacing: -.08em; }.cp-wp-compute-chip span { position: relative; z-index: 2; color: #617c7c; font-size: 9px; letter-spacing: .2em; }
.cp-wp-compute-grid { position: absolute; inset: 18px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; opacity: .38; }.cp-wp-compute-grid i { border: 1px solid #78b8b8; animation: cpWpCell 2.7s ease-in-out infinite; }.cp-wp-compute-grid i:nth-child(2n) { animation-delay: -.7s; }.cp-wp-compute-grid i:nth-child(3n) { animation-delay: -1.4s; }
.cp-wp-compute-stat { position: absolute; z-index: 4; padding: 8px 9px; border: 1px solid #c1dada; background: rgba(255,255,255,.9); color: #668080; font-size: 9px; letter-spacing: .08em; }.cp-wp-compute-stat b { display: block; margin-top: 2px; color: var(--mz-primary); font-size: 12px; }.cp-wp-compute-stat--one { top: 126px; left: 37px; }.cp-wp-compute-stat--two { right: 37px; bottom: 61px; }

@keyframes cpWpFlow { from { background-position: -290px 0; } to { background-position: 290px 0; } }
@keyframes cpWpCorePulse { 50% { box-shadow: 0 0 0 11px rgba(0,137,138,0); transform: translateX(-50%) scale(1.025); } }
@keyframes cpWpNode { 50% { border-color: var(--mz-primary); transform: translateY(-5px); } }
@keyframes cpWpPacket { from { transform: translateX(-90px); } to { transform: translateX(calc(100vw + 120px)); } }
@keyframes cpWpFrame { to { transform: translateX(-50%) rotate(360deg); } }
@keyframes cpWpScan { 0%,100% { transform: translateY(0); opacity: .2; } 50% { transform: translateY(173px); opacity: 1; } }
@keyframes cpWpShield { 50% { transform: translateX(-50%) scale(1.045); } }
@keyframes cpWpEvent { 50% { border-left-color: #a1c8c8; transform: translateY(-4px); } }
@keyframes cpWpBus { from { background-position: -220px 0; } to { background-position: 220px 0; } }
@keyframes cpWpChip { 50% { transform: translateX(-50%) translateY(-5px); } }
@keyframes cpWpCell { 50% { background: rgba(0,137,138,.38); border-color: var(--mz-primary); } }

@media (prefers-reduced-motion: reduce) { .cp-wp-motion *, .cp-wp-motion::before { animation: none !important; } }
@media (max-width: 768px) { .mz-wp-features-list > .mz-wp-feature-item .mz-wp-feature-visual[class*="mz-wp-feature-visual--"] { min-height: 244px !important; } .cp-wp-motion { height: 242px; transform: scale(.86); transform-origin: center; } .cp-wp-motion-label { top: 20px; }.cp-wp-cloud-node--one { left: 35px; }.cp-wp-cloud-node--two { right: 35px; }.cp-wp-cloud-node--three { left: 38px; bottom: 28px; }.cp-wp-cloud-node--four { right: 38px; bottom: 28px; } }

/* Second-generation workload scenes: four different stories, no shared visual motif. */
.mz-wp-features-list > .mz-wp-feature-item .mz-wp-feature-visual[class*="mz-wp-feature-visual--"]::before,
.mz-wp-features-list > .mz-wp-feature-item .mz-wp-feature-visual[class*="mz-wp-feature-visual--"]::after { display: none !important; }
.cp-wp-v2 { position: absolute; inset: 0; min-width: 0; overflow: hidden; color: #087c7d; font-family: var(--mz-font-bold); background: linear-gradient(135deg, #fbfdfd, #eef7f7); }
.cp-wp-v2::after { position: absolute; right: 22px; bottom: 20px; left: 22px; height: 1px; background: #c7dfdf; content: ''; }
.cp-wp-v2-label { position: absolute; z-index: 9; top: 23px; left: 27px; color: #567171; font-size: 10px; letter-spacing: .12em; }.cp-wp-v2-label span { margin-left: 8px; color: var(--mz-primary); }

/* 1. A private resource elevator travelling through reserved capacity. */
.cp-wp-v2--resources { background: linear-gradient(90deg, #f1f8f8 0 34%, #fbfdfd 34%); }
.cp-wp-v2-building { position: absolute; top: 66px; right: 38px; bottom: 37px; left: 38px; border: 1px solid #c4dddd; background: repeating-linear-gradient(0deg, transparent 0 53px, rgba(0,137,138,.15) 54px 55px); }.cp-wp-v2-building::before { position: absolute; top: 0; bottom: 0; left: 42%; width: 1px; background: #91c5c5; content: ''; }
.cp-wp-v2-building i { position: absolute; right: 17px; left: 48%; height: 12px; border: 1px solid #c1dddd; background: rgba(255,255,255,.72); }.cp-wp-v2-building i:nth-child(1) { top: 16px; }.cp-wp-v2-building i:nth-child(2) { top: 58px; }.cp-wp-v2-building i:nth-child(3) { top: 101px; }.cp-wp-v2-building i:nth-child(4) { top: 143px; }.cp-wp-v2-building i:nth-child(5) { top: 185px; }.cp-wp-v2-building i:nth-child(6) { top: 227px; }
.cp-wp-v2-elevator { position: absolute; z-index: 4; top: 203px; left: calc(38px + 21%); display: grid; width: 93px; height: 56px; place-content: center; border: 1px solid var(--mz-primary); background: #fff; text-align: center; animation: cpV2Lift 5.8s cubic-bezier(.65,0,.35,1) infinite; }.cp-wp-v2-elevator b { font-size: 11px; letter-spacing: .05em; }.cp-wp-v2-elevator span { position: absolute; right: -5px; bottom: -5px; width: 9px; height: 9px; background: var(--mz-primary); }
.cp-wp-v2-resource { position: absolute; z-index: 3; left: 51%; padding: 6px 9px; border-left: 2px solid var(--mz-primary); background: rgba(255,255,255,.9); color: #698383; font-size: 9px; letter-spacing: .08em; }.cp-wp-v2-resource b { color: var(--mz-primary); }.cp-wp-v2-resource--cpu { top: 99px; }.cp-wp-v2-resource--ram { top: 153px; }.cp-wp-v2-resource--io { top: 208px; }.cp-wp-v2-floor { position: absolute; z-index: 2; left: 52px; width: 80px; height: 12px; border: 1px solid #b9d8d8; background: rgba(255,255,255,.58); }.cp-wp-v2-floor--one { top: 96px; }.cp-wp-v2-floor--two { top: 152px; }.cp-wp-v2-floor--three { top: 208px; }

/* 2. A web page travelling from WordPress origin to the visitor's browser. */
.cp-wp-v2--speed { background: #f8fcfc; }.cp-wp-v2-origin, .cp-wp-v2-browser { position: absolute; z-index: 4; border: 1px solid var(--mz-primary); background: #fff; text-align: center; }.cp-wp-v2-origin { top: 132px; left: 42px; display: grid; width: 83px; height: 77px; place-content: center; }.cp-wp-v2-origin b { font-size: 25px; letter-spacing: -.1em; }.cp-wp-v2-origin span { margin-top: 3px; font-size: 8px; letter-spacing: .14em; }.cp-wp-v2-browser { top: 115px; right: 42px; width: 116px; height: 108px; }.cp-wp-v2-browser div { height: 14px; border-bottom: 1px solid #bad8d8; background: #edf7f7; }.cp-wp-v2-browser b { display: block; margin-top: 24px; font-size: 13px; }.cp-wp-v2-browser span { color: var(--mz-primary); font-size: 10px; }.cp-wp-v2-delivery { position: absolute; z-index: 3; top: 141px; right: 142px; left: 130px; height: 56px; border-top: 1px solid #8ebfbf; border-bottom: 1px solid #8ebfbf; overflow: hidden; }.cp-wp-v2-packet { position: absolute; left: -46px; padding: 5px 7px; background: var(--mz-primary); color: #fff; font-size: 8px; font-style: normal; letter-spacing: .08em; animation: cpV2Deliver 3s linear infinite; }.cp-wp-v2-packet::after { position: absolute; top: 0; right: -9px; border-top: 12px solid transparent; border-bottom: 12px solid transparent; border-left: 9px solid var(--mz-primary); content: ''; }.cp-wp-v2-packet--one { top: 5px; }.cp-wp-v2-packet--two { top: 17px; animation-delay: -1s; opacity: .66; }.cp-wp-v2-packet--three { top: 29px; animation-delay: -2s; opacity: .38; }.cp-wp-v2-speedline { position: absolute; z-index: 1; left: 30px; width: 300px; height: 1px; background: linear-gradient(90deg, transparent, rgba(0,137,138,.32), transparent); animation: cpV2SpeedLine 2.4s linear infinite; }.cp-wp-v2-speedline--one { top: 87px; }.cp-wp-v2-speedline--two { top: 244px; animation-delay: -.8s; }.cp-wp-v2-speedline--three { top: 270px; animation-delay: -1.6s; opacity: .4; }

/* 3. A firewall gate: allowed requests pass, threats are stopped. */
.cp-wp-v2--security { background: linear-gradient(90deg, #f8fbfb 0 54%, #eef8f8 54%); }.cp-wp-v2-gateway { position: absolute; z-index: 5; top: 84px; left: 50%; width: 84px; height: 206px; border: 1px solid var(--mz-primary); background: #fff; text-align: center; transform: translateX(-50%); }.cp-wp-v2-gateway b { display: block; margin-top: 82px; font-size: 18px; letter-spacing: -.06em; }.cp-wp-v2-gateway span { color: #628080; font-size: 8px; letter-spacing: .09em; }.cp-wp-v2-gate-bars { position: absolute; top: 9px; right: 10px; bottom: 9px; left: 10px; display: flex; justify-content: space-between; }.cp-wp-v2-gate-bars i { width: 1px; background: #b8d7d7; }
.cp-wp-v2-request { position: absolute; z-index: 4; left: 42px; padding: 7px 9px; border: 1px solid #b8d6d6; background: #fff; color: #627f7f; font-size: 9px; letter-spacing: .08em; animation: cpV2Request 5s linear infinite; }.cp-wp-v2-request::after { position: absolute; top: 0; right: -9px; border-top: 14px solid transparent; border-bottom: 14px solid transparent; border-left: 9px solid #b8d6d6; content: ''; }.cp-wp-v2-request--good { top: 112px; }.cp-wp-v2-request--bad { top: 164px; animation-delay: -1.65s; }.cp-wp-v2-request--scan { top: 216px; animation-delay: -3.3s; }.cp-wp-v2-request--bad, .cp-wp-v2-request--scan { color: #8e7777; border-color: #d9c5c5; }.cp-wp-v2-request--bad::after, .cp-wp-v2-request--scan::after { border-left-color: #d9c5c5; }
.cp-wp-v2-safe-zone { position: absolute; z-index: 4; top: 136px; right: 37px; padding: 15px 12px; border-left: 2px solid var(--mz-primary); background: rgba(255,255,255,.82); text-align: left; }.cp-wp-v2-safe-zone b { display: block; font-size: 10px; }.cp-wp-v2-safe-zone span { color: #668181; font-size: 8px; letter-spacing: .07em; }.cp-wp-v2-log { position: absolute; right: 37px; bottom: 39px; left: 37px; display: flex; gap: 8px; align-items: center; border-top: 1px solid #c5dddd; padding-top: 8px; color: #668181; font-size: 8px; letter-spacing: .09em; }.cp-wp-v2-log i { width: 7px; height: 7px; background: var(--mz-primary); animation: cpV2Blink 1.4s steps(2) infinite; }

/* 4. The processor is visualised as an execution queue, not a chip. */
.cp-wp-v2--compute { background: linear-gradient(135deg, #f9fcfc, #edf7f7); }.cp-wp-v2-queue { position: absolute; z-index: 3; top: 79px; left: 36px; display: grid; gap: 7px; width: 148px; }.cp-wp-v2-queue i { position: relative; display: block; padding: 8px 10px; border-left: 2px solid #9bcaca; background: rgba(255,255,255,.88); color: #5e7c7c; font-size: 8px; font-style: normal; letter-spacing: .09em; animation: cpV2Queue 3.6s ease-in-out infinite; }.cp-wp-v2-queue i:nth-child(2) { animation-delay: -.7s; }.cp-wp-v2-queue i:nth-child(3) { animation-delay: -1.4s; }.cp-wp-v2-queue i:nth-child(4) { animation-delay: -2.1s; }.cp-wp-v2-queue i:nth-child(5) { animation-delay: -2.8s; }
.cp-wp-v2-engine { position: absolute; z-index: 5; top: 126px; left: 55%; width: 136px; height: 105px; border: 1px solid var(--mz-primary); background: #fff; text-align: center; }.cp-wp-v2-engine::before, .cp-wp-v2-engine::after { position: absolute; top: 26px; width: 18px; height: 51px; border: 1px solid #92c3c3; content: ''; }.cp-wp-v2-engine::before { left: -19px; border-right: 0; }.cp-wp-v2-engine::after { right: -19px; border-left: 0; }.cp-wp-v2-engine b { display: block; margin-top: 26px; font-size: 30px; letter-spacing: -.08em; }.cp-wp-v2-engine span { color: #607d7d; font-size: 8px; letter-spacing: .12em; }.cp-wp-v2-engine em { position: absolute; right: 0; bottom: 0; left: 0; height: 3px; background: var(--mz-primary); transform-origin: left; animation: cpV2Engine 2.4s ease-in-out infinite; }
.cp-wp-v2-output { position: absolute; z-index: 3; top: 253px; right: 35px; left: 38px; display: flex; gap: 5px; align-items: center; }.cp-wp-v2-output i { display: block; width: 24px; height: 7px; background: #9bcaca; animation: cpV2Output .9s steps(2) infinite; }.cp-wp-v2-output i:nth-child(2) { animation-delay: -.3s; }.cp-wp-v2-output i:nth-child(3) { animation-delay: -.6s; }.cp-wp-v2-output span { margin-left: 5px; color: #5f7c7c; font-size: 8px; letter-spacing: .1em; }.cp-wp-v2-metric { position: absolute; z-index: 6; padding: 6px 8px; border: 1px solid #c1dada; background: rgba(255,255,255,.88); color: #688383; font-size: 8px; letter-spacing: .08em; }.cp-wp-v2-metric b { margin-left: 4px; color: var(--mz-primary); }.cp-wp-v2-metric--one { top: 76px; right: 35px; }.cp-wp-v2-metric--two { right: 35px; bottom: 50px; }

@keyframes cpV2Lift { 0%, 12% { transform: translateY(0); } 38%, 55% { transform: translateY(-111px); } 78%, 100% { transform: translateY(0); } }
@keyframes cpV2Deliver { from { transform: translateX(0); } to { transform: translateX(245px); } }
@keyframes cpV2SpeedLine { from { transform: translateX(-95px); opacity: 0; } 35% { opacity: 1; } to { transform: translateX(160px); opacity: 0; } }
@keyframes cpV2Request { 0%, 22% { transform: translateX(0); opacity: 1; } 34%, 100% { transform: translateX(142px); opacity: 0; } }
@keyframes cpV2Blink { 50% { opacity: .2; } }
@keyframes cpV2Queue { 50% { border-left-color: var(--mz-primary); transform: translateX(10px); } }
@keyframes cpV2Engine { 0%,100% { transform: scaleX(.2); } 50% { transform: scaleX(1); } }
@keyframes cpV2Output { 50% { background: var(--mz-primary); } }
@media (prefers-reduced-motion: reduce) { .cp-wp-v2 *, .cp-wp-v2::before, .cp-wp-v2::after { animation: none !important; } }
@media (max-width: 768px) { .cp-wp-v2 { inset: 0; height: auto; transform: none; } .cp-wp-v2-label { top: 16px; } .cp-wp-v2-building { top: 52px; } .cp-wp-v2-elevator { top: 188px; } }

/* Keep the plan call-to-action identical to its desktop form on smaller screens. */
@media (max-width: 1024px) {
    .mz-wp-plan-action {
        width: 230px;
        order: initial;
        align-self: flex-start;
    }
}

/* Plan Guide Section - Article Style */
.mz-wp-compare {
    padding-top: 80px;
    padding-bottom: 80px;
}

.mz-wp-compare-desc {
    text-align: center;
    font-size: 16px;
    color: var(--mz-text-muted);
    max-width: 600px;
    margin: -16px auto 40px;
    line-height: 1.6;
}

.mz-wp-compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: var(--mz-container-max, 1280px);
    margin: 0 auto;
}

.mz-wp-compare-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    border: 1px solid var(--mz-border-color);
    border-radius: 12px;
    transition: border-color 0.2s ease;
    background: var(--mz-white);
}

.mz-wp-compare-item:hover {
    border-color: var(--mz-primary);
}

.mz-wp-compare-item-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--mz-surface);
    border: 1px solid var(--mz-border-color);
    border-radius: 10px;
    color: var(--mz-primary);
}

.mz-wp-compare-item-content {
    flex: 1;
}

.mz-wp-compare-item-content h3 {
    font-size: 16px;
    font-family: var(--mz-font-bold);
    color: var(--mz-text-dark);
    margin: 0 0 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.mz-wp-compare-item-tag {
    font-size: 11px;
    color: var(--mz-primary);
    font-family: var(--mz-font-bold);
    background: rgba(0, 137, 138, 0.08);
    padding: 2px 10px;
    border-radius: 12px;
    white-space: nowrap;
}

.mz-wp-compare-item-content p {
    font-size: 14px;
    color: var(--mz-text-main);
    line-height: 1.7;
    margin: 0 0 8px;
}

.mz-wp-compare-item-link {
    font-size: 13px;
    color: var(--mz-primary);
    font-family: var(--mz-font-bold);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.mz-wp-compare-item-link:hover {
    opacity: 0.7;
}

/* Info + SEO Combined Section */
.mz-wp-info-seo {
    padding: var(--mz-section-gap) 0;
}

.mz-wp-info-seo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.mz-wp-info-seo-card {
    background: var(--mz-white);
    border: 1px solid var(--mz-border-color);
    border-radius: 12px;
    padding: 28px 24px;
    transition: border-color 0.2s ease;
}

.mz-wp-info-seo-card:hover {
    border-color: var(--mz-primary);
}

.mz-wp-info-seo-card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--mz-surface);
    border: 1px solid var(--mz-border-color);
    border-radius: 10px;
    color: var(--mz-primary);
    margin-bottom: 16px;
}

.mz-wp-info-seo-card h4 {
    font-size: 16px;
    font-family: var(--mz-font-bold);
    color: var(--mz-text-dark);
    margin: 0 0 10px;
    line-height: 1.5;
}

.mz-wp-info-seo-card p {
    font-size: 14px;
    color: var(--mz-text-main);
    line-height: 1.8;
    margin: 0;
}

/* SEO Content - 2 column */
.mz-wp-info-seo-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.mz-wp-info-seo-main h3 {
    font-size: 22px;
    font-family: var(--mz-font-bold);
    color: var(--mz-text-dark);
    margin: 0 0 16px;
    line-height: 1.5;
}

.mz-wp-info-seo-main > p {
    font-size: 15px;
    color: var(--mz-text-main);
    line-height: 1.9;
    margin: 0 0 30px;
}

.mz-wp-info-seo-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mz-wp-info-seo-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.mz-wp-info-seo-feature-num {
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 137, 138, 0.08);
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--mz-font-bold);
    color: var(--mz-primary);
}

.mz-wp-info-seo-feature h4 {
    font-size: 15px;
    font-family: var(--mz-font-bold);
    color: var(--mz-text-dark);
    margin: 0 0 6px;
    line-height: 1.4;
}

.mz-wp-info-seo-feature p {
    font-size: 14px;
    color: var(--mz-text-main);
    line-height: 1.8;
    margin: 0;
}

/* Sidebar */
.mz-wp-info-seo-sidebar-inner {
    background: var(--mz-white);
    border: 1px solid var(--mz-border-color);
    border-radius: 12px;
    padding: 28px 24px;
    position: sticky;
    top: 100px;
}

.mz-wp-info-seo-sidebar-inner h4 {
    font-size: 16px;
    font-family: var(--mz-font-bold);
    color: var(--mz-text-dark);
    margin: 0 0 18px;
}

.mz-wp-info-seo-sidebar-inner ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mz-wp-info-seo-sidebar-inner ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--mz-text-main);
    line-height: 1.5;
}

.mz-wp-info-seo-sidebar-inner ul li svg {
    color: var(--mz-primary);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .mz-wp-info-seo-grid {
        grid-template-columns: 1fr;
    }
    
    .mz-wp-info-seo-content {
        grid-template-columns: 1fr;
    }
    
    .mz-wp-info-seo-sidebar-inner {
        position: static;
    }
}

/* Support Banner Section */
.mz-wp-support-banner {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

.mz-wp-support-banner-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid #e1e3e4;
    border-radius: 12px;
    padding: 32px 40px;
    width: 100%;
}

.mz-wp-support-banner-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #e1e3e4;
    border-radius: 12px;
    color: #00898a;
}

.mz-wp-support-banner-content {
    flex: 1;
    min-width: 0;
}

.mz-wp-support-banner-content h3 {
    font-family: var(--mz-font-bold);
    font-size: 18px;
    color: var(--mz-text-main);
    margin: 0 0 6px;
    line-height: 1.4;
}

.mz-wp-support-banner-content p {
    font-size: 14px;
    color: var(--mz-text-main);
    line-height: 1.7;
    margin: 0;
    opacity: 0.8;
}

.mz-wp-support-banner-action {
    flex-shrink: 0;
}

/* Mobile - 576px */
@media (max-width: 576px) {
    .mz-wp-hero-content h1 {
        font-size: 1.3rem;
    }
    
    .mz-wp-compare-grid {
        grid-template-columns: 1fr;
    }
    
    .mz-wp-compare-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .mz-wp-compare-item-content h3 {
        justify-content: center;
    }

    .mz-wp-support-banner-inner {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }

    .mz-wp-support-banner-action {
        width: 100%;
    }

    .mz-wp-support-banner-action .mz-btn-group {
        justify-content: center;
    }
}

/* Compact, vertically aligned plan selection control. */
.mz-wp-plan-bottom { align-items: center; }
.mz-wp-plan-action { display: flex; align-items: center; }
.mz-wp-plan-action .mz-btn-group,
.mz-wp-plan-action .mz-btn-main { height: 50px; }
.mz-wp-plan-action .mz-btn-group { margin: 0; }
.mz-wp-plan-action .mz-btn-main { min-height: 50px; }

/* Cryptocurrency payment notice shared by the hosting plans. */
.mz-hosting-crypto { padding-top: 34px !important; padding-bottom: 34px !important; }
.mz-hosting-crypto-inner { position: relative; display: grid; grid-template-columns: 72px minmax(0, 1fr) auto; gap: 26px; align-items: center; overflow: hidden; padding: 34px 38px; border: 1px solid #006f70; border-radius: 10px; background-color: #007b7c; background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px); background-size: 56px 56px; }
.mz-hosting-crypto-inner::before { position: absolute; top: 0; bottom: 0; left: 122px; width: 1px; background: rgba(255,255,255,.16); content: ''; }
.mz-hosting-crypto-mark { position: relative; z-index: 1; display: grid; width: 64px; height: 64px; place-items: center; border: 1px solid rgba(255,255,255,.72); color: #fff; font-family: Arial, sans-serif; font-size: 43px; font-weight: 700; line-height: 1; }
.mz-hosting-crypto-copy { position: relative; z-index: 1; min-width: 0; }.mz-hosting-crypto-copy p { margin: 0 0 7px; color: #d8f1f1; font-family: var(--mz-font-bold); font-size: 10px; letter-spacing: .12em; }.mz-hosting-crypto-copy h2 { margin: 0 0 8px; color: #fff; font-family: var(--mz-font-bold); font-size: clamp(21px, 2.2vw, 28px); line-height: 1.2; }.mz-hosting-crypto-copy span { display: block; max-width: 700px; color: rgba(255,255,255,.86); font-size: 14px; line-height: 1.75; }
.mz-hosting-crypto .mz-btn { position: relative; z-index: 1; min-height: 48px; border: 1px solid rgba(255,255,255,.75); border-radius: 8px; background: #fff; color: #006f70; white-space: nowrap; }.mz-hosting-crypto .mz-btn:hover { background: #e8f6f6; color: #006f70; }
@media (max-width: 768px) { .mz-hosting-crypto-inner { grid-template-columns: 56px minmax(0, 1fr); gap: 20px; padding: 28px 24px; }.mz-hosting-crypto-inner::before { left: 98px; }.mz-hosting-crypto-mark { width: 54px; height: 54px; font-size: 36px; }.mz-hosting-crypto .mz-btn { grid-column: 2; justify-self: start; } }
@media (max-width: 520px) { .mz-hosting-crypto-inner { grid-template-columns: 1fr; }.mz-hosting-crypto-inner::before { display: none; }.mz-hosting-crypto .mz-btn { grid-column: auto; width: 100%; }.mz-hosting-crypto-mark { width: 58px; height: 58px; } }
