/* =========================================================================
   MODERN WORDPRESS HOSTING HERO COMPONENT STYLES
   ========================================================================= */

/* Section Context Background */
.wp-hero-section {
    /* background-image: url('/assets/images/wordpress-hosting/wordpress-hero-bg.webp'); */
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-color: #e6f3ff;
    padding: 50px 20px;
    overflow: hidden;
}

/* Badge Layout */
.wp-badge-wrapper {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-soft);
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
}

.wp-badge-tag {
    background-color: var(--accent-color);
    color: var(--text-white);
    font-size: 0.75rem;
         font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
    margin-right: 8px;
}

.wp-badge-text {
    color: var(--primary-color);
    font-size: 0.88rem;
         font-weight: 600;
}

/* Typography Gradient Effect */
.wp-hero-title {
    color: #14376f;
    font-size: 56px;
         font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.7px;
}

.text-gradient {
    background: linear-gradient(135deg, #0a7f26 0%, #198754 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


.wp-hero-subtitle {
    color: #334155;
    font-size: 18px;
    line-height: 1.6;
    max-width: 540px;
    font-weight: 500;
}

/* Checklist Styling (Scalahosting structure inspired) */
.wp-hero-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--text-dark);
}

.wp-hero-checklist li i {
    color: var(--accent-color);
    font-size: 1.2rem;
    line-height: 1;
    margin-top: 2px;
}

.wp-hero-checklist strong {
    color: var(--primary-color);
}

/* Pricing and Buy Controls */
.wp-hero-action-block {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 16px 24px;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: space-between; 
    width: fit-content; 
    gap: 24px; 
}

.wp-price-tag .price-label {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
         font-weight: 600;
    letter-spacing: 0.05em;
}

.price-value {
    display: flex;
    align-items: baseline;
    color: var(--primary-color);
}

.price-value .currency {
    font-size: 25px;
         font-weight: 600;
}

.price-value .amount {
    font-size: 35px;
         font-weight: 600;
    line-height: 1;
    margin: 0 2px;
}

.price-value .duration {
    font-size: 14px;
    color: var(--text-muted);
}

/* CTA Design */
.btn-wp-hero-primary {
    background-color: #0a7f26;
    color: #ffffff;
         font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    display: inline-block;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.btn-wp-hero-primary:hover {
    background-color: var(--secondary-color);
    color: var(--text-white);
    transform: translateY(-2px);
}

.wp-hero-trust .trust-pill {
    font-size: 14px;
    color: #14376f;
         font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.wp-hero-trust .trust-pill i {
    color: var(--accent-color);
}

/* Right Side Dashboard & Floating Badges Graphic Concept */
.wp-hero-visual-container {
    position: relative;
    display: inline-block;
}

.wp-main-hero-img {
    filter: drop-shadow(0 20px 40px rgba(11, 42, 99, 0.08));
    border-radius: var(--border-radius-md);
    max-width: 110%;
}

/* Floating Performance Badge Style */
.floating-performance-card {
    position: absolute;
    bottom: 30px;
    left: -40px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-soft);
    width: 240px;
    text-align: left;
}

.floating-performance-card .card-icon {
    background-color: var(--accent-soft);
    color: var(--accent-color);
    width: 44px;
    height: 44px;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.floating-performance-card .card-info {
    flex-grow: 1;
}

.floating-performance-card .card-title {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.floating-performance-card .card-metric {
    display: block;
    font-size: 1.15rem;
         font-weight: 600;
    color: var(--primary-color);
}

.floating-performance-card .card-progress-bar {
    background-color: var(--border-color);
    height: 4px;
    border-radius: 10px;
    margin-top: 4px;
    width: 100%;
    overflow: hidden;
}

.floating-performance-card .card-progress-bar span {
    background-color: var(--accent-color);
    display: block;
    height: 100%;
}

/* Floating Security Capsule */
.floating-security-card {
    position: absolute;
    top: 40px;
    right: -20px;
    background-color: var(--primary-dark);
    color: var(--text-white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
         font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-soft);
}

/* =========================================================================
   RESPONSIVE DESIGN CONTROLS
   ========================================================================= */
@media (max-width: 1199.98px) {
    .floating-performance-card {
        left: 0;
    }
}

@media (max-width: 991.98px) {
    .wp-hero-title {
        font-size: 2.5rem;
    }
    .wp-hero-section {
        padding: 60px 0;
        text-align: center;
    }
    .wp-hero-subtitle {
        margin: 0 auto 1.5rem auto;
    }
    .wp-hero-checklist li {
        justify-content: center;
        text-align: left;
    }
    .wp-hero-action-block {
        margin: 0 auto;
    }
    .wp-hero-trust {
        justify-content: center;
    }
    .wp-hero-visual-container {
        margin-top: 30px;
    }
}

@media (max-width: 575.98px) {
    .wp-hero-action-block {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    .btn-wp-hero-primary {
        width: 100%;
    }
    .floating-performance-card, .floating-security-card {
        display: none; 
    }
}


@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-60px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}


@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(60px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}


.wp-hero-section .row > .col-lg-6:first-child {
    animation: slideInFromLeft 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    opacity: 0; 
}

.wp-hero-section .row > .col-lg-6:last-child {
    animation: slideInFromRight 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    opacity: 0;
    animation-delay: 0.2s; 
}


/* =========================================================================
   4-TIER PRICING SECTION STYLES (SLIM & PROFESSIONAL)
   ========================================================================= */

.wp-pricing-section {
    background-color: #ffffff;
    padding: 50px 20px;
}

.section-title {
    color: #14376f;
    font-size: 45px;
         font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.7px;
}

.section-subtitle {
    color: #64748b;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* Base Pricing Card (Slimmer Paddings for 4 columns) */
.wp-price-card {
    background-color: #ffffff;
    border: 1px solid #dbe4f0;
    border-radius: 18px;
    padding: 35px 24px; 
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
}

.wp-price-card:hover {
    box-shadow: 0 16px 38px rgba(11, 42, 99, 0.08);
    transform: translateY(-5px);
}

/* Most Popular Pricing Card Highlight (Dark Theme for Business Plan) */
.wp-price-card.popular {
    background-color: #14376f; 
    border: 2px solid #14376f;
    box-shadow: 0 20px 45px rgba(11, 42, 99, 0.18);
    transform: scale(1.04);
    z-index: 2;
}

.wp-price-card.popular:hover {
    transform: scale(1.04) translateY(-5px);
}

.popular-ribbon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0a7f26; 
    color: #ffffff;
    font-size: 0.8rem;
         font-weight: 600;
    padding: 6px 18px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(10, 127, 38, 0.3);
    white-space: nowrap;
}

/* Card Header */
.plan-name {
    color: #14376f;
    font-size: 25px;
         font-weight: 600;
    margin-bottom: 8px;
}

.plan-desc {
    color: #64748b;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 25px;
    min-height: 40px;
}

/* Pricing Typography */
.price-box {
    margin-bottom: 25px;
    color: #14376f;
}

.price-box .currency {
    font-size: 30px;
         font-weight: 600;
    vertical-align: top;
    position: relative;
    top: 6px;
}

.price-box .amount {
    font-size: 45px;
         font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1;
}

.price-box .period {
    font-size: 18px;
    color: #64748b;
    font-weight: 500;
}

/* Buttons */
.btn-wp-outline {
    border: 2px solid #e2e8f0;
    color: #ffffff;
    background: var(--primary-color);
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}


.btn-wp-outline:hover {
    border-color: var(--accent-color);
    background-color: var(--accent-color);
    color: #ffffff;
}

.btn-wp-hero-primary {
    background-color: #0a7f26;
    color: #ffffff;
         font-weight: 600;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(10, 127, 38, 0.15);
    transition: all 0.3s ease;
    border: 2px solid #0a7f26;
}

.btn-wp-hero-primary:hover {
    background-color: #126d31;
    border-color: #126d31;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Features List */
.plan-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features-list li {
    padding: 10px 0;
    font-size: 16px;
    color: #334155;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-bottom: 1px solid #f1f5f9;
}

.wp-price-card.popular .plan-features-list li {
    color: #e2e8f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-features-list li:last-child {
    border-bottom: none;
}

.plan-features-list li i {
    color: #14376f;
    font-size: 1rem;
    margin-top: 2px;
}

.wp-price-card.popular .plan-features-list li i {
    color: #0a7f26; 
}

/* Disabled Features */
.plan-features-list li.disabled-feat {
    color: #94a3b8;
}

.plan-features-list li.disabled-feat i {
    color: #cbd5e1;
}

/* Responsive Fixes for 4 Cards */
@media (max-width: 1199.98px) {
    .wp-price-card.popular {
        transform: scale(1);
    }
    .wp-price-card.popular:hover {
        transform: translateY(-5px);
    }
}
@media (max-width: 991.98px) {
    .wp-price-card {
        margin-bottom: 15px;
    }
}

.container-xl{
    max-width: 1500px;
}


/* =====================================================
   WORDPRESS HOSTING - SIDE TECH PIPELINE
===================================================== */

.wp-tech-pipeline {
    padding: 50px 20px;
    background-color: #FFF8F0;
    background-image: radial-gradient(circle at 50% 50%, rgba(13, 110, 253, 0.05) 0%, transparent 60%);
    overflow: hidden;
}

/* Header */
.pipeline-header {
    max-width: 700px;
    margin: 0 auto 60px;
}

.pipeline-header h2 {
    color: var(--text-dark, #0f172a);
    font-size: 45px;
         font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.7px;
}

.pipeline-header p {
    color: var(--text-muted, #64748b);
    font-size: 18px;
    line-height: 1.7;
}

/* ------------------------------------
   SIDE TIMELINE LAYOUT (LEFT ALIGNED)
------------------------------------ */
.pipeline-wrapper-side {
    position: relative;
    padding: 10px 0;
    margin-left: 20px;
}

/* The glowing side line */
.side-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 28px; /* Centered with the 60px icon */
    width: 4px;
    background: linear-gradient(to bottom, rgba(13, 110, 253, 0), rgba(13, 110, 253, 0.4), rgba(13, 110, 253, 0));
}

/* Individual Feature Wrapper */
.pipeline-item-side {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
}

.pipeline-item-side:last-child {
    margin-bottom: 0;
}

/* Glowing Circular Icons */
.node-icon-side {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border: 4px solid var(--accent-color, #0d6efd);
    color: var(--accent-color, #0d6efd);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 2;
    box-shadow: 0 0 20px rgba(13, 110, 253, 0.2);
    transition: all 0.3s ease;
    flex-shrink: 0; 
}

.pipeline-item-side:hover .node-icon-side {
    transform: scale(1.15);
    box-shadow: 0 0 30px rgba(13, 110, 253, 0.4);
    background: var(--accent-color, #0d6efd);
    color: #ffffff;
}

/* Floating Content Box */
.content-wrap-side {
    margin-left: 30px; 
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    border: 2px solid transparent; 
    box-shadow: 0 15px 35px rgba(11, 42, 99, 0.05); 
    transition: all 0.3s ease; 
    width: 100%;
}

.pipeline-item-side:hover .content-wrap-side {
    transform: translateY(-5px);
    border-color: #10b981; /* Green Outline */
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15); /* Green Shadow */
}

/* Text Styling */
.content-wrap-side h4 {
    color: var(--text-dark, #0f172a);
    font-size: 22px;
         font-weight: 600;
    margin-bottom: 10px;
}

.content-wrap-side p {
    color: var(--text-muted, #64748b);
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .pipeline-wrapper-side { margin-left: 0; }
    .pipeline-header h2 { font-size: 2.2rem; }
}

@media (max-width: 768px) {
    .side-line { left: 24px; }
    .node-icon-side { width: 50px; height: 50px; font-size: 20px; }
    .content-wrap-side { margin-left: 20px; padding: 20px; }
}

/* =====================================================
   WORDPRESS HOSTING - FULL WIDTH MIGRATION SECTION
===================================================== */


.wp-migration-full-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    padding: 50px 20px;
    position: relative;
    overflow: hidden;
}

/* Background Dotted Pattern (Premium Feel) */
.wp-migration-full-section .banner-pattern {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    
    background-size: 30px 30px;
    z-index: 0;
}

/* Glowing Orb behind the image */
.wp-migration-full-section .glow-orb {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(10, 127, 38, 0.15) 0%, rgba(0,0,0,0) 70%);
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
}

/* Typography for Dark Banner */


.banner-title-dark {
    color: var(--text-white, #ffffff);
    font-size: 45px;
         font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.7px;
}

.banner-text-dark {
    color: rgba(255, 255, 255, 0.75);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Perks List */
.migration-perks-dark {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.perk-item-dark {
    color: var(--text-white, #ffffff);
    font-size: 18px;
         font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.perk-item-dark i {
    color: var(--accent-color); 
    font-size: 20px;
    filter: drop-shadow(0 0 8px rgba(10, 127, 38, 0.4)); 
}

/* Custom Green Button */
.btn-custom-green {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-color) !important;
    color: #ffffff !important;
    font-size: 18px;
         font-weight: 600;
    padding: 14px 35px;
    border-radius: var(--border-radius-sm, 8px);
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(10, 127, 38, 0.4);
    border: none;
}

.btn-custom-green:hover {
    background-color: var(--accent-hover, #096b20) !important;
    color: #ffffff !important;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(10, 127, 38, 0.6);
}

/* Image Wrapping & Animation */
.migration-image-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.premium-migration-img {
    width: 100%;
    max-width: 560px; 
    filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.4)); 
    animation: floatImageSmooth 6s ease-in-out infinite;
}

@keyframes floatImageSmooth {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .wp-migration-full-section { padding: 70px 0; text-align: center; }
    .migration-perks-dark { align-items: center; }
    .premium-migration-img { max-width: 80%; margin-top: 40px; }
}

/* =====================================================
   WORDPRESS HOSTING - 3 SIMPLE STEPS (CREAM SECTION)
===================================================== */

.wp-onboarding-steps {
    position: relative;
    z-index: 1;
    padding: 50px 20px;
    background-color: #FFF8F0;
    font-family: 'Poppins', sans-serif;
}

/* Typography */
.sub-badge-green {
    display: inline-block;
    background: rgba(10, 127, 38, 0.12);
    border: 1px solid rgba(10, 127, 38, 0.3);
    color: #13e946;
    font-size: 13px;
         font-weight: 600;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(5px);
}

.steps-heading {
    margin-bottom: 15px;
    color: var(--text-dark);
    font-size: 45px;
         font-weight: 600;
    letter-spacing: -0.7px;
}

.steps-sub {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.7;
}

/* Connecting dashed line removed */
.step-connecting-line {
    display: none !important;
}

/* Step Card Styles */
.step-card {
    position: relative;
    z-index: 2;

    height: 100%;
    padding: 50px 30px 40px;

    overflow: hidden;
    text-align: center;

    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-card);

    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-8px);

    border-color: var(--accent-color);
    box-shadow: var(--shadow-soft);
}

/* Smaller Background Number */
.step-number {
    position: absolute;
    z-index: 0;

    top: 18px;
    right: 22px;

    color: rgba(10, 127, 38, 0.12);

    font-size: 4rem;
         font-weight: 600;
    line-height: 1;

    pointer-events: none;
}

/* Icons */
.step-icon-wrapper {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    border: 5px solid var(--bg-white);
    border-radius: 50%;
    font-size: 28px;
}

.step-blue {
    color: var(--primary-color);
    background: var(--bg-blue-soft);
}

.step-green {
    color: var(--accent-color);
    background: var(--bg-soft-green);
}

.step-dark {
    color: var(--text-white);
    background: var(--primary-dark);
}

/* Card Text */
.step-title {
    position: relative;
    z-index: 2;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-size: 25px;
         font-weight: 600;
}

.step-desc {
    position: relative;
    z-index: 2;
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.7;
}

/* Tablet */
@media (max-width: 991px) {
    .wp-onboarding-steps {
        padding: 80px 0;
    }

    .steps-heading {
        font-size: 2.2rem;
    }

    .step-card {
        padding: 40px 20px;
    }

    .step-number {
        top: 16px;
        right: 18px;
        font-size: 3.5rem;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .wp-onboarding-steps {
        padding: 65px 0;
    }

    .steps-heading {
        font-size: 1.9rem;
    }

    .steps-sub {
        font-size: 15px;
    }

    .step-card {
        padding: 38px 22px 32px;
    }

    .step-number {
        top: 15px;
        right: 16px;
        font-size: 3rem;
        color: rgba(10, 127, 38, 0.10);
    }

    .step-icon-wrapper {
        width: 62px;
        height: 62px;
        font-size: 24px;
    }
}


/* =====================================================
   WORDPRESS HOSTING - BRAND NEW BALANCED FAQ SECTION
===================================================== */

.wp-faq-section {
    padding: 50px 20px;
    background-color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

/* Left Side Image Styling & Animation */
.faq-image-wrapper {
    position: relative;
    display: inline-block;
}

.faq-visual-img {
    width: 120% !important;
    max-width: 600px !important;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(11, 42, 99, 0.08));
    transform: translateX(-40px);
    /* animation: smoothFloatFaq 6s ease-in-out infinite; */
}

@keyframes smoothFloatFaq {
  
    0%, 100% { transform: translateX(-30px) translateY(0); }
    50% { transform: translateX(-30px) translateY(-15px); }
}


@media (max-width: 991px) {
    .faq-visual-img {
        transform: translateX(0); 
    }
    @keyframes smoothFloatFaq {
        0%, 100% { transform: translateX(0) translateY(0); }
        50% { transform: translateX(0) translateY(-15px); }
    }
}

/* Typography styles */
.faq-heading {
    color: var(--text-dark);
    font-size: 45px;
         font-weight: 600;
    line-height: 1.2;
    margin: 10px 0 15px;
    letter-spacing: -0.5px;
}

.faq-sub {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.6;
}

/* Modern Separated Accordion Cards */
.custom-accordion .accordion-item {
    background-color: var(--bg-white) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--border-radius-sm, 10px) !important;
    margin-bottom: 15px !important;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(11, 42, 99, 0.02) !important;
    transition: var(--transition);
}

.custom-accordion .accordion-item:hover {
    border-color: rgba(11, 42, 99, 0.2) !important;
}

.custom-accordion .accordion-button {
    background-color: transparent !important;
    color: var(--text-dark) !important;
    font-size: 18px;
         font-weight: 500;
    padding: 22px 25px !important;
    box-shadow: none !important;
}

/* Active Open Accordion State */
.custom-accordion .accordion-button:not(.collapsed) {
    color: var(--accent-color) !important;
    background-color: var(--bg-soft-green, #eef9f1) !important;
}

.custom-accordion .accordion-body {
    padding: 0 25px 25px 25px !important;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
    background-color: transparent !important;
}

/* Bootstrap Icon Color Fix (Dark blue when closed, Green when open) */
.custom-accordion .accordion-button::after {
    filter: brightness(0) saturate(100%) invert(20%) sepia(21%) saturate(2371%) hue-rotate(189deg) brightness(97%) contrast(92%);
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) saturate(100%) invert(31%) sepia(91%) saturate(1759%) hue-rotate(120deg) brightness(95%) contrast(104%);
}

/* Bottom Integrated Support Box */
.faq-inline-support {
    background: mintcream !important;
    /* border: var(--accent-color)!important; */
    padding: 20px 30px !important;
    border-radius: var(--border-radius-sm, 10px)!important;
    border: 2px solid var(--accent-color) !important;
}

.faq-chat-btn {
    display: inline-block;
    background: transparent;
    border: 2px solid var(--accent-color) !important; 
    color: var(--accent-color) !important;
         font-weight: 600;
    padding: 10px 25px;
    border-radius: 8px;
    text-decoration: none !important;
    transition: var(--transition);
}

.faq-chat-btn:hover {
    background: var(--accent-color) !important;
    color: #ffffff !important;
    box-shadow: 0 8px 20px rgba(10, 127, 38, 0.2) !important; 
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .faq-heading { font-size: 2.2rem; }
    .faq-image-wrapper { margin-bottom: 20px; }
    .faq-visual-img { max-width: 70%; }
    .custom-accordion .accordion-button { font-size: 16px; padding: 18px 20px !important; }
    .custom-accordion .accordion-body { padding: 0 20px 20px 20px !important; }
    .faq-inline-support { padding: 20px; text-align: center; }
    .faq-inline-support .d-flex { justify-content: center !important; }
}


/* ------------------------------------
   IMAGE SIZING & ALIGNMENT FIX
------------------------------------ */
.wp-pipeline-img {
    width: 130%; /* Image eka 25% kin loku karanawa */
    max-width: none; /* Bootstrap eke thiyena limit eka ain karanawa */
    margin-left: -20%; /* Wam peththata (left) thallu karanawa his ida pirenna */
    mix-blend-mode: darken; /* Sudu background eka makala blend karanawa */
    /* animation: float-wp-pipeline 6s ease-in-out infinite; */ /* Lassana floating effect ekak */
    margin-top: -30px;
}

@keyframes float-wp-pipeline {
    0%, 100% { transform: translateY(-10px); }
    50% { transform: translateY(-25px); }
}

/* Mobile Responsive Settings */
@media (max-width: 991px) {
    .wp-pipeline-img {
        width: 100%;
        margin-left: 0;
        margin-bottom: 2rem;
    }
}

/* =====================================================
   Extracted Inline Styles (WordPress Hosting)
===================================================== */
.faq-inline-support h5 {
    font-size: 16px;
}



/* =====================================================
   FINAL RESPONSIVE SAFETY NET (WordPress Hosting)
   Ensures 100% compatibility across all extreme device sizes
===================================================== */

/* Ultra-wide monitors (4K / 2K) */
@media (min-width: 1600px) {
    .wp-hero-section, 
    .wp-pricing-section, 
    .wp-tech-pipeline, 
    .wp-migration-full-section, 
    .wp-onboarding-steps, 
    .wp-faq-section {
        /* padding-top: 80px !important; */
        /* padding-bottom: 80px !important; */
        padding: 60px 20px !important;
    }
}

/* Small Mobile Devices (380px & below - e.g., iPhone SE) */
@media (max-width: 380px) {
    .wp-hero-title {
        font-size: 32px !important;
        letter-spacing: -1px !important;
    }
    
    .section-title,
    .pipeline-header h2,
    .banner-title-dark,
    .steps-heading,
    .faq-heading {
        font-size: 26px !important;
        line-height: 1.25 !important;
        white-space: normal !important;
    }

    .price-box .amount {
        font-size: 36px !important;
    }

    .wp-price-card {
        padding: 24px 20px !important;
    }

    .plan-features-list li {
        font-size: 14.5px !important;
    }

    .wp-hero-action-block {
        padding: 16px !important;
    }

    .node-icon-side {
        width: 40px !important;
        height: 40px !important;
        font-size: 18px !important;
    }

    .content-wrap-side {
        margin-left: 15px !important;
        padding: 18px !important;
    }

    .content-wrap-side h4 {
        font-size: 18px !important;
    }

    .step-card {
        padding: 30px 20px !important;
    }

    .custom-accordion .accordion-button {
        font-size: 15px !important;
        padding: 16px 18px !important;
    }

    .custom-accordion .accordion-body {
        font-size: 14px !important;
        padding: 0 18px 18px 18px !important;
    }

    .btn-wp-hero-primary,
    .btn-custom-green {
        font-size: 15px !important;
        padding: 12px 20px !important;
    }
    
    .faq-inline-support {
        padding: 16px !important;
    }
}

/* General Mobile Flex Fixes */
@media (max-width: 575.98px) {
    .wp-hero-trust {
        flex-direction: column;
        align-items: center;
        gap: 10px !important;
    }
    
    .wp-hero-action-block {
        align-items: center;
        text-align: center;
    }

    .wp-cta-group {
        width: 100%;
    }
}


/* WordPress Hero Section - Secondary Outline Button */
.btn-wp-hero-outline {
    border-width: 2px !important;
         font-weight: 600;
    
}



/* =====================================================
   ADDITIONAL CSS FOR PHASES CARDS & SCALING SECTION
===================================================== */

/* Section Spacing */
.section-header-margin {
    margin-bottom: 3rem;
}

.phase-grid-container {
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.guarantee-container {
    margin-top: 1.5rem;
}

/* Phase Cards */
.phase-card-dark {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.phase-card-dark:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Card Content Styling */
.phase-badge {
    display: inline-block;
    width: fit-content;
    margin-bottom: 1rem;
}

.phase-title {
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-size: 23px;
}

.phase-subtitle {
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 1rem;
}

.phase-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Guarantee Section Typography */
.guarantee-title {
    font-size: 45px;
    margin-bottom: 1rem;
}

.guarantee-subtitle {
    color: #86efac !important;
         font-weight: 600;
    margin-bottom: 1rem;
    font-size: 35px;
}

.guarantee-desc {
    margin-bottom: 0;
}


/* =====================================================
   ENTERPRISE ARCHITECTURE (MATRIX ROW LAYOUT)
===================================================== */
.wp-architecture-matrix-section {
    /* padding-top: 6rem; */
    /* padding-bottom: 6rem; */
    background-color: var(--bg-light); /* Matched light background */
    padding: 50px 20px;
}

.matrix-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem auto;
}

.matrix-badge {
    display: inline-block;
    background: var(--bg-soft-green);
    color: var(--accent-color);
    border: 1px solid rgba(10, 127, 38, 0.2); 
    font-size: 13px;
         font-weight: 600;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.matrix-main-title {
    font-size: 45px;
         font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.matrix-main-desc {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}



.matrix-row {
    display: flex;
    align-items: flex-start;
    padding: 50px 20px;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

/* Hover Effect Using Root Variables */
.matrix-row:hover {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-card);
    border-radius: var(--border-radius-md);
    border-bottom-color: transparent;
}

.matrix-number {
    font-size: 25px;
         font-weight: 600;
    color: var(--text-muted);
    opacity: 0.5;
    width: 8%;
    padding-top: 0.2rem;
}

.matrix-icon {
    width: 8%;
    font-size: 2.2rem;
    color: var(--accent-color);
    transition: var(--transition);
}

.matrix-row:hover .matrix-icon {
    transform: scale(1.1);
    color: var(--accent-hover);
}

.matrix-title-wrapper {
    width: 34%;
    padding-right: 3rem;
}

.matrix-title {
    font-size: 22px;
         font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.4;
}

.matrix-desc-wrapper {
    width: 50%;
}

.matrix-desc {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* Responsive Styles for Tablet and Mobile */
@media (max-width: 991px) {
    .matrix-row {
        flex-direction: column;
        padding: 2.5rem 1.5rem;
    }
    
    .matrix-number {
        font-size: 2.5rem;
        color: var(--primary-soft);
        opacity: 1;
        margin-bottom: -1rem;
        width: 100%;
    }
    
    .matrix-icon {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .matrix-title-wrapper {
        width: 100%;
        padding-right: 0;
        margin-bottom: 1rem;
    }
    
    .matrix-desc-wrapper {
        width: 100%;
    }
}


/* =========================================================
   iHoster.net
   WORDPRESS HOSTING
   FINAL ALL-DEVICE RESPONSIVE OVERRIDES

   KEEP AT ABSOLUTE END OF:
   wordpress-hosting.css
========================================================= */


/* =========================================================
   0. GLOBAL PAGE SAFETY
========================================================= */

.wordpress-hosting-page {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

.wordpress-hosting-page *,
.wordpress-hosting-page *::before,
.wordpress-hosting-page *::after {
    box-sizing: border-box;
}

.wordpress-hosting-page img,
.wordpress-hosting-page svg,
.wordpress-hosting-page video {
    max-width: 100%;
    height: auto;
}

.wordpress-hosting-page h1,
.wordpress-hosting-page h2,
.wordpress-hosting-page h3,
.wordpress-hosting-page h4,
.wordpress-hosting-page h5,
.wordpress-hosting-page p,
.wordpress-hosting-page span,
.wordpress-hosting-page a,
.wordpress-hosting-page li,
.wordpress-hosting-page strong {
    overflow-wrap: break-word;
    word-break: normal;
}


/* =========================================================
   1. ULTRA WIDE
   1600px+
========================================================= */

@media (min-width: 1600px) {

    .wordpress-hosting-page .wp-hero-section .container,
    .wordpress-hosting-page .wp-pricing-section .container-xl,
    .wordpress-hosting-page .wp-architecture-matrix-section .container,
    .wordpress-hosting-page .wp-tech-pipeline .container,
    .wordpress-hosting-page .wp-migration-full-section .container,
    .wordpress-hosting-page .wp-onboarding-steps .container,
    .wordpress-hosting-page .wp-faq-section .container {
        width: 100%;
        max-width: 1500px !important;

        padding-left: 28px;
        padding-right: 28px;
    }

    .wordpress-hosting-page .wp-hero-title {
        font-size: 58px !important;
    }

    .wordpress-hosting-page .wp-main-hero-img {
        max-width: 105%;
    }
}


/* =========================================================
   2. LARGE DESKTOP / LAPTOP
   1200px - 1599px
========================================================= */

@media (min-width: 1200px) and (max-width: 1599.98px) {

    .wordpress-hosting-page .wp-hero-section .container,
    .wordpress-hosting-page .wp-pricing-section .container-xl,
    .wordpress-hosting-page .wp-architecture-matrix-section .container,
    .wordpress-hosting-page .wp-tech-pipeline .container,
    .wordpress-hosting-page .wp-migration-full-section .container,
    .wordpress-hosting-page .wp-onboarding-steps .container,
    .wordpress-hosting-page .wp-faq-section .container {
        width: 100%;
        max-width: 1320px !important;

        padding-left: 24px;
        padding-right: 24px;
    }


    /* HERO */

    .wordpress-hosting-page .wp-hero-title {
        font-size: 49px !important;
        line-height: 1.12;
    }

    .wordpress-hosting-page .wp-hero-subtitle {
        font-size: 17px;
    }

    .wordpress-hosting-page .wp-main-hero-img {
        max-width: 100%;
    }


    /* PRICING */

    .wordpress-hosting-page .wp-price-card {
        padding: 30px 21px;
    }

    .wordpress-hosting-page .plan-name {
        font-size: 21px;
    }

    .wordpress-hosting-page .plan-features-list li {
        font-size: 14.5px;
    }


    /* MATRIX */

    .wordpress-hosting-page .matrix-main-title {
        font-size: 40px;
    }

    .wordpress-hosting-page .matrix-row {
        padding: 38px 18px;
    }

    .wordpress-hosting-page .matrix-title {
        font-size: 20px;
    }

    .wordpress-hosting-page .matrix-desc {
        font-size: 16px;
    }


    /* PIPELINE */

    .wordpress-hosting-page .pipeline-header h2 {
        font-size: 40px;
    }

    .wordpress-hosting-page .content-wrap-side {
        padding: 25px;
    }
}


/* =========================================================
   3. SMALL LAPTOP
   992px - 1199px
========================================================= */

@media (min-width: 992px) and (max-width: 1199.98px) {

    .wordpress-hosting-page .wp-hero-section .container,
    .wordpress-hosting-page .wp-pricing-section .container-xl,
    .wordpress-hosting-page .wp-architecture-matrix-section .container,
    .wordpress-hosting-page .wp-tech-pipeline .container,
    .wordpress-hosting-page .wp-migration-full-section .container,
    .wordpress-hosting-page .wp-onboarding-steps .container,
    .wordpress-hosting-page .wp-faq-section .container {
        width: 100%;
        max-width: 100% !important;

        padding-left: 28px;
        padding-right: 28px;
    }


    /* =====================================================
       HERO
    ===================================================== */

    .wordpress-hosting-page .wp-hero-section {
        padding: 55px 0 !important;
    }

    .wordpress-hosting-page .wp-hero-title {
        font-size: 42px !important;
        line-height: 1.1;
    }

    .wordpress-hosting-page .wp-hero-subtitle {
        max-width: 100%;

        font-size: 15.5px;
    }

    .wordpress-hosting-page .wp-hero-checklist li {
        font-size: 14.5px;
    }

    .wordpress-hosting-page .wp-hero-action-block {
        width: 100%;
        max-width: 100%;

        gap: 15px;
    }

    .wordpress-hosting-page .wp-cta-group {
        gap: 8px !important;
    }

    .wordpress-hosting-page .btn-wp-hero-primary,
    .wordpress-hosting-page .btn-wp-hero-outline {
        padding: 11px 14px !important;

        font-size: 13px;
    }

    .wordpress-hosting-page .wp-hero-trust {
        gap: 12px !important;
    }

    .wordpress-hosting-page .wp-hero-trust .trust-pill {
        font-size: 12px;
    }

    .wordpress-hosting-page .wp-main-hero-img {
        width: 100%;
        max-width: 100% !important;
    }


    /* =====================================================
       PRICING
    ===================================================== */

    .wordpress-hosting-page .wp-price-card {
        padding: 30px 25px;
    }

    .wordpress-hosting-page .wp-price-card.popular {
        transform: none !important;
    }


    /* =====================================================
       MATRIX
    ===================================================== */

    .wordpress-hosting-page .matrix-main-title {
        font-size: 38px;
    }

    .wordpress-hosting-page .matrix-row {
        padding: 35px 18px;
    }

    .wordpress-hosting-page .matrix-icon {
        width: 9%;
    }

    .wordpress-hosting-page .matrix-title-wrapper {
        width: 36%;

        padding-right: 25px;
    }

    .wordpress-hosting-page .matrix-desc-wrapper {
        width: 55%;
    }

    .wordpress-hosting-page .matrix-title {
        font-size: 18px;
    }

    .wordpress-hosting-page .matrix-desc {
        font-size: 15px;
    }


    /* =====================================================
       PIPELINE
    ===================================================== */

    .wordpress-hosting-page .pipeline-header h2 {
        font-size: 37px;
    }

    .wordpress-hosting-page .wp-pipeline-img {
        width: 115%;

        margin-left: -10%;
    }

    .wordpress-hosting-page .content-wrap-side {
        margin-left: 22px;

        padding: 22px;
    }

    .wordpress-hosting-page .content-wrap-side h4 {
        font-size: 19px;
    }

    .wordpress-hosting-page .content-wrap-side p {
        font-size: 14px;
    }


    /* =====================================================
       PHASES
    ===================================================== */

    .wordpress-hosting-page .phase-card-dark {
        padding: 20px;
    }

    .wordpress-hosting-page .phase-title {
        font-size: 20px;
    }

    .wordpress-hosting-page .phase-desc {
        font-size: 14px;
    }


    /* =====================================================
       ONBOARDING
    ===================================================== */

    .wordpress-hosting-page .step-card {
        padding: 38px 22px 32px;
    }

    .wordpress-hosting-page .step-title {
        font-size: 21px;
    }

    .wordpress-hosting-page .step-desc {
        font-size: 15px;
    }
}


/* =========================================================
   4. TABLET
   BELOW 992px
========================================================= */

@media (max-width: 991.98px) {

    .wordpress-hosting-page .wp-hero-section .container,
    .wordpress-hosting-page .wp-pricing-section .container-xl,
    .wordpress-hosting-page .wp-architecture-matrix-section .container,
    .wordpress-hosting-page .wp-tech-pipeline .container,
    .wordpress-hosting-page .wp-migration-full-section .container,
    .wordpress-hosting-page .wp-onboarding-steps .container,
    .wordpress-hosting-page .wp-faq-section .container {
        width: 100%;
        max-width: 100% !important;

        padding-left: 24px;
        padding-right: 24px;
    }


    /* =====================================================
       HERO
    ===================================================== */

    .wordpress-hosting-page .wp-hero-section {
        padding: 58px 0 !important;
    }

    .wordpress-hosting-page .wp-hero-section .row {
        align-items: center;
    }

    .wordpress-hosting-page .wp-hero-section .col-lg-7 {
        width: 100%;

        max-width: 760px;

        margin-left: auto;
        margin-right: auto;

        text-align: center;
    }

    .wordpress-hosting-page .wp-hero-title {
        max-width: 760px;

        margin-left: auto;
        margin-right: auto;

        font-size: clamp(39px, 6vw, 48px) !important;
        line-height: 1.1;
    }

    .wordpress-hosting-page .wp-hero-subtitle {
        max-width: 680px;

        margin-left: auto;
        margin-right: auto;

        font-size: 16px;
    }

    .wordpress-hosting-page .wp-hero-checklist {
        width: 100%;
        max-width: 620px;

        margin-left: auto;
        margin-right: auto;

        text-align: left;
    }

    .wordpress-hosting-page .wp-hero-checklist li {
        justify-content: flex-start !important;

        font-size: 15px;
    }


    /* Hero pricing CTA */

    .wordpress-hosting-page .wp-hero-action-block {
        width: 100%;
        max-width: 680px;

        margin-left: auto;
        margin-right: auto;

        justify-content: center;

        gap: 16px;
    }

    .wordpress-hosting-page .wp-cta-group {
        justify-content: center;
    }

    .wordpress-hosting-page .wp-hero-trust {
        width: 100%;
        max-width: 650px;

        margin-left: auto;
        margin-right: auto;

        justify-content: center;

        flex-wrap: wrap;
    }


    /* Hero image */

    .wordpress-hosting-page .wp-hero-visual-container {
        display: block;

        width: 100%;
        max-width: 600px;

        margin: 35px auto 0;
    }

    .wordpress-hosting-page .wp-main-hero-img {
        display: block;

        width: 100% !important;
        max-width: 560px !important;

        margin: 0 auto;

        transform: none !important;
    }

    .wordpress-hosting-page .floating-performance-card,
    .wordpress-hosting-page .floating-security-card {
        max-width: calc(100% - 30px);
    }


    /* =====================================================
       COMMON SECTION SPACING
    ===================================================== */

    .wordpress-hosting-page .wp-pricing-section,
    .wordpress-hosting-page .wp-architecture-matrix-section,
    .wordpress-hosting-page .wp-tech-pipeline,
    .wordpress-hosting-page .wp-migration-full-section,
    .wordpress-hosting-page .wp-onboarding-steps,
    .wordpress-hosting-page .wp-faq-section {
        padding-top: 70px !important;
        padding-bottom: 70px !important;
    }


    /* =====================================================
       COMMON HEADINGS
    ===================================================== */

    .wordpress-hosting-page .section-title,
    .wordpress-hosting-page .matrix-main-title,
    .wordpress-hosting-page .pipeline-header h2,
    .wordpress-hosting-page .banner-title-dark,
    .wordpress-hosting-page .steps-heading,
    .wordpress-hosting-page .faq-heading {
        font-size: 36px !important;
        line-height: 1.2 !important;

        white-space: normal !important;
    }


    /* =====================================================
       PRICING
    ===================================================== */

    .wordpress-hosting-page .wp-pricing-section .container-xl {
        max-width: 850px !important;
    }

    .wordpress-hosting-page .wp-price-card {
        width: 100%;

        min-height: auto;

        padding: 30px 25px;
    }

    .wordpress-hosting-page .wp-price-card.popular,
    .wordpress-hosting-page .wp-price-card.popular:hover {
        transform: none !important;
    }

    .wordpress-hosting-page .plan-desc {
        min-height: 0;
    }


    /* =====================================================
       ARCHITECTURE MATRIX
    ===================================================== */

    .wordpress-hosting-page .matrix-header {
        max-width: 720px;

        margin-bottom: 38px;
    }

    .wordpress-hosting-page .matrix-main-desc {
        font-size: 15px;
    }

    .wordpress-hosting-page .matrix-row {
        display: grid !important;

        grid-template-columns: 54px minmax(0, 1fr);

        gap: 6px 16px;

        padding: 25px 20px !important;
    }

    .wordpress-hosting-page .matrix-icon {
        grid-column: 1;

        width: 54px !important;

        margin: 0 !important;

        font-size: 28px;
    }

    .wordpress-hosting-page .matrix-title-wrapper {
        grid-column: 2;

        width: 100% !important;

        margin: 0 0 8px !important;

        padding: 0 !important;
    }

    .wordpress-hosting-page .matrix-desc-wrapper {
        grid-column: 2;

        width: 100% !important;
    }

    .wordpress-hosting-page .matrix-title {
        font-size: 18px;
    }

    .wordpress-hosting-page .matrix-desc {
        font-size: 14px;
        line-height: 1.7;
    }


    /* =====================================================
       PIPELINE
    ===================================================== */

    .wordpress-hosting-page .pipeline-header {
        max-width: 720px;

        margin-bottom: 40px;
    }

    .wordpress-hosting-page .pipeline-header p {
        font-size: 15px;
    }

    .wordpress-hosting-page .wp-pipeline-img {
        display: block;

        width: 100% !important;
        max-width: 540px !important;

        margin: 0 auto 35px !important;
    }

    .wordpress-hosting-page .pipeline-wrapper-side {
        width: 100%;
        max-width: 760px;

        margin: 0 auto !important;
    }

    .wordpress-hosting-page .content-wrap-side {
        min-width: 0;
    }


    /* =====================================================
       MIGRATION / SCALING
    ===================================================== */

    .wordpress-hosting-page .wp-migration-full-section {
        text-align: center;
    }

    .wordpress-hosting-page .section-header-margin {
        margin-bottom: 38px;
    }

    .wordpress-hosting-page .phase-grid-container {
        max-width: 760px;

        margin-left: auto;
        margin-right: auto;

        gap: 18px;
    }

    .wordpress-hosting-page .phase-card-dark {
        width: 100%;

        text-align: left;
    }

    .wordpress-hosting-page .guarantee-container {
        max-width: 760px;

        margin-left: auto;
        margin-right: auto;

        text-align: center;
    }

    .wordpress-hosting-page .guarantee-title {
        font-size: 36px !important;
    }

    .wordpress-hosting-page .guarantee-subtitle {
        font-size: 26px !important;
    }

    .wordpress-hosting-page .premium-migration-img {
        width: 100%;
        max-width: 480px !important;

        margin: 30px auto 0 !important;
    }


    /* =====================================================
       ONBOARDING CARDS
    ===================================================== */

    .wordpress-hosting-page .wp-onboarding-steps .row > .col-lg-4 {
        flex: 0 0 50%;

        width: 50%;
        max-width: 50%;
    }

    .wordpress-hosting-page .steps-sub {
        max-width: 680px;

        font-size: 15px;
    }

    .wordpress-hosting-page .step-card {
        min-height: 100%;

        padding: 34px 22px 28px;
    }

    .wordpress-hosting-page .step-title {
        font-size: 19px;
    }

    .wordpress-hosting-page .step-desc {
        font-size: 14px;
    }


    /* =====================================================
       FAQ
    ===================================================== */

    .wordpress-hosting-page .wp-faq-section .col-lg-8 {
        max-width: 720px;

        margin-left: auto;
        margin-right: auto;
    }

    .wordpress-hosting-page .faq-sub {
        font-size: 15px;
    }

    .wordpress-hosting-page .custom-accordion {
        width: 100%;
    }

    .wordpress-hosting-page
    .custom-accordion
    .accordion-button {
        padding: 16px 18px !important;

        font-size: 14px !important;
        line-height: 1.5;
    }

    .wordpress-hosting-page
    .custom-accordion
    .accordion-body {
        padding: 0 18px 18px !important;

        font-size: 13.5px !important;
        line-height: 1.7;
    }
}


/* =========================================================
   5. MOBILE
   BELOW 768px
========================================================= */

@media (max-width: 767.98px) {

    .wordpress-hosting-page .wp-hero-section .container,
    .wordpress-hosting-page .wp-pricing-section .container-xl,
    .wordpress-hosting-page .wp-architecture-matrix-section .container,
    .wordpress-hosting-page .wp-tech-pipeline .container,
    .wordpress-hosting-page .wp-migration-full-section .container,
    .wordpress-hosting-page .wp-onboarding-steps .container,
    .wordpress-hosting-page .wp-faq-section .container {
        padding-left: 18px;
        padding-right: 18px;
    }


    /* =====================================================
       HERO
    ===================================================== */

    .wordpress-hosting-page .wp-hero-section {
        padding: 43px 0 50px !important;

        text-align: left !important;
    }

    .wordpress-hosting-page .wp-hero-section .col-lg-7 {
        text-align: left !important;
    }

    .wordpress-hosting-page .wp-hero-title {
        width: 100%;
        max-width: 100%;

        margin-left: 0;
        margin-right: 0;

        font-size: clamp(32px, 9vw, 40px) !important;
        line-height: 1.1 !important;
        letter-spacing: -0.8px !important;
    }

    .wordpress-hosting-page .wp-hero-subtitle {
        max-width: 100%;

        margin-left: 0;
        margin-right: 0;

        font-size: 14.5px;
        line-height: 1.7;
    }

    .wordpress-hosting-page .wp-hero-checklist {
        margin-left: 0;
        margin-right: 0;
    }

    .wordpress-hosting-page .wp-hero-checklist li {
        justify-content: flex-start !important;

        font-size: 13.5px;
        line-height: 1.5;
    }


    /* HERO PRICE + BUTTONS */

    .wordpress-hosting-page .wp-hero-action-block {
        display: flex !important;

        flex-direction: column;

        width: 100% !important;

        align-items: stretch !important;

        gap: 15px !important;

        padding: 18px !important;

        text-align: left !important;
    }

    .wordpress-hosting-page .wp-price-tag {
        width: 100%;
    }

    .wordpress-hosting-page .wp-cta-group {
        display: flex !important;

        flex-direction: column;

        width: 100%;

        gap: 9px !important;
    }

    .wordpress-hosting-page .wp-cta-group a {
        display: flex;

        width: 100%;

        align-items: center;
        justify-content: center;

        margin: 0 !important;

        padding: 12px 14px !important;

        font-size: 13.5px;

        text-align: center;
    }

    .wordpress-hosting-page .wp-hero-trust {
        flex-direction: column;

        width: 100%;

        align-items: flex-start !important;
        justify-content: flex-start !important;

        gap: 9px !important;

        text-align: left;
    }

    .wordpress-hosting-page .wp-hero-trust .trust-pill {
        font-size: 12.5px;
    }


    /* HERO IMAGE */

    .wordpress-hosting-page .wp-hero-visual-container {
        width: 100%;
        max-width: 500px;

        margin-top: 25px;
    }

    .wordpress-hosting-page .wp-main-hero-img {
        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;

        transform: none !important;
    }

    .wordpress-hosting-page .floating-performance-card,
    .wordpress-hosting-page .floating-security-card {
        display: none !important;
    }


    /* =====================================================
       SECTION SPACING
    ===================================================== */

    .wordpress-hosting-page .wp-pricing-section,
    .wordpress-hosting-page .wp-architecture-matrix-section,
    .wordpress-hosting-page .wp-tech-pipeline,
    .wordpress-hosting-page .wp-migration-full-section,
    .wordpress-hosting-page .wp-onboarding-steps,
    .wordpress-hosting-page .wp-faq-section {
        padding-top: 58px !important;
        padding-bottom: 58px !important;
    }


    /* =====================================================
       COMMON TITLES
    ===================================================== */

    .wordpress-hosting-page .section-title,
    .wordpress-hosting-page .matrix-main-title,
    .wordpress-hosting-page .pipeline-header h2,
    .wordpress-hosting-page .banner-title-dark,
    .wordpress-hosting-page .steps-heading,
    .wordpress-hosting-page .faq-heading {
        font-size: 29px !important;
        line-height: 1.2 !important;

        white-space: normal !important;
    }


    /* =====================================================
       PRICING
    ===================================================== */

    .wordpress-hosting-page .wp-pricing-section .container-xl {
        max-width: 520px !important;
    }

    .wordpress-hosting-page .wp-price-card {
        width: 100%;

        min-height: auto;

        margin-bottom: 0;

        padding: 25px 20px !important;

        border-radius: 17px;
    }

    .wordpress-hosting-page .wp-price-card.popular,
    .wordpress-hosting-page .wp-price-card.popular:hover {
        transform: none !important;
    }

    .wordpress-hosting-page .popular-ribbon {
        max-width: calc(100% - 30px);

        padding: 5px 14px;

        font-size: 10px;

        white-space: normal;

        text-align: center;
    }

    .wordpress-hosting-page .plan-name {
        font-size: 20px;
    }

    .wordpress-hosting-page .plan-desc {
        min-height: 0;

        font-size: 13.5px;
    }

    .wordpress-hosting-page .price-box .amount {
        font-size: 38px !important;
    }

    .wordpress-hosting-page .plan-features-list li {
        align-items: flex-start;

        font-size: 13px !important;
        line-height: 1.5;
    }


    /* =====================================================
       ARCHITECTURE MATRIX
    ===================================================== */

    .wordpress-hosting-page .matrix-header {
        margin-bottom: 30px;
    }

    .wordpress-hosting-page .matrix-main-desc {
        font-size: 14px;
        line-height: 1.7;
    }

    .wordpress-hosting-page .matrix-row {
        display: grid !important;

        grid-template-columns: 44px minmax(0, 1fr);

        gap: 6px 12px;

        padding: 21px 14px !important;
    }

    .wordpress-hosting-page .matrix-icon {
        width: 44px !important;

        font-size: 24px;
    }

    .wordpress-hosting-page .matrix-title {
        font-size: 16px;
        line-height: 1.4;
    }

    .wordpress-hosting-page .matrix-desc {
        font-size: 13px;
        line-height: 1.65;
    }


    /* =====================================================
       PIPELINE
    ===================================================== */

    .wordpress-hosting-page .pipeline-header {
        margin-bottom: 32px;
    }

    .wordpress-hosting-page .pipeline-header p {
        font-size: 14px;
        line-height: 1.65;
    }

    .wordpress-hosting-page .wp-pipeline-img {
        width: 100% !important;
        max-width: 440px !important;

        margin: 0 auto 28px !important;
    }

    .wordpress-hosting-page .pipeline-wrapper-side {
        padding: 0;

        margin: 0 !important;
    }

    .wordpress-hosting-page .side-line {
        left: 22px;
    }

    .wordpress-hosting-page .pipeline-item-side {
        align-items: flex-start;

        margin-bottom: 18px;
    }

    .wordpress-hosting-page .node-icon-side {
        width: 46px !important;
        height: 46px !important;

        flex: 0 0 46px;

        border-width: 3px;

        font-size: 18px !important;
    }

    .wordpress-hosting-page .content-wrap-side {
        min-width: 0;

        margin-left: 12px !important;

        padding: 17px !important;

        border-radius: 15px;
    }

    .wordpress-hosting-page .content-wrap-side h4 {
        font-size: 16px !important;
    }

    .wordpress-hosting-page .content-wrap-side p {
        font-size: 12.5px;
        line-height: 1.65;
    }


    /* =====================================================
       MIGRATION / SCALING PHASES
    ===================================================== */

    .wordpress-hosting-page .wp-migration-full-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .wordpress-hosting-page .glow-orb {
        width: 500px;
        height: 500px;

        right: -300px;
    }

    .wordpress-hosting-page .section-header-margin {
        margin-bottom: 30px;
    }

    .wordpress-hosting-page .banner-text-dark {
        font-size: 14px;
        line-height: 1.7;
    }

    .wordpress-hosting-page .phase-grid-container {
        gap: 12px;
    }

    .wordpress-hosting-page .phase-card-dark {
        padding: 19px;

        border-radius: 14px;
    }

    .wordpress-hosting-page .phase-title {
        font-size: 18px;
    }

    .wordpress-hosting-page .phase-subtitle {
        font-size: 12.5px;
    }

    .wordpress-hosting-page .phase-desc {
        font-size: 13px;
        line-height: 1.65;
    }

    .wordpress-hosting-page .guarantee-container {
        margin-top: 35px;

        text-align: left;
    }

    .wordpress-hosting-page .guarantee-title {
        font-size: 27px !important;
    }

    .wordpress-hosting-page .guarantee-subtitle {
        font-size: 21px !important;
    }

    .wordpress-hosting-page .guarantee-desc {
        font-size: 13.5px;
    }

    .wordpress-hosting-page .premium-migration-img {
        display: block;

        width: 100% !important;
        max-width: 390px !important;

        margin: 25px auto 0 !important;
    }


    /* =====================================================
       ONBOARDING / DEVELOPMENT CARDS
    ===================================================== */

    .wordpress-hosting-page
    .wp-onboarding-steps
    .row
    > .col-lg-4 {
        flex: 0 0 100% !important;

        width: 100% !important;
        max-width: 100% !important;
    }

    .wordpress-hosting-page .steps-sub {
        font-size: 14px;
        line-height: 1.7;
    }

    .wordpress-hosting-page .step-card {
        min-height: auto;

        padding: 30px 20px 26px !important;

        border-radius: 17px;
    }

    .wordpress-hosting-page .step-number {
        font-size: 3rem;
    }

    .wordpress-hosting-page .step-icon-wrapper {
        width: 60px;
        height: 60px;

        margin-bottom: 18px;

        font-size: 22px;
    }

    .wordpress-hosting-page .step-title {
        font-size: 18px;
    }

    .wordpress-hosting-page .step-desc {
        font-size: 13.5px;
        line-height: 1.65;
    }


    /* =====================================================
       FAQ
    ===================================================== */

    .wordpress-hosting-page .wp-faq-section .row {
        --bs-gutter-x: 0;
    }

    .wordpress-hosting-page .faq-sub {
        font-size: 14px;
        line-height: 1.7;
    }

    .wordpress-hosting-page .custom-accordion .accordion-item {
        margin-bottom: 9px !important;

        border-radius: 12px !important;
    }

    .wordpress-hosting-page
    .custom-accordion
    .accordion-button {
        padding: 14px 15px !important;

        font-size: 13.5px !important;
        line-height: 1.5;
    }

    .wordpress-hosting-page
    .custom-accordion
    .accordion-button::after {
        flex: 0 0 auto;

        margin-left: 9px;
    }

    .wordpress-hosting-page
    .custom-accordion
    .accordion-body {
        padding: 0 15px 16px !important;

        font-size: 13px !important;
        line-height: 1.7;
    }


    /* FAQ SUPPORT */

    .wordpress-hosting-page .faq-inline-support {
        padding: 18px !important;

        text-align: left !important;
    }

    .wordpress-hosting-page
    .faq-inline-support
    > .d-flex {
        flex-direction: column;

        align-items: stretch !important;

        justify-content: flex-start !important;
    }

    .wordpress-hosting-page .faq-chat-btn {
        display: flex;

        width: 100%;

        align-items: center;
        justify-content: center;

        padding: 11px 14px;

        font-size: 13.5px;
    }
}


/* =========================================================
   6. SMALL MOBILE
   BELOW 576px
========================================================= */

@media (max-width: 575.98px) {

    .wordpress-hosting-page .wp-hero-section .container,
    .wordpress-hosting-page .wp-pricing-section .container-xl,
    .wordpress-hosting-page .wp-architecture-matrix-section .container,
    .wordpress-hosting-page .wp-tech-pipeline .container,
    .wordpress-hosting-page .wp-migration-full-section .container,
    .wordpress-hosting-page .wp-onboarding-steps .container,
    .wordpress-hosting-page .wp-faq-section .container {
        padding-left: 15px;
        padding-right: 15px;
    }


    /* HERO */

    .wordpress-hosting-page .wp-hero-title {
        font-size: clamp(30px, 9vw, 35px) !important;
    }

    .wordpress-hosting-page .wp-hero-action-block {
        padding: 15px !important;
    }

    .wordpress-hosting-page .price-value .amount {
        font-size: 31px;
    }


    /* HEADINGS */

    .wordpress-hosting-page .section-title,
    .wordpress-hosting-page .matrix-main-title,
    .wordpress-hosting-page .pipeline-header h2,
    .wordpress-hosting-page .banner-title-dark,
    .wordpress-hosting-page .steps-heading,
    .wordpress-hosting-page .faq-heading {
        font-size: 27px !important;
    }


    /* MATRIX */

    .wordpress-hosting-page .matrix-row {
        grid-template-columns: 40px minmax(0, 1fr);

        padding: 19px 10px !important;
    }

    .wordpress-hosting-page .matrix-icon {
        width: 40px !important;

        font-size: 21px;
    }


    /* PIPELINE */

    .wordpress-hosting-page .node-icon-side {
        width: 42px !important;
        height: 42px !important;

        flex-basis: 42px;
    }

    .wordpress-hosting-page .side-line {
        left: 20px;
    }

    .wordpress-hosting-page .content-wrap-side {
        margin-left: 9px !important;

        padding: 15px !important;
    }


    /* FAQ */

    .wordpress-hosting-page
    .custom-accordion
    .accordion-button {
        font-size: 13px !important;
    }
}


/* =========================================================
   7. VERY SMALL PHONES
   320px - 400px
========================================================= */

@media (max-width: 400px) {

    .wordpress-hosting-page .wp-hero-section .container,
    .wordpress-hosting-page .wp-pricing-section .container-xl,
    .wordpress-hosting-page .wp-architecture-matrix-section .container,
    .wordpress-hosting-page .wp-tech-pipeline .container,
    .wordpress-hosting-page .wp-migration-full-section .container,
    .wordpress-hosting-page .wp-onboarding-steps .container,
    .wordpress-hosting-page .wp-faq-section .container {
        padding-left: 12px;
        padding-right: 12px;
    }


    /* HERO */

    .wordpress-hosting-page .wp-hero-title {
        font-size: 28px !important;
        line-height: 1.12 !important;
    }

    .wordpress-hosting-page .wp-hero-subtitle {
        font-size: 13.5px;
    }

    .wordpress-hosting-page .wp-hero-checklist li {
        font-size: 13px;
    }

    .wordpress-hosting-page .wp-cta-group a {
        font-size: 12.5px;
    }


    /* HEADINGS */

    .wordpress-hosting-page .section-title,
    .wordpress-hosting-page .matrix-main-title,
    .wordpress-hosting-page .pipeline-header h2,
    .wordpress-hosting-page .banner-title-dark,
    .wordpress-hosting-page .steps-heading,
    .wordpress-hosting-page .faq-heading {
        font-size: 25px !important;
        line-height: 1.22 !important;
    }


    /* PRICING */

    .wordpress-hosting-page .wp-price-card {
        padding: 22px 16px !important;
    }

    .wordpress-hosting-page .price-box .amount {
        font-size: 34px !important;
    }


    /* MATRIX */

    .wordpress-hosting-page .matrix-row {
        display: block !important;

        padding: 18px 9px !important;
    }

    .wordpress-hosting-page .matrix-icon {
        width: 100% !important;

        margin-bottom: 9px !important;
    }

    .wordpress-hosting-page .matrix-title-wrapper {
        margin-bottom: 8px !important;
    }

    .wordpress-hosting-page .matrix-title {
        font-size: 15px;
    }

    .wordpress-hosting-page .matrix-desc {
        font-size: 12.5px;
    }


    /* PIPELINE */

    .wordpress-hosting-page .pipeline-item-side {
        display: block;
    }

    .wordpress-hosting-page .side-line {
        display: none;
    }

    .wordpress-hosting-page .node-icon-side {
        margin-bottom: 10px;
    }

    .wordpress-hosting-page .content-wrap-side {
        width: 100%;

        margin-left: 0 !important;

        padding: 14px !important;
    }


    /* MIGRATION */

    .wordpress-hosting-page .phase-card-dark {
        padding: 16px;
    }

    .wordpress-hosting-page .guarantee-title {
        font-size: 24px !important;
    }

    .wordpress-hosting-page .guarantee-subtitle {
        font-size: 19px !important;
    }


    /* STEP CARDS */

    .wordpress-hosting-page .step-card {
        padding: 27px 16px 23px !important;
    }


    /* FAQ */

    .wordpress-hosting-page
    .custom-accordion
    .accordion-button {
        padding: 12px !important;

        font-size: 12.5px !important;
    }

    .wordpress-hosting-page
    .custom-accordion
    .accordion-body {
        padding: 0 12px 14px !important;

        font-size: 12.5px !important;
    }
}


/* =========================================================
   8. TOUCH DEVICE HOVER SAFETY
========================================================= */

@media (hover: none) {

    .wordpress-hosting-page .wp-price-card:hover,
    .wordpress-hosting-page .phase-card-dark:hover,
    .wordpress-hosting-page .step-card:hover,
    .wordpress-hosting-page .matrix-row:hover,
    .wordpress-hosting-page .content-wrap-side:hover {
        transform: none !important;
    }
}


/* =========================================================
   9. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .wordpress-hosting-page *,
    .wordpress-hosting-page *::before,
    .wordpress-hosting-page *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;
    }

    .wordpress-hosting-page
    .wp-hero-section
    .row
    > [class*="col-"] {
        opacity: 1 !important;

        transform: none !important;
    }

    .wordpress-hosting-page .premium-migration-img {
        animation: none !important;

        transform: none !important;
    }
}
