/* =============================================
   VPS.CSS — DONHOSTER
   Page-specific styles for vps.html
   Pure CSS, no external frameworks
   ============================================= */

/* ========================================
   HERO SECTION
   ======================================== */

.vps-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #6B3DBB 0%, #4C1D95 50%, #1E3A8A 100%);
    padding: 80px 20px;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?w=1920&q=70');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
}

.hero-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(107,61,187,0.6) 0%, rgba(76,29,149,0.8) 100%);
}

.vps-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
}

/* Uptime badge */
.uptime-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #10B981;
    border-radius: 50%;
    display: inline-block;
    animation: pulse-green 2s infinite;
    flex-shrink: 0;
}

@keyframes pulse-green {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}

/* Hero heading */
.vps-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
    line-height: 1.15;
}

.gradient-text-yellow {
    background: linear-gradient(135deg, #FCD34D 0%, #F97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

/* Hero subtitle */
.vps-hero-subtitle {
    font-size: clamp(1.0625rem, 2.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 36px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.vps-hero-subtitle strong {
    color: #FCD34D;
    font-weight: 700;
}

/* CTA buttons */
.vps-hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.btn-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 36px;
    font-size: 1.0625rem;
    font-weight: 700;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-base);
    border: 2px solid transparent;
    text-decoration: none;
}

.btn-large.btn-primary {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
    border-color: transparent;
}

.btn-large.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.5);
}

.btn-large.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
}

.btn-large.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.7);
}

/* Social proof / rating */
.vps-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 0.9375rem;
}

.rating-stars { font-size: 1.25rem; }

.rating-text { color: rgba(255, 255, 255, 0.88); }
.rating-text strong { color: white; font-weight: 700; }
.rating-text strong:last-child { color: #FCD34D; }


/* ========================================
   TRUST BAR (below hero)
   ======================================== */

.vps-trust-bar {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    padding: 0;
}

.trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0;
    padding: 0;
}

.trust-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 24px;
    flex: 1;
    min-width: 160px;
    border-right: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.trust-bar-item:last-child { border-right: none; }

.trust-bar-item svg {
    stroke: #10B981;
    flex-shrink: 0;
}

.trust-bar-item strong { color: var(--text-primary); }

.trust-bar-payments {
    gap: 12px;
}

.payment-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}


/* ========================================
   SECTION SHARED UTILITIES
   ======================================== */

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-header p strong {
    color: var(--text-primary);
}


/* ========================================
   PRICING SECTION
   ======================================== */

.vps-pricing {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

/* Pricing card */
.pricing-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 28px 22px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

/* Featured card */
.pricing-card.featured {
    background: linear-gradient(160deg, #5B2FA6 0%, #7E22CE 60%, #6B21A8 100%);
    border-color: #F59E0B;
    border-width: 3px;
    transform: scale(1.04);
    color: white;
    box-shadow: 0 20px 50px rgba(107, 61, 187, 0.4);
}

.pricing-card.featured:hover {
    transform: scale(1.04) translateY(-4px);
    box-shadow: 0 28px 60px rgba(107, 61, 187, 0.5);
}

.pricing-card.featured .plan-name,
.pricing-card.featured .currency,
.pricing-card.featured .amount,
.pricing-card.featured .decimal,
.pricing-card.featured .period,
.pricing-card.featured .spec-value,
.pricing-card.featured .spec-detail {
    color: white;
}

.pricing-card.featured .spec-item {
    background: rgba(255, 255, 255, 0.15);
}

.pricing-card.featured .plan-features li {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-card.featured .plan-features li::before {
    color: #FCD34D;
}

/* Popular badge */
.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #F59E0B 0%, #F97316 100%);
    color: white;
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

/* Plan name + price */
.plan-name {
    font-size: 1.375rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    color: var(--text-primary);
    margin-top: 8px;
}

.plan-price {
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.amount {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--text-primary);
}

.decimal {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.period {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-left: 2px;
}

/* Specs grid */
.plan-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 18px;
}

.spec-item {
    background: var(--bg-secondary);
    padding: 10px 8px;
    border-radius: 8px;
    text-align: center;
}

.spec-item.spec-highlight {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: white;
}

.spec-item.spec-highlight .spec-value,
.spec-item.spec-highlight .spec-detail {
    color: white;
}

.spec-value {
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.spec-detail {
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Feature list */
.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    flex: 1;
}

.plan-features li {
    padding: 7px 0 7px 26px;
    position: relative;
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: 800;
    font-size: 1rem;
}

/* CTA button */
.btn-plan {
    display: block;
    width: 100%;
    text-align: center;
    padding: 13px;
    font-weight: 700;
    font-size: 0.9375rem;
    border-radius: var(--radius-lg);
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
    margin-top: auto;
}

.btn-plan:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured .btn-plan {
    background: linear-gradient(135deg, #F59E0B 0%, #F97316 100%);
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.35);
}

/* OS logos */
.os-available {
    text-align: center;
    background: var(--bg-card);
    padding: 28px 32px;
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.os-title {
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.os-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.os-logos img {
    opacity: 0.55;
    transition: opacity 0.3s ease;
    filter: grayscale(30%);
}

.os-logos img:hover {
    opacity: 0.9;
    filter: grayscale(0%);
}


/* ========================================
   WHY CHOOSE US SECTION
   ======================================== */

.vps-why {
    padding: 80px 0;
    background: var(--bg-primary);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px 28px;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.why-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-icon--green {
    background: rgba(16, 185, 129, 0.1);
}
.why-icon--green svg { stroke: #10B981; }

.why-icon--purple {
    background: rgba(107, 61, 187, 0.1);
}
.why-icon--purple svg { stroke: #6B3DBB; }

.why-icon--blue {
    background: rgba(59, 130, 246, 0.1);
}
.why-icon--blue svg { stroke: #3B82F6; }

.why-icon--yellow {
    background: rgba(245, 158, 11, 0.1);
}
.why-icon--yellow svg { stroke: #F59E0B; }

.why-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.why-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
}


/* ========================================
   COMPARISON TABLE
   ======================================== */

.vps-comparison {
    padding: 80px 20px;
    background: var(--bg-secondary);
}

.comparison-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.comparison-table {
    width: 100%;
    min-width: 560px;
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border-collapse: collapse;
}

.comparison-table thead tr {
    background: #1F2937;
}

.comparison-table th {
    padding: 20px 16px;
    font-weight: 700;
    font-size: 1rem;
}

.column-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: white;
}

.vps-column { background: #6B3DBB; }
.dedicated-column { background: #4B5563; }

.comparison-table td {
    padding: 18px 16px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: top;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.feature-name {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--text-primary);
}

.vps-cell {
    background: rgba(107, 61, 187, 0.04);
    text-align: center;
}

.dedicated-cell { text-align: center; }

.check-icon, .cross-icon {
    font-size: 1.5rem;
    margin-bottom: 4px;
    display: block;
}

.cell-title {
    font-weight: 700;
    color: #6B3DBB;
    font-size: 1rem;
    margin-bottom: 4px;
}

.dedicated-cell .cell-title {
    color: var(--text-primary);
}

.cell-value {
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--text-primary);
}

.cell-description {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

.scroll-hint {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-top: 12px;
    display: none;
}

.comparison-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.comparison-cta .btn-primary,
.comparison-cta .btn-secondary {
    padding: 14px 36px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-lg);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.comparison-cta .btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}
.comparison-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.comparison-cta .btn-secondary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.comparison-cta .btn-secondary:hover {
    background: var(--primary);
    color: white;
}


/* ========================================
   INFRASTRUCTURE SECTION
   ======================================== */

.vps-infrastructure {
    padding: 80px 0;
    background: var(--bg-primary);
}

.infrastructure-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.infrastructure-card {
    background: var(--bg-card);
    padding: 36px 28px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.infrastructure-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.infra-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.infra-icon.purple { background: rgba(107, 61, 187, 0.1); }
.infra-icon.purple svg { stroke: #6B3DBB; }
.infra-icon.blue { background: rgba(59, 130, 246, 0.1); }
.infra-icon.blue svg { stroke: #3B82F6; }
.infra-icon.yellow { background: rgba(245, 158, 11, 0.1); }
.infra-icon.yellow svg { stroke: #F59E0B; }

.infrastructure-card h3 {
    font-size: 1.3125rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.infrastructure-card > p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.latency-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin: 16px 0;
}

.latency-item {
    background: var(--bg-secondary);
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
}

.latency-note {
    font-size: 0.75rem;
    font-style: italic;
    color: var(--text-secondary);
    text-align: center;
}


/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.vps-testimonials {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px;
    margin: 0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.testimonial-stars {
    font-size: 1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin: 0 0 20px;
    flex: 1;
    font-style: italic;
}

.testimonial-text::before { content: '"'; }
.testimonial-text::after  { content: '"'; }

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    color: white;
    flex-shrink: 0;
}

.author-name {
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--text-primary);
    font-style: normal;
    display: block;
}

.author-role {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-top: 2px;
}


/* ========================================
   FAQ SECTION
   ======================================== */

.vps-faq {
    padding: 80px 0;
    background: var(--bg-primary);
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-card);
    transition: border-color 0.2s ease;
}

.faq-item.active {
    border-color: var(--primary);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: color 0.2s ease;
    font-family: inherit;
}

.faq-question:hover { color: var(--primary); }

.faq-item.active .faq-question { color: var(--primary); }

.faq-chevron {
    flex-shrink: 0;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin: 0;
}


/* ========================================
   FINAL CTA SECTION
   ======================================== */

.vps-cta-final {
    padding: 80px 0;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.vps-cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.06) 0%, transparent 60%);
    pointer-events: none;
}

.cta-final-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}

.cta-final-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-final-content > p {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 36px;
    line-height: 1.6;
}

.cta-final-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.cta-final-buttons .btn-large.btn-primary {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.cta-final-buttons .btn-large.btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
}

.cta-final-buttons .btn-large.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.22);
}

.cta-reassurance {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.72);
}

.cta-reassurance svg { stroke: rgba(255,255,255,0.72); }


/* ========================================
   RESPONSIVE — TABLET (≤1024px)
   ======================================== */

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.featured {
        transform: none;
    }
    .pricing-card.featured:hover {
        transform: translateY(-6px);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .infrastructure-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-bar-item {
        padding: 16px 18px;
        font-size: 0.8125rem;
    }
}


/* ========================================
   RESPONSIVE — MOBILE (≤768px)
   ======================================== */

@media (max-width: 768px) {
    .vps-hero {
        padding: 60px 20px 50px;
        min-height: auto;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .infrastructure-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* Trust bar stacks on mobile */
    .trust-bar-inner {
        flex-direction: column;
    }

    .trust-bar-item {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 14px 20px;
    }

    .trust-bar-item:last-child {
        border-bottom: none;
    }

    .comparison-table-scroll { margin: 0; }
    .scroll-hint { display: block; }

    .comparison-cta {
        flex-direction: column;
        align-items: center;
    }
    .comparison-cta .btn-primary,
    .comparison-cta .btn-secondary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .cta-final-buttons {
        flex-direction: column;
        align-items: center;
    }
    .cta-final-buttons .btn-large {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .section-container {
        padding: 0 1.25rem;
    }
}


/* ========================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ======================================== */

@media (max-width: 480px) {
    .comparison-table {
        min-width: 520px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
        font-size: 0.8125rem;
    }

    .column-header span { font-size: 0.75rem; }
    .column-header svg { width: 14px; height: 14px; }

    .uptime-badge {
        font-size: 0.8125rem;
        padding: 8px 16px;
    }
}