/* =====================================================
   1. WORDPRESS HERO BANNER SECTION
   ===================================================== */

.wp-hero {
    background-color: #0d1117; 
    padding: 60px 24px 120px 24px; 
    width: 100%;
    box-sizing: border-box;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-text-col {
    display: flex;
    flex-direction: column;
}

.hero-pre-title {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    display: block;
}

.hero-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(38px, 4.5vw, 64px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin: 0 0 20px 0;
}

.hero-desc {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 18px;
    line-height: 1.6;
    color: #8b949e;
    margin: 0 0 24px 0;
}

.hero-domain {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 16px;
    color: #ffffff;
    margin: 0;
}

.hero-vector-col {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* =====================================================
   WORDPRESS IMAGE SIZING
   ===================================================== */

.wordpress-hero-image {
    display: block;
    width: 100%;
    max-width: 520px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.35));
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }
    
    .hero-vector-col {
        margin-top: 12px;
        order: -1;
    }
    
    .wp-hero {
        padding: 40px 20px 80px 20px; 
    }

    .wordpress-hero-image {
        max-width: 260px;
    }
}

/* =====================================================
   2. WORDPRESS PRICING CARDS SECTION
   ===================================================== */
.wp-pricing-section {
    background-color: #ffffff; 
    padding: 0 0 100px 0;
    width: 100%;
    box-sizing: border-box;
    border-top: 1px solid transparent; 
}

.wp-grids-container {
    max-width: 1280px; 
    margin: -100px auto 0 auto; 
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

.wp-grid-3 { 
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 32px; 
    align-items: start;
}

.wp-card {
    background-color: #ffffff;
    border: 1px solid #E5E7EB; 
    border-right: 4px solid #111827; 
    border-bottom: 4px solid #111827;
    border-radius: 0; 
    padding: 40px 28px; 
    display: flex;
    flex-direction: column;
    position: relative; 
    box-shadow: 8px 8px 0px rgba(17, 24, 39, 0.05); 
}

.card-header-info {
    display: flex;
    flex-direction: column;
}

.Vagocat-badge-recommended {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #9D00FF; 
    color: #ffffff;
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 24px;
    border-radius: 0; 
    white-space: nowrap;
    border: 1px solid #111827;
    box-shadow: 4px 4px 0px rgba(17, 24, 39, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 5;
}

.Vagocat-badge-recommended::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { box-shadow: 0 0 0 6px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.card-recommended {
    border: 1px solid #E5E7EB;
    border-right: 4px solid #9D00FF;
    border-bottom: 4px solid #9D00FF;
    transform: translateY(-16px); 
    box-shadow: 12px 12px 0px rgba(157, 0, 255, 0.08);
}

.card-name {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px 0;
}

.card-starting {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 14px;
    color: #6B7280;
    font-weight: 600;
    margin: 0 0 24px 0;
}

.card-price-wrap {
    display: flex;
    align-items: flex-start;
    margin-bottom: 32px;
}

.price-currency {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-top: 4px;
}

.price-amount {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 52px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -2px;
    color: #111827;
}

.price-term {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 15px;
    color: #6B7280;
    margin-top: auto;
    margin-bottom: 8px;
    margin-left: 4px;
}

.card-btn-outline {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 14px 0;
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 32px; 
    background-color: #D1D5DB;
    color: #111827;
    border: 1px solid transparent; 
    box-shadow: 4px 4px 0px #111827;
    border-radius: 0;
    transition: all 0.2s ease;
}

.card-btn-outline:hover { 
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #111827;
    background-color: #ffffff; 
    border: 1px solid #111827;
}

.card-recommended .card-btn-outline {
    background-color: #9D00FF;
    color: #ffffff;
}

.card-recommended .card-btn-outline:hover {
    background-color: #7b00cc;
    border: 1px solid #7b00cc;
}

.card-features {
    list-style: none;
    padding: 0; 
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: none; 
}

.card-features li {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 14px;
    line-height: 1.4;
    color: #4B5563;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-features li i {
    color: #9D00FF;
    font-size: 14px;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .wp-grid-3 {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .card-recommended {
        transform: none;
    }
}

/* =====================================================
   3. WORDPRESS PREMIUM FEATURES SECTION
   ===================================================== */
.vps-features-banner {
    background-color: #ffffff; 
    padding: 60px 24px 100px 24px; 
    width: 100%;
    box-sizing: border-box;
}

.vps-features-container {
    max-width: 1400px;
    margin: 0 auto;
}

.vps-features-main-heading {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(32px, 4vw, 48px); 
    font-weight: 700;
    color: #111827;
    text-align: center;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin: 0 0 80px 0;
}

.vps-features-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
}

.vps-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: center;
}

.vps-icon-box {
    width: 72px;
    height: 72px;
    background-color: #111827;
    border: 2px solid #111827;
    border-radius: 0; 
    box-shadow: 6px 6px 0px #D1D5DB; 
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vps-feature-item:hover .vps-icon-box {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0px #9D00FF; 
}

.vps-icon-box svg {
    width: 32px;
    height: 32px;
}

.vps-feature-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px 0;
    letter-spacing: -0.5px;
}

.vps-feature-desc {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 15px;
    line-height: 1.6;
    color: #4B5563;
    margin: 0;
}

@media (max-width: 1200px) {
    .vps-features-grid-5 {
        grid-template-columns: repeat(3, 1fr);
        gap: 60px 40px;
    }
}

@media (max-width: 768px) {
    .vps-features-grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }
    .vps-features-main-heading {
        margin-bottom: 60px;
    }
}

@media (max-width: 600px) {
    .vps-features-grid-5 {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .vps-features-banner {
        padding: 40px 20px 80px 20px;
    }
}

/* =====================================================
   4. WHY LYVORA WORDPRESS SECTION
   ===================================================== */
.wp-why-section {
    background-color: #ffffff;
    padding: 80px 24px 100px 24px;
    width: 100%;
    box-sizing: border-box;
}

.why-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-main-heading {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(48px, 6vw, 72px); 
    font-weight: 700;
    color: #111827;
    text-align: center;
    line-height: 1.1;
    letter-spacing: -2px;
    margin: 0 0 60px 0;
}

.why-split-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.why-sub-heading {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 24px 0;
    letter-spacing: -0.5px;
}

.why-paragraph {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 16px;
    line-height: 1.7;
    color: #4B5563;
    margin: 0 0 24px 0;
}

.why-stats-row {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 40px;
}

.why-stat-divider {
    height: 60px;
    width: 3px;
    background-color: #111827;
}

.why-stat-block {
    display: flex;
    flex-direction: column;
}

.stat-highlight {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1.5px;
    margin-bottom: 8px;
}

.text-purple {
    color: #9D00FF;
}

.text-black {
    color: #111827;
}

.stat-label {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 14px;
    font-weight: 600;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.why-vector-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.brutalist-wp-ecosystem {
    width: 100%;
    max-width: 450px;
    height: auto;
}

.why-grid-6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 40px;
    padding-top: 20px; 
}

.why-grid-item h4 {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px 0;
}

.why-grid-item p {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 15px;
    line-height: 1.6;
    color: #4B5563;
    margin: 0;
}

@media (max-width: 1024px) {
    .why-split-layout {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .why-stats-row {
        justify-content: center;
    }
    .why-grid-6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-grid-6 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .stat-highlight {
        font-size: 36px;
    }
}

/* =====================================================
   5. WORDPRESS SECURITY SOLUTIONS SECTION
   ===================================================== */
.wp-security-section {
    background-color: #ffffff;
    padding: 80px 24px 100px 24px;
    width: 100%;
    box-sizing: border-box;
}

.wp-sec-container {
    max-width: 1200px;
    margin: 0 auto;
}

.wp-sec-header-wrap {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px auto;
}

.wp-sec-main-heading {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 800;
    color: #111827;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin: 0 0 24px 0;
}

.wp-sec-sub-heading {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 16px;
    line-height: 1.6;
    color: #4B5563;
    margin: 0;
}

.wp-sec-split-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.wp-sec-vector-col {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.wp-sec-svg-wrapper {
    display: none;
    width: 100%;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.wp-sec-svg-wrapper.is-active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.wp-sec-accordion-col {
    display: flex;
    flex-direction: column;
}

.wp-sec-accordion-item {
    border-bottom: 2px solid #E5E7EB;
}

.wp-sec-accordion-item:last-child {
    border-bottom: none;
}

.wp-sec-accordion-header {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 28px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s ease;
}

.wp-sec-acc-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: color 0.2s ease;
}

.wp-sec-acc-title i {
    font-size: 20px;
    color: #111827;
    transition: color 0.2s ease;
}

.wp-sec-chevron {
    font-size: 18px;
    color: #6B7280;
    transition: transform 0.3s ease, color 0.2s ease;
}

.wp-sec-accordion-header:hover .wp-sec-acc-title, 
.wp-sec-accordion-header:hover .wp-sec-acc-title i {
    color: #9D00FF;
}

.wp-sec-accordion-item.is-active .wp-sec-acc-title, 
.wp-sec-accordion-item.is-active .wp-sec-acc-title i {
    color: #9D00FF;
}

.wp-sec-accordion-item.is-active .wp-sec-chevron {
    transform: rotate(180deg);
    color: #9D00FF;
}

.wp-sec-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.wp-sec-accordion-content p {
    padding: 0 0 28px 32px;
    margin: 0;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 16px;
    color: #4B5563;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .wp-sec-split-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .wp-sec-vector-col {
        order: -1;
    }
    .wp-sec-accordion-content p {
        padding-left: 0;
    }
}

/* =====================================================
   6. WORDPRESS PLAN COMPARISON MATRIX SECTION
   ===================================================== */
.Vagocat-matrix-section {
    background-color: #ffffff;
    padding: 80px 24px 120px 24px;
    width: 100%;
    box-sizing: border-box;
}

.matrix-container {
    max-width: 1200px;
    margin: 0 auto;
}

.matrix-header-wrap {
    text-align: center;
    margin-bottom: 60px;
}

.matrix-main-heading {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(38px, 5vw, 56px);
    font-weight: 700;
    color: #111827;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin: 0;
}

.matrix-main-heading span {
    color: #9D00FF;
}

/* Category Filter Tabs */
.matrix-tabs-wrapper {
    display: flex;
    width: 100%;
    margin-bottom: 48px;
    padding: 4px 24px; 
    box-sizing: border-box;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch; 
}

.matrix-tabs-wrapper::-webkit-scrollbar {
    display: none;
}

.matrix-tabs-bar {
    display: inline-flex;
    flex-wrap: nowrap;
    background-color: #ffffff;
    border-right: 3px solid #111827;
    border-bottom: 3px solid #111827;
    border-radius: 0; 
    box-shadow: 6px 6px 0px rgba(209, 213, 219, 0.6); 
    margin: 0 auto; 
}

.matrix-tab-btn {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 15px;
    font-weight: 700;
    color: #4B5563;
    background-color: transparent;
    border: none;
    border-right: 2px solid #111827;
    padding: 14px 28px;
    border-radius: 0; 
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.matrix-tab-btn:last-child {
    border-right: none;
}

.matrix-tab-btn:hover {
    background-color: #F8F9FA;
    color: #111827;
}

.matrix-tab-btn.is-active {
    background-color: #9D00FF;
    color: #ffffff;
}

/* Table Layout */
.matrix-table-wrapper {
    width: 100%;
    box-sizing: border-box;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.matrix-table-head {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background-color: transparent;
    padding: 16px 24px 32px 24px;
    align-items: center;
    border: none;
    border-bottom: 3px solid #111827;
    margin-bottom: 0;
    min-width: 800px;
}

.matrix-col-plan {
    text-align: center;
    padding: 0 16px;
}

.mp-name {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 4px 0;
}

.mp-sub {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 12px;
    color: #6B7280;
    margin: 0 0 16px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.mp-price {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 32px;
    font-weight: 800;
    color: #9D00FF; 
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.mp-price span {
    font-size: 14px;
    color: #6B7280;
    font-weight: 600;
}

.mp-buy-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 12px 0;
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    background-color: #D1D5DB;
    color: #111827;
    border: 2px solid transparent;
    box-shadow: 4px 4px 0px #111827;
    border-radius: 0;
    transition: all 0.2s ease;
}

.mp-buy-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #111827;
    background-color: #ffffff;
    border: 2px solid #111827;
}

/* Table Body */
.matrix-table-body {
    display: flex;
    flex-direction: column;
    border: none;
    background-color: transparent;
    min-width: 800px;
}

.matrix-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 20px 24px;
    align-items: center;
    border-bottom: 1px solid #E5E7EB;
    transition: background-color 0.2s ease;
}

.matrix-row:hover {
    background-color: #F8F9FA;
}

.m-row-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 8px;
}

.m-row-val {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 15px;
    font-weight: 500;
    color: #4B5563;
    text-align: center;
}

.check-yes {
    color: #10B981;
    font-size: 20px;
}

.txt-muted {
    font-size: 14px;
    color: #9CA3AF;
}

/* =====================================================
   RESPONSIVE MEDIA QUERIES (Matrix Section)
   ===================================================== */
@media (max-width: 1024px) {
    .matrix-table-head, .matrix-row {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        padding: 16px;
        min-width: 700px;
    }
    .matrix-table-body {
        min-width: 700px;
    }
}

@media (max-width: 768px) {
    .matrix-tabs-wrapper {
        justify-content: center;
        padding: 4px 16px 32px 16px;
        overflow-x: visible; 
    }
    
    .matrix-tabs-bar {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        border: none;
        box-shadow: none;
        margin: 0;
    }
    
    .matrix-tab-btn {
        font-size: 14px;
        padding: 10px 18px;
        border: 2px solid #111827 !important; 
        border-radius: 0; 
        box-shadow: 4px 4px 0px rgba(209, 213, 219, 0.6);
    }
    
    .matrix-tab-btn.is-active {
        box-shadow: 4px 4px 0px #9D00FF;
        transform: translate(-2px, -2px);
    }
    
    .matrix-table-wrapper {
        padding: 4px 24px 24px 24px;
    }
}
/* =====================================================
   7. 24/7 SUPPORT SECTION
   ===================================================== */
.Vagocat-support-section {
    background-color: #ffffff; 
    padding: 100px 24px; /* Added slight side padding for mobile overflow */
    width: 100%;
    box-sizing: border-box;
}

/* Single Unified Heading Color */
.support-massive-heading {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(40px, 6vw, 72px); 
    font-weight: 700;
    color: #111827;
    text-align: center;
    line-height: 1.1;
    letter-spacing: -2px;
    margin: 0 0 80px 0;
}

/* 4-Column Grid */
.support-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.support-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Unified Monochromatic Icon Box */
.support-geo-icon {
    width: 64px;
    height: 64px;
    background-color: #ffffff;
    border: 3px solid #111827;
    border-radius: 0; /* Squared */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 4px 4px 0px #111827;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.support-item:hover .support-geo-icon {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #111827;
}

.support-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px 0;
}

/* Muted link color replacing the bright purple */
.support-link {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 16px;
    color: #4B5563; 
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.support-link:hover {
    color: #111827;
}

/* =====================================================
   RESPONSIVE MEDIA QUERIES (Support Section)
   ===================================================== */
@media (max-width: 900px) {
    .support-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 40px;
    }
    .Vagocat-support-section {
        padding: 80px 24px;
    }
}

@media (max-width: 600px) {
    .support-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .support-massive-heading {
        margin: 0 0 60px 0;
    }
    .Vagocat-support-section {
        padding: 60px 20px;
    }
}

/* =====================================================
   8. WORDPRESS FAQ SECTION
   ===================================================== */
.Vagocat-faq-section {
    background-color: #F8F9FA; 
    padding: 100px 24px; /* Added 24px horizontal padding to prevent text from touching screen edges on mobile */
    width: 100%;
    box-sizing: border-box;
}

.faq-main-heading {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(48px, 6vw, 80px); 
    font-weight: 700;
    color: #111827;
    text-align: center;
    line-height: 1.05; 
    letter-spacing: -2px;
    margin: 0 0 80px 0;
}

.faq-subtext {
    color: #4B5563;
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 500;
    letter-spacing: normal;
}

/* 2-Column Split */
.faq-text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.faq-block h4 {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.faq-block p {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 16px;
    color: #4B5563;
    line-height: 1.6;
    margin: 0;
}

/* =====================================================
   RESPONSIVE MEDIA QUERIES (FAQ SECTION)
   ===================================================== */
@media (max-width: 900px) {
    .faq-text-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .Vagocat-faq-section {
        padding: 80px 24px;
    }
}

@media (max-width: 600px) {
    .faq-main-heading {
        margin: 0 0 60px 0;
    }
    .faq-block h4 {
        font-size: 20px;
    }
    .Vagocat-faq-section {
        padding: 60px 20px;
    }
}