/* =====================================================
   VAGOCAT VPS HOSTING STYLES
   ===================================================== */

/* =====================================================
   1. VPS HERO BANNER SECTION
   ===================================================== */
.vps-hero {
    background-color: #0d1117; 
    padding: 60px 24px 180px 24px; 
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.vps-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

/* Typography & Copy */
.vps-pre-title {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    display: inline-block;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.vps-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(38px, 5vw, 72px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.05;
    letter-spacing: -2px;
    margin: 0 0 24px 0;
}

.vps-desc {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 18px;
    line-height: 1.6;
    color: #8b949e;
    margin: 0 0 40px 0;
    max-width: 90%;
}

.vps-cta-btn {
    display: inline-block;
    background-color: #D1D5DB; 
    color: #111827;
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 18px;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 0;
    text-decoration: none;
    border: 1px solid transparent; 
    box-shadow: 6px 6px 0px #111827;
    transition: transform 0.1s ease, box-shadow 0.1s ease, background-color 0.2s ease, border 0.2s ease;
}

.vps-cta-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0px #111827;
    background-color: #ffffff;
    border: 1px solid #111827; 
}

/* Brutalist CSS Server Rack Vector */
.vps-hero-vector {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.brutalist-server-rack {
    width: 100%;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transform: perspective(800px) rotateY(-15deg);
    transition: transform 0.3s ease;
}

.server-node {
    background-color: #F8F9FA;
    border: 4px solid #111827;
    border-radius: 8px;
    height: 80px;
    display: flex;
    box-shadow: 12px 12px 0px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.server-node.active-node {
    background-color: #111827;
    border-color: #9D00FF;
    box-shadow: 12px 12px 0px rgba(157, 0, 255, 0.4);
    transform: translateX(-16px);
}

.node-front {
    width: 35%;
    border-right: 4px solid #111827;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 16px;
    gap: 12px;
}

.active-node .node-front {
    border-right-color: #9D00FF;
}

.node-lights {
    display: flex;
    gap: 8px;
}

.node-lights .light {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 2px solid #111827;
}

.active-node .node-lights .light {
    border-color: #ffffff;
}

.light.green { background-color: #10B981; }
.light.silver { background-color: #D1D5DB; }
.light.purple { background-color: #9D00FF; }

.pulse {
    animation: blink 2s infinite;
}
.delay {
    animation-delay: 1s;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.node-branding {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 14px;
    font-weight: 800;
    color: #111827;
}

.text-white {
    color: #ffffff;
}

.node-vents {
    flex-grow: 1;
    background: repeating-linear-gradient(
        90deg,
        #E5E7EB,
        #E5E7EB 6px,
        transparent 6px,
        transparent 12px
    );
    margin: 12px;
}

.node-vents.active-vents {
    background: repeating-linear-gradient(
        90deg,
        #374151,
        #374151 6px,
        transparent 6px,
        transparent 12px
    );
}

/* =====================================================
   2. OVERLAPPING PRICING CARDS (3-Column Layout)
   ===================================================== */
.vps-pricing-section {
    background-color: #ffffff; 
    padding: 0 0 80px 0;
    width: 100%;
    box-sizing: border-box;
    border-top: 1px solid transparent; 
}

.vps-pricing-container {
    max-width: 1100px;
    margin: -100px auto 0 auto; 
    padding: 0 24px;
    position: relative;
    z-index: 10;
    box-sizing: border-box;
}

.vps-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
}

/* Card Styles */
.vps-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); 
    box-sizing: border-box;
}

.vps-card-header {
    margin-bottom: 24px;
}

.vps-plan-name {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px 0;
}

.vps-badge {
    display: inline-block;
    background-color: #D1D5DB;
    color: #111827;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 13px;
    font-weight: 700;
    padding: 4px 12px;
    border: 2px solid #111827;
    border-radius: 0;
}

.badge-purple {
    background-color: #9D00FF;
    color: #ffffff;
}

.vps-price-wrap {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
}

.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;
}

.vps-renews {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 14px;
    color: #6B7280;
    font-weight: 600;
    margin: 0 0 32px 0;
}

/* Card Button */
.vps-card-btn {
    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;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

.vps-card-btn:hover { 
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #111827;
    background-color: #ffffff; 
    border: 1px solid #111827; 
}

/* Recommended Badge */
.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); }
}

.vps-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);
}

.vps-card-recommended .vps-card-btn {
    background-color: #9D00FF;
    color: #ffffff;
}

.vps-card-recommended .vps-card-btn:hover {
    background-color: #7b00cc;
    border: 1px solid #7b00cc;
}

/* Features List */
.vps-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.vps-features li {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 15px;
    color: #4B5563;
    display: flex;
    align-items: center;
    gap: 12px;
}

.vps-features strong {
    color: #111827;
    font-weight: 700;
}

/* =====================================================
   3. FREE VPS FEATURES SECTION
   ===================================================== */
.vps-features-banner {
    background-color: #ffffff; 
    padding: 80px 24px 100px 24px; 
    width: 100%;
    box-sizing: border-box;
}

.vps-features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

.vps-features-main-heading {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(30px, 4vw, 48px); 
    font-weight: 700;
    color: #111827;
    text-align: center;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin: 0 0 60px 0;
}

.vps-features-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    width: 100%;
    box-sizing: border-box;
}

.vps-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.vps-icon-box {
    width: 68px;
    height: 68px;
    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: 20px;
    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: 30px;
    height: 30px;
}

.vps-feature-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 10px 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;
}

/* =====================================================
   4. WHY VAGOCAT VPS SECTION
   ===================================================== */
.vps-why-section {
    background-color: #F8F9FA;
    padding: 90px 24px;
    width: 100%;
    box-sizing: border-box;
}

.vps-why-container {
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.vps-why-header-wrap {
    text-align: center;
    margin-bottom: 50px;
}

.vps-why-main-heading {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(32px, 4.5vw, 60px);
    font-weight: 700;
    color: #111827;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin: 0;
}

.vps-why-grid-top {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 70px;
    width: 100%;
    box-sizing: border-box;
}

.vps-why-text-col {
    width: 100%;
    box-sizing: border-box;
}

.vps-why-subheading {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 18px 0;
    letter-spacing: -0.5px;
}

.vps-why-desc {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 17px;
    line-height: 1.6;
    color: #4B5563;
    margin: 0 0 36px 0;
}

.vps-stats-row {
    display: flex;
    align-items: center;
    gap: 32px;
}

.vps-stat-box {
    display: flex;
    flex-direction: column;
}

.vps-stat-divider {
    width: 2px;
    height: 50px;
    background-color: #E5E7EB;
}

.vps-stat-num {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 38px;
    font-weight: 700;
    color: #9D00FF;
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 6px;
}

.vps-stat-label {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 14px;
    color: #6B7280;
    font-weight: 600;
}

.vps-why-visual-col {
    display: flex;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
}

.vps-mini-nodes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
    max-width: 440px;
    box-sizing: border-box;
}

.vps-mini-node-card {
    background-color: #ffffff;
    border: 3px solid #111827;
    border-radius: 0;
    padding: 16px;
    height: 110px;
    box-shadow: 6px 6px 0px rgba(17, 24, 39, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

.vps-mini-node-card:nth-child(even) {
    box-shadow: 6px 6px 0px rgba(157, 0, 255, 0.25);
    border-color: #9D00FF;
}

.vps-node-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #E5E7EB;
    padding-bottom: 6px;
}

.vps-node-tag {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 11px;
    font-weight: 800;
    color: #111827;
    background-color: #F3F4F6;
    padding: 2px 6px;
}

.vps-node-lights {
    display: flex;
    gap: 4px;
}

.vps-node-lights span {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #D1D5DB;
    border: 1px solid #111827;
}

.vps-mini-node-card:nth-child(even) .vps-node-lights span:first-child {
    background-color: #9D00FF;
}

.vps-node-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.vps-node-bar {
    height: 6px;
    background-color: #E5E7EB;
    width: 80%;
}

.vps-node-bar.highlight {
    width: 45%;
    background-color: #111827;
}

.vps-mini-node-card:nth-child(even) .vps-node-bar.highlight {
    background-color: #9D00FF;
}

.vps-why-features-grid-3x2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding-top: 10px;
    width: 100%;
    box-sizing: border-box;
}

.vps-wf-item {
    width: 100%;
    box-sizing: border-box;
}

.vps-wf-item h4 {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px 0;
}

.vps-wf-item p {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 15px;
    line-height: 1.6;
    color: #4B5563;
    margin: 0;
}

/* =====================================================
   5. TOP USES FOR VPS CONTROL SECTION
   ===================================================== */
.vps-uses-section {
    background-color: #ffffff;
    padding: 90px 24px;
    width: 100%;
    box-sizing: border-box;
    border-top: 1px solid #E5E7EB;
}

.vps-uses-container {
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.vps-uses-header {
    text-align: center;
    margin-bottom: 50px;
}

.vps-uses-main-heading {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(32px, 4.5vw, 60px);
    font-weight: 700;
    color: #111827;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin: 0;
}

.vps-uses-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.vps-uses-visual-col {
    display: flex;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
}

.vps-uses-window {
    width: 100%;
    max-width: 480px;
    background-color: #ffffff;
    border: 4px solid #111827;
    border-radius: 0;
    box-shadow: 10px 10px 0px #111827;
    overflow: hidden;
    box-sizing: border-box;
}

.vps-uw-header {
    background-color: #111827;
    height: 44px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 16px;
}

.vps-uw-dots {
    display: flex;
    gap: 6px;
}

.vps-uw-dots span {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #D1D5DB;
}

.vps-uw-dots span:nth-child(1) { background-color: #EF4444; }
.vps-uw-dots span:nth-child(2) { background-color: #F59E0B; }
.vps-uw-dots span:nth-child(3) { background-color: #10B981; }

.vps-uw-url {
    background-color: #1f2937;
    color: #9CA3AF;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 12px;
    padding: 2px 12px;
    border-radius: 0;
    flex-grow: 1;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vps-uw-body {
    min-height: 260px;
    background-color: #F8F9FA;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-sizing: border-box;
}

.vps-uw-pane {
    position: absolute;
    inset: 20px;
    display: none;
    flex-direction: column;
    justify-content: center;
    animation: fadeInPane 0.3s ease forwards;
}

.vps-uw-pane.is-active {
    display: flex;
}

@keyframes fadeInPane {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.vps-mock-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vps-mock-row {
    background-color: #ffffff;
    border: 3px solid #111827;
    padding: 10px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 4px 4px 0px #111827;
}

.vps-mock-row span {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 12px;
    font-weight: 800;
}

.vps-mock-bar {
    width: 50%;
    height: 8px;
    background-color: #E5E7EB;
}

.vps-mock-row .highlight {
    background-color: #9D00FF;
}

.vps-mock-store-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.vps-msc-card {
    background-color: #ffffff;
    border: 3px solid #111827;
    padding: 16px;
    text-align: center;
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 13px;
    font-weight: 800;
    box-shadow: 4px 4px 0px #111827;
}

.vps-msc-card.active {
    background-color: #9D00FF;
    color: #ffffff;
}

.vps-mock-metrics {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vps-mm-box {
    background-color: #ffffff;
    border: 3px solid #111827;
    padding: 14px;
    box-shadow: 4px 4px 0px #111827;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 13px;
    font-weight: 800;
}

.vps-mm-fill {
    width: 90%;
    height: 8px;
    background-color: #111827;
}

.vps-mm-fill.purple {
    width: 65%;
    background-color: #9D00FF;
}

.vps-uses-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    box-sizing: border-box;
}

.vps-use-item {
    background-color: #ffffff;
    border: 3px solid #E5E7EB;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.vps-use-item.is-active {
    border-color: #111827;
    box-shadow: 6px 6px 0px #111827;
    background-color: #F8F9FA;
}

.vps-use-header-btn {
    width: 100%;
    background: transparent;
    border: none;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    box-sizing: border-box;
}

.vps-use-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 20px;
    font-weight: 700;
    color: #6B7280;
    transition: color 0.2s ease;
}

.vps-use-item.is-active .vps-use-title {
    color: #111827;
}

.vps-use-icon {
    font-size: 18px;
    color: #6B7280;
    font-weight: bold;
    transition: transform 0.3s ease, color 0.2s ease;
}

.vps-use-item.is-active .vps-use-icon {
    color: #111827;
    transform: rotate(-180deg);
}

.vps-use-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
    box-sizing: border-box;
}

.vps-use-item.is-active .vps-use-content {
    max-height: 250px;
    padding-bottom: 20px;
}

.vps-use-content p {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 15px;
    line-height: 1.6;
    color: #4B5563;
    margin: 0;
}

/* =====================================================
   6. ADVANCED TECHNICAL FEATURES SECTION
   ===================================================== */
.vps-advanced-section {
    background-color: #ffffff;
    padding: 90px 24px;
    width: 100%;
    box-sizing: border-box;
}

.vps-advanced-container {
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.vps-advanced-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 50px;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.vps-advanced-text-col {
    width: 100%;
    box-sizing: border-box;
}

.vps-advanced-heading {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    color: #111827;
    line-height: 1.15;
    letter-spacing: -1px;
    margin: 0 0 28px 0;
}

.vps-advanced-lists-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 28px;
    margin-bottom: 36px;
    width: 100%;
    box-sizing: border-box;
}

.vps-adv-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vps-adv-list li {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 15px;
    color: #4B5563;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vps-adv-list li i {
    color: #9D00FF;
    font-size: 12px;
}

.vps-advanced-info-box {
    border-top: 2px solid #E5E7EB;
    padding-top: 24px;
}

.vps-info-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px 0;
}

.vps-info-link {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 15px;
    font-weight: 600;
    color: #9D00FF;
    text-decoration: none;
    display: inline-block;
    transition: color 0.2s ease;
}

.vps-info-link:hover {
    color: #7b00cc;
    text-decoration: underline;
}

.vps-advanced-visual-col {
    display: flex;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
}

.vps-advanced-callout-card {
    background-color: #111827;
    border: 4px solid #111827;
    border-radius: 0;
    padding: 48px 36px;
    width: 100%;
    max-width: 440px;
    transform: rotate(-1.5deg);
    box-shadow: 10px 10px 0px rgba(157, 0, 255, 0.25);
    box-sizing: border-box;
}

.vps-callout-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -1px;
    margin: 0;
}

.vps-callout-title .text-highlight {
    color: #9D00FF;
}

/* =====================================================
   7. VPS PLAN COMPARISON MATRIX SECTION
   ===================================================== */
.vps-matrix-section {
    background-color: #ffffff;
    padding: 60px 24px 100px 24px;
    width: 100%;
    box-sizing: border-box;
}

.vps-matrix-container {
    max-width: 1200px;
    margin: 0 auto;
}

.vps-matrix-header-wrap {
    text-align: center;
    margin-bottom: 40px;
}

.vps-matrix-main-heading {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(32px, 4.5vw, 54px);
    font-weight: 700;
    color: #111827;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin: 0;
}

.vps-matrix-tabs-wrapper {
    display: flex;
    width: 100%;
    margin-bottom: 36px;
    box-sizing: border-box;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch; 
}

.vps-matrix-tabs-wrapper::-webkit-scrollbar {
    display: none;
}

.vps-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; 
}

.vps-matrix-tab-btn {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 14px;
    font-weight: 700;
    color: #4B5563;
    background-color: transparent;
    border: none;
    border-right: 2px solid #111827;
    padding: 12px 24px;
    border-radius: 0; 
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.vps-matrix-tab-btn:last-child {
    border-right: none;
}

.vps-matrix-tab-btn:hover {
    background-color: #F8F9FA;
    color: #111827;
}

.vps-matrix-tab-btn.is-active {
    background-color: #9D00FF;
    color: #ffffff;
}

.vps-matrix-table-wrapper {
    width: 100%;
    box-sizing: border-box;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.vps-matrix-table-head {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background-color: transparent;
    padding: 16px 20px 28px 20px;
    align-items: center;
    border-bottom: 3px solid #111827;
    min-width: 720px;
    box-sizing: border-box;
}

.vps-matrix-col-plan {
    text-align: center;
    padding: 0 12px;
}

.vps-mp-name {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 4px 0;
}

.vps-mp-price {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 26px;
    font-weight: 700;
    color: #9D00FF; 
    margin-bottom: 14px;
    letter-spacing: -1px;
}

.vps-mp-price span { 
    font-size: 13px; 
    color: #6B7280; 
    font-weight: 500;
}

.vps-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: 14px;
    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;
}

.vps-mp-buy-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #111827;
    background-color: #ffffff;
    border: 1px solid #111827;
}

.vps-mp-buy-btn.btn-purple {
    background-color: #9D00FF;
    color: #ffffff;
    box-shadow: 4px 4px 0px #111827;
}

.vps-mp-buy-btn.btn-purple:hover {
    background-color: #8a00e0;
    border: 1px solid #111827;
    color: #ffffff;
}

.vps-matrix-table-body {
    display: flex;
    flex-direction: column;
    border: none;
    background-color: transparent;
    overflow: visible;
    min-width: 720px;
}

.vps-matrix-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 16px 20px;
    align-items: center;
    border-bottom: 1px solid #E5E7EB;
    transition: background-color 0.2s ease;
}

.vps-matrix-row:last-child { 
    border-bottom: none; 
}

.vps-matrix-row:hover { 
    background-color: #F8F9FA; 
}

.vps-m-row-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 15px;
    font-weight: 600;
    color: #111827;
}

.vps-m-row-val {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 14px;
    color: #4B5563;
    text-align: center;
}

.vps-check-yes {
    color: #10B981;
    font-size: 18px;
    font-weight: 700;
}

.txt-muted { 
    font-size: 13px; 
    color: #6B7280; 
    font-weight: 600; 
}

/* =====================================================
   8. 24/7 SUPPORT SECTION
   ===================================================== */
.Vagocat-support-section {
    background-color: #ffffff; 
    padding: 90px 0;
    width: 100%;
    box-sizing: border-box;
}

.support-massive-heading {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(32px, 5vw, 64px); 
    font-weight: 700;
    color: #111827;
    text-align: center;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin: 0 0 60px 0;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.support-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.support-geo-icon {
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    border: 3px solid #111827;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    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: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px 0;
}

.support-link {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 15px;
    color: #4B5563; 
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.support-link:hover {
    color: #111827;
}

/* =====================================================
   9. FAQ SECTION
   ===================================================== */
.Vagocat-faq-section {
    background-color: #F8F9FA; 
    padding: 90px 0;
    width: 100%;
    box-sizing: border-box;
}

.faq-main-heading {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(32px, 5vw, 64px); 
    font-weight: 700;
    color: #111827;
    text-align: center;
    line-height: 1.05; 
    letter-spacing: -1.5px;
    margin: 0 0 60px 0;
}

.faq-text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.faq-block h4 {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 10px 0;
}

.faq-block p {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 15px;
    color: #4B5563;
    line-height: 1.6;
    margin: 0;
}

/* =====================================================
   10. GLOBAL RESPONSIVE MEDIA QUERIES
   ===================================================== */

@media (max-width: 1100px) {
    .vps-features-grid-5 {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }
}

@media (max-width: 1024px) {
    .vps-grid-3 {
        grid-template-columns: repeat(2, 1fr);
        max-width: 760px;
        margin: 0 auto;
    }
    .vps-card-recommended {
        transform: translateY(0);
    }
    .vps-why-grid-top,
    .vps-advanced-grid,
    .vps-uses-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .vps-why-text-col,
    .vps-advanced-text-col {
        text-align: center;
    }
    .vps-why-desc {
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
    .vps-stats-row {
        justify-content: center;
    }
    .vps-advanced-lists-wrap {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }
}

@media (max-width: 900px) {
    .vps-hero {
        padding: 50px 20px 180px 20px;
    }
    .vps-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }
    .vps-desc {
        margin: 0 auto 32px auto;
        max-width: 100%;
    }
    .brutalist-server-rack {
        transform: none;
        margin: 0 auto;
    }
    .vps-features-grid-5 {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px 24px;
    }
    .vps-why-features-grid-3x2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 24px;
    }
    .support-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px 32px;
        padding: 0 24px;
    }
    .faq-text-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 0 24px;
    }
    .vps-uses-window {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .vps-hero {
        padding: 40px 16px 60px 16px;
    }
    .vps-pricing-container {
        margin-top: 0 !important;
        padding: 0 16px;
    }
    .vps-grid-3 {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
        gap: 36px;
    }
    .vps-card {
        padding: 32px 20px;
    }
    .vps-features-banner,
    .vps-why-section,
    .vps-uses-section,
    .vps-advanced-section,
    .Vagocat-support-section,
    .Vagocat-faq-section {
        padding: 60px 16px;
    }
    .vps-features-main-heading,
    .vps-why-main-heading,
    .vps-uses-main-heading,
    .vps-advanced-heading,
    .support-massive-heading,
    .faq-main-heading {
        font-size: clamp(26px, 7vw, 36px);
        margin-bottom: 36px;
        letter-spacing: -1px;
    }
    .vps-features-grid-5 {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .vps-why-features-grid-3x2 {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    .vps-matrix-tabs-wrapper {
        padding: 4px 0 24px 0;
    }
    .vps-matrix-tabs-bar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        background-color: transparent;
        border: none;
        box-shadow: none;
        width: 100%;
    }
    .vps-matrix-tab-btn {
        border: 2px solid #111827 !important;
        box-shadow: 4px 4px 0px rgba(209, 213, 219, 0.6);
        white-space: normal;
        line-height: 1.2;
        padding: 10px 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
        font-size: 13px;
    }
}

@media (max-width: 600px) {
    .vps-title {
        font-size: clamp(28px, 8vw, 38px);
        letter-spacing: -1px;
    }
    .vps-desc {
        font-size: 15px;
    }
    .vps-cta-btn {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
        box-sizing: border-box;
    }
    .server-node {
        height: 70px;
    }
    .node-front {
        padding: 0 10px;
        gap: 8px;
    }
    .node-branding {
        font-size: 12px;
    }
    .vps-stats-row {
        flex-direction: column;
        gap: 16px;
    }
    .vps-stat-divider {
        display: none;
    }
    .vps-mini-nodes-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 100%;
    }
    .vps-uses-window {
        box-shadow: 6px 6px 0px #111827;
    }
    .vps-use-header-btn {
        padding: 14px 16px;
    }
    .vps-use-title {
        font-size: 17px;
    }
    .vps-advanced-lists-wrap {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 100%;
    }
    .vps-advanced-callout-card {
        padding: 32px 20px;
        transform: none;
        box-shadow: 6px 6px 0px rgba(157, 0, 255, 0.25);
    }
    .support-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0;
    }
    .faq-text-grid {
        padding: 0;
        gap: 28px;
    }
}