/* =====================================================
   LYVORA SHARED HOSTING STYLES
   ================================================     */

/* =========================================================
   1. HERO BANNER SECTION
   ========================================================= */

.hosting-hero {
    background-color: #0d1117;
    padding: 70px 24px 180px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 50px;
    align-items: center;
    padding-bottom: 40px;
}

/* ---------------------------------------------------------
   LEFT SIDE — HERO TEXT
   --------------------------------------------------------- */

.hero-text-col {
    position: relative;
    z-index: 2;
}

.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(44px, 5.2vw, 72px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.05;
    letter-spacing: -2px;
    margin: 0 0 22px;
}

.hero-desc {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 20px;
    line-height: 1.6;
    color: #8b949e;
    max-width: 620px;
    margin: 0 0 24px;
}

.hero-domain {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 18px;
    line-height: 1.5;
    color: #ffffff;
    margin: 0;
}

.hero-domain strong {
    color: #9D00FF;
}

/* ---------------------------------------------------------
   RIGHT SIDE — SHARED HOSTING IMAGE
   --------------------------------------------------------- */

.hero-vector-col {
    width: 100%;
    min-width: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

/*
 * New shared-hosting.png graphic.
 *
 * The image already contains the cat + hosting card,
 * so no browser-window CSS is required anymore.
 */
.shared-hosting-hero-image {
    display: block;
    width: 100%;
    max-width: 700px;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
    filter: drop-shadow(0 20px 35px rgba(157, 0, 255, 0.12));
}


/* =========================================================
   2. TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .hosting-hero {
        padding: 60px 24px 160px;
    }

    .hero-container {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
        gap: 30px;
    }

    .hero-title {
        font-size: clamp(42px, 5.5vw, 62px);
    }

    .hero-desc {
        font-size: 18px;
    }

    .shared-hosting-hero-image {
        max-width: 620px;
    }
}


/* =========================================================
   3. MOBILE / TABLET STACK
   ========================================================= */

@media (max-width: 900px) {

    .hosting-hero {
        padding: 50px 24px 150px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 35px;
        padding-bottom: 20px;
        text-align: center;
    }

    .hero-text-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-title {
        max-width: 750px;
        font-size: clamp(42px, 8vw, 60px);
    }

    .hero-desc {
        max-width: 700px;
    }

    .hero-domain {
        max-width: 600px;
    }

    .hero-vector-col {
        margin-top: 5px;
    }

    .shared-hosting-hero-image {
        width: 100%;
        max-width: 720px;
    }
}


/* =========================================================
   4. SMALL MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .hosting-hero {
        padding: 40px 18px 130px;
    }

    .hero-container {
        gap: 28px;
    }

    .hero-pre-title {
        font-size: 14px;
        padding: 7px 14px;
        margin-bottom: 12px;
    }

    .hero-title {
        font-size: clamp(36px, 11vw, 50px);
        line-height: 1.08;
        letter-spacing: -1.5px;
        margin-bottom: 18px;
    }

    .hero-desc {
        font-size: 17px;
        line-height: 1.55;
        margin-bottom: 20px;
    }

    .hero-domain {
        font-size: 16px;
    }

    .shared-hosting-hero-image {
        width: 110%;
        max-width: none;
        margin-left: -5%;
    }
}


/* =========================================================
   5. VERY SMALL PHONES
   ========================================================= */

@media (max-width: 380px) {

    .hosting-hero {
        padding-left: 14px;
        padding-right: 14px;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-desc {
        font-size: 16px;
    }

    .hero-domain {
        font-size: 15px;
    }

    .shared-hosting-hero-image {
        width: 115%;
        margin-left: -7.5%;
    }
}


/* =========================================================
   6. HOSTING PRICING CARDS SECTION
   ========================================================= */

.Vagocat-hosting-section {
    background-color: #F8F9FA;
    padding: 0 0 80px;
    width: 100%;
    box-sizing: border-box;
    border-top: 1px solid transparent;
}

.hosting-grids-container {
    max-width: 1300px;
    margin: -100px auto 0;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

.hosting-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.grid-pane {
    display: none;
}

.grid-pane.is-active {
    display: grid;
    animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   7. PRICING CARD RESPONSIVENESS
   ========================================================= */

@media (max-width: 1000px) {

    .hosting-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .hosting-grids-container {
        padding: 0 16px;
        margin-top: -70px;
    }

    .hosting-grid-4 {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

.hosting-card {
    background-color: #ffffff;
    border: 1px solid #E5E7EB; 
    border-right: 4px solid #111827; 
    border-bottom: 4px solid #111827;
    border-radius: 0; 
    padding: 40px 32px; 
    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: 14px;
}

.card-features li {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 15px;
    color: #4B5563;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* 5. TRUSTPILOT REVIEW BANNER */
.Vagocat-trustpilot-banner {
    background-color: #ffffff; 
    padding: 40px 24px;
    width: 100%;
    box-sizing: border-box;
}

.tp-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.tp-text-light {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 17px;
    color: #111827;
}

.tp-text-light u {
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.tp-text-light u:hover {
    color: #00b67a;
}

.tp-text-bold {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 19px;
    font-weight: 700;
    color: #111827;
}

.tp-stars-group {
    display: flex;
    gap: 2px;
    align-items: center;
}

.tp-logo-wrap {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 12px;
}

.tp-brand-name {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    letter-spacing: -0.5px;
}

/* 6. FREE FEATURES SECTION */
.Vagocat-free-features {
    background-color: #ffffff; 
    padding: 50px 24px 100px 24px; 
    width: 100%;
    box-sizing: border-box;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-main-heading {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(40px, 6vw, 64px); 
    font-weight: 700;
    color: #111827; 
    text-align: center;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin: 0 0 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: center;
}

.Vagocat-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;
}

.feature-item:hover .Vagocat-icon-box {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0px #D1D5DB;
}

.Vagocat-icon-box svg {
    width: 32px;
    height: 32px;
}

.feature-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px 0;
    letter-spacing: -0.5px;
}

.feature-desc {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 16px;
    line-height: 1.6;
    color: #4B5563;
    margin: 0;
}

/* 7. TRUST & SCALABILITY SECTION */
.Vagocat-trust-section {
    background-color: #F8F9FA;
    padding: 100px 24px;
    width: 100%;
    box-sizing: border-box;
    border-top: 1px solid #E5E7EB;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-main-heading {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 700;
    color: #111827;
    text-align: center;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin: 0 0 80px 0;
}

.trust-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.trust-subheading {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
}

.trust-paragraph {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 18px;
    line-height: 1.6;
    color: #4B5563;
    margin: 0 0 40px 0;
}

.trust-stats-wrap {
    display: flex;
    align-items: flex-start;
    gap: 32px;
}

.stat-box {
    display: flex;
    flex-direction: column;
}

.stat-divider {
    width: 2px;
    height: 80px;
    background-color: #E5E7EB;
}

.stat-number {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 8px;
}

.stat-number.text-purple { color: #9D00FF; }
.stat-number.text-black { color: #111827; }

.stat-label {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 16px;
    color: #6B7280;
    max-width: 180px;
    line-height: 1.4;
}

.trust-vector-col {
    display: flex;
    justify-content: center;
}

.brutalist-window {
    width: 100%;
    max-width: 500px;
    background-color: #ffffff;
    border: 3px solid #111827;
    border-radius: 0;
    box-shadow: 12px 12px 0px #D1D5DB;
    overflow: hidden;
}

.b-window-header {
    background-color: #111827;
    height: 40px;
    display: flex;
    align-items: center;
    padding: 0 16px;
}

.b-dots {
    display: flex;
    gap: 8px;
}

.b-dots span {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.b-dots span:nth-child(1) { background-color: #EF4444; }
.b-dots span:nth-child(2) { background-color: #F59E0B; }
.b-dots span:nth-child(3) { background-color: #10B981; }

.b-window-body {
    display: flex;
    height: 320px;
}

.b-sidebar {
    width: 25%;
    border-right: 3px solid #111827;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.b-logo-placeholder {
    width: 100%;
    height: 24px;
    background-color: #111827;
    border-radius: 0;
    margin-bottom: 16px;
}

.b-menu-item {
    width: 100%;
    height: 12px;
    background-color: #E5E7EB;
    border-radius: 0;
}

.b-main-content {
    width: 75%;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.b-hero-block {
    width: 100%;
    height: 120px;
    background-color: #9D00FF;
    border: 3px solid #111827;
    border-radius: 0;
}

.b-grid-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    flex-grow: 1;
}

.b-card {
    background-color: #ffffff;
    border: 3px solid #111827;
    border-radius: 0;
    position: relative;
}

.b-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background-color: #FBBF24;
    border-top: 3px solid #111827;
    border-radius: 0; 
}

.trust-guarantees-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    border-top: 2px solid #E5E7EB;
    padding-top: 60px;
}

.guarantee-item h4 {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px 0;
}

.guarantee-item p {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 16px;
    line-height: 1.6;
    color: #4B5563;
    margin: 0;
}

/* 8. ONE-CLICK APPS SECTION */
.Vagocat-apps-section {
    background-color: #ffffff;
    padding: 20px 24px 80px 24px; 
    width: 100%;
    box-sizing: border-box;
    overflow: hidden; 
}

.apps-container {
    max-width: 1200px;
    margin: 0 auto;
}

.apps-banner-card {
    position: relative;
    padding: 70px 40px;
    text-align: center;
    z-index: 1; 
}

.apps-banner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #111827;
    border: 3px solid #111827;
    border-radius: 0;
    transform: rotate(-1.5deg); 
    z-index: -1; 
    box-shadow: 12px 12px 0px rgba(157, 0, 255, 0.25); 
}

.apps-heading {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px 0;
    letter-spacing: -1px;
    line-height: 1.1;
}

.apps-subtext {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 18px;
    color: #9CA3AF;
    margin: 0 0 48px 0;
}

.apps-logo-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.app-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    opacity: 0.75;
    transition: opacity 0.2s ease;
    cursor: default;
}

.app-brand:hover {
    opacity: 1; 
}

.app-brand i {
    font-size: 40px;
}

.app-brand span {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

/* 9. ADD-ONS / MUST-HAVES SECTION */
.Vagocat-journey-section {
    background-color: #ffffff;
    padding: 40px 24px 80px 24px; 
    width: 100%;
    box-sizing: border-box;
}

.journey-split-grid {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    max-width: 1300px;
    margin: 0 auto;
}

.journey-sticky-left {
    flex: 1;
    position: sticky;
    top: 120px; 
}

.journey-massive-heading {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(40px, 4.5vw, 64px); 
    font-weight: 700;
    color: #111827;
    line-height: 1.05; 
    letter-spacing: -2px;
    margin: 0 0 24px 0;
}

.journey-subtext {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 18px;
    color: #4B5563;
    line-height: 1.6;
    margin: 0 0 40px 0;
    max-width: 90%;
}

.addons-vector-container {
    width: 100%;
    max-width: 460px;
    margin-top: 20px;
    position: relative;
}

.journey-svg-wrapper {
    display: none;
    width: 100%;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.journey-svg-wrapper.is-active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.journey-accordion-oversized { 
    flex: 1.2;
    display: flex; 
    flex-direction: column; 
    gap: 24px;
}

.journey-item { 
    background: #ffffff;
    border: 3px solid #E5E7EB;
    border-radius: 0; 
    transition: all 0.3s ease;
    overflow: hidden;
}

.journey-item.is-active {
    border-color: #111827;
    box-shadow: 8px 8px 0px #111827;
}

.journey-item-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 40px; 
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}

.ji-title { 
    font-family: var(--font-heading, 'Outfit', sans-serif); 
    font-size: 28px; 
    font-weight: 700; 
    color: #6B7280; 
    transition: color 0.2s ease; 
}

.ji-chevron { 
    color: #6B7280; 
    transition: transform 0.3s ease, color 0.2s ease; 
    font-size: 20px;
}

.journey-item:hover .ji-title,
.journey-item:hover .ji-chevron {
    color: #9D00FF;
}

.journey-item.is-active .ji-title { color: #111827; }
.journey-item.is-active .ji-chevron { color: #111827; transform: rotate(90deg); }

.journey-item-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.journey-item-content p {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 18px; 
    line-height: 1.6; 
    color: #4B5563;
    margin: 0;
    padding: 0 40px 0 40px;
}

.journey-item.is-active .journey-item-content p { padding-bottom: 40px; }

/* 10. ADVANCED TECHNICAL FEATURES SECTION */
.Vagocat-advanced-section {
    background-color: #ffffff;
    padding: 60px 24px 80px 24px; 
    width: 100%;
    box-sizing: border-box;
}

.advanced-container {
    max-width: 1300px;
    margin: 0 auto;
}

.advanced-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 80px;
    align-items: center;
}

.advanced-left-col {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.advanced-callout-card {
    position: relative;
    background-color: #111827;
    border: 3px solid #111827;
    border-radius: 0; 
    padding: 60px 40px;
    width: 100%;
    transform: rotate(-1.5deg);
    box-shadow: 12px 12px 0px rgba(157, 0, 255, 0.25);
    box-sizing: border-box;
}

.callout-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(38px, 4vw, 52px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin: 0;
}

.callout-title .text-highlight {
    color: #9D00FF;
}

.advanced-heading {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(34px, 4.5vw, 46px); 
    font-weight: 700;
    color: #111827;
    margin: 0 0 32px 0;
    letter-spacing: -1px;
    line-height: 1.15;
}

.advanced-lists-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 40px;
    margin-bottom: 48px;
}

.advanced-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.advanced-list li {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 16px;
    color: #4B5563;
    display: flex;
    align-items: center;
    gap: 12px;
}

.advanced-list li i {
    font-size: 14px;
}

.advanced-info-box {
    border-top: 2px solid #E5E7EB;
    padding-top: 32px;
}

.info-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px 0;
}

.info-link {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 16px;
    font-weight: 600;
    color: #9D00FF;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s ease, color 0.2s ease;
}

.info-link:hover {
    color: #7b00cc;
    gap: 12px;
}

/* 11. PLAN COMPARISON MATRIX SECTION */
.Vagocat-matrix-section {
    background-color: #ffffff;
    padding: 60px 24px 100px 24px;
    width: 100%;
    box-sizing: border-box;
}

.matrix-container {
    max-width: 1200px;
    margin: 0 auto;
}

.matrix-header-wrap {
    text-align: center;
    margin-bottom: 40px;
}

.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;
}

.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-top: none;
    border-left: none;
    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;
}

.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;
    box-shadow: none;
    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: 22px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 4px 0;
}

.mp-sub {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 11px;
    color: #6B7280;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.mp-price {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 28px;
    font-weight: 700;
    color: #9D00FF; 
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.mp-price span {
    font-size: 13px;
    color: #6B7280;
    font-weight: 500;
}

.mp-buy-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 10px 0;
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    background-color: #D1D5DB;
    color: #111827;
    border: 1px 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: 1px solid #111827;
}

.matrix-table-body {
    display: flex;
    flex-direction: column;
    border: none;
    background-color: transparent;
    overflow: visible;
    min-width: 800px;
}

.matrix-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 18px 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: 15px;
    font-weight: 600;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tooltip-icon {
    font-size: 13px;
    color: #9CA3AF;
    cursor: pointer;
}

.m-row-val {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 14px;
    color: #4B5563;
    text-align: center;
}

.check-yes {
    color: #10B981;
    font-size: 18px;
    font-weight: 700;
}

.txt-muted {
    font-size: 13px;
    color: #6B7280;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1200px) {
    .hosting-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .hosting-hero {
        padding-bottom: 220px; 
    }
    .hosting-grids-container {
        margin: -100px auto 0 auto; 
    }
    .card-recommended {
        transform: translateY(0); 
    }
}

@media (max-width: 1024px) {
    .journey-split-grid {
        flex-direction: column;
        gap: 60px;
    }
    .journey-sticky-left {
        position: relative;
        top: 0;
        width: 100%;
    }
    .journey-subtext {
        max-width: 100%;
    }
    .addons-vector-container {
        display: none;
    }
    .journey-accordion-oversized {
        width: 100%;
    }
    .advanced-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .advanced-callout-card {
        max-width: 500px;
        margin: 0 auto;
    }
    .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: 900px) {
    .hero-container, .trust-split-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
    .hero-vector-col {
        order: -1;
        max-width: 80%;
        margin: 0 auto;
    }
    .trust-stats-wrap {
        justify-content: center;
    }
    .trust-guarantees-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
        padding-top: 40px;
    }
    .tp-container {
        flex-direction: column; 
        gap: 12px;
        text-align: center;
    }
    .tp-logo-wrap {
        margin-left: 0;
        margin-top: 8px;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 40px;
    }
    .features-main-heading, .trust-main-heading {
        margin: 0 0 60px 0;
    }
    .apps-banner-card {
        padding: 40px 24px;
    }
    .apps-logo-row {
        gap: 32px;
    }
    .app-brand i {
        font-size: 32px;
    }
    .app-brand span {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .hosting-grid-4 {
        grid-template-columns: 1fr;
    }
    .hosting-hero {
        padding: 40px 20px 180px 20px;
    }
    .hero-title {
        font-size: 40px;
    }
    .hosting-grids-container {
        margin: -60px auto 0 auto;
    }
    .advanced-lists-wrap {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .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;
        min-width: auto;
    }
    .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);
        flex-shrink: initial; 
    }
    .matrix-tab-btn.is-active {
        box-shadow: 4px 4px 0px #9D00FF;
        transform: translate(-2px, -2px);
    }
    .matrix-table-wrapper {
        padding: 4px 24px 24px 24px;
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    .Vagocat-free-features {
        padding: 40px 20px 80px 20px;
    }
    .Vagocat-trust-section {
        padding: 60px 20px;
    }
    .brutalist-window {
        box-shadow: 8px 8px 0px #D1D5DB;
    }
    .Vagocat-apps-section {
        padding: 20px 20px 60px 20px;
    }
    .apps-logo-row {
        gap: 24px;
        flex-direction: column; 
    }
    .Vagocat-journey-section {
        padding: 60px 20px;
    }
    .journey-item-header {
        padding: 24px 20px;
    }
    .ji-title {
        font-size: 22px;
    }
    .journey-item-content p {
        padding: 0 20px 20px 20px;
        font-size: 16px;
    }
    .Vagocat-advanced-section {
        padding: 40px 20px 60px 20px;
    }
    .advanced-callout-card {
        padding: 40px 24px;
        transform: rotate(0deg); 
    }
}

/* 12. 24/7 SUPPORT SECTION */
.Vagocat-support-section {
    background-color: #ffffff; 
    padding: 100px 24px; 
    width: 100%;
    box-sizing: border-box;
}

.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;
}

.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;
}

.support-geo-icon {
    width: 64px;
    height: 64px;
    background-color: #ffffff;
    border: 3px solid #111827;
    border-radius: 0;
    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;
}

.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;
}

@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;
    }
}

/* 13. FAQ SECTION */
.Vagocat-faq-section {
    background-color: #F8F9FA; 
    padding: 100px 24px;
    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-family: var(--font-body, 'Inter', sans-serif);
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 500;
    letter-spacing: normal;
    display: block;
    margin-top: 12px;
}

.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;
}

@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;
    }
}