/* domain-registration-in-nepal — migrated from pages.css */
:root {
    --dr-primary: #0f766e; /* was #0d9488: as text/button-fill on white/light backgrounds this was 3.74:1, fails WCAG AA (needs 4.5:1) */
    --dr-secondary: #0f172a;
    --dr-accent: #14b8a6;
    --dr-bg: #f8fafc;
    --dr-text: #1e293b;
    --dr-muted: #64748b;
}

.dr-body {
    font-family: 'Inter', sans-serif;
    color: var(--dr-text);
    background: var(--dr-bg);
    line-height: 1.6;
}

/* HERO */
.dr-hero {
    background: radial-gradient(ellipse 70% 90% at 85% 12%, rgba(20,184,166,.22) 0%, transparent 60%), radial-gradient(ellipse 55% 70% at 8% 95%, rgba(45,212,191,.13) 0%, transparent 55%), linear-gradient(135deg, #0b1c33 0%, #123047 55%, #0e4a44 100%);
    padding: 72px 20px 64px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.dr-hero h1 { text-align: center; }
.dr-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(13,148,136, 0.15) 0%, transparent 60%);
}
.dr-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}
.dr-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    color: #fff !important;
}
.dr-hero h1 span { color: var(--dr-accent); }
.dr-hero p {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 40px;
}

/* SEARCH BOX */

/* PRICING TABLE */
.dr-section { padding: 80px 20px; }
.dr-container { max-width: 1200px; margin: 0 auto; }
.dr-sh { text-align: center; margin-bottom: 50px; }
.dr-sh h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 15px; color: var(--dr-secondary); }
.dr-sh p { color: var(--dr-muted); font-size: 1.1rem; }

.dr-price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.dr-price-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}
.dr-price-card:hover { border-color: var(--dr-primary); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.dr-tld { font-size: 1.5rem; font-weight: 800; color: var(--dr-secondary); display: block; margin-bottom: 10px; }
.dr-amt { font-size: 1.2rem; font-weight: 700; color: var(--dr-primary); }
.dr-amt small { color: var(--dr-muted); font-size: 0.9rem; font-weight: 500; }

/* FULL PRICE LIST */
.dr-table-wrap { overflow-x: auto; border: 1px solid #e2e8f0; border-radius: 12px; background: #fff; }
.dr-table { width: 100%; border-collapse: collapse; min-width: 520px; }
.dr-table thead th {
    text-align: left; font-size: .78rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
    color: var(--dr-muted); background: #f8fafc; padding: 14px 18px; border-bottom: 1px solid #e2e8f0;
}
.dr-table tbody th, .dr-table tbody td { padding: 14px 18px; border-bottom: 1px solid #f1f5f9; font-size: .95rem; color: var(--dr-secondary); text-align: left; }
.dr-table tbody tr:last-child th, .dr-table tbody tr:last-child td { border-bottom: none; }
.dr-table tbody tr:hover { background: #fbfdff; }
.dr-t-tld { font-weight: 800; color: var(--dr-primary); }
.dr-t-term { color: var(--dr-muted); font-size: .88rem; }
.dr-t-free { font-weight: 700; color: #059669; }

.dr-price-notes { margin-top: 40px; max-width: 860px; }
.dr-price-notes h3 { font-size: 1.25rem; font-weight: 800; color: var(--dr-secondary); margin: 32px 0 14px; }
.dr-price-notes ul { padding-left: 20px; margin: 0; }
.dr-price-notes li { margin-bottom: 12px; line-height: 1.75; color: var(--dr-muted); }
.dr-price-notes li strong { color: var(--dr-secondary); }
.dr-price-notes p { line-height: 1.8; color: var(--dr-muted); margin-bottom: 14px; }
.dr-price-notes p strong { color: var(--dr-secondary); }

/* FEATURES */
.dr-feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.dr-feat-card {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
}
.dr-feat-icon {
    width: 60px;
    height: 60px;
    background: rgba(13,148,136, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.dr-feat-icon i { font-size: 24px; color: var(--dr-primary); }
.dr-feat-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 15px; color: var(--dr-secondary); }
.dr-feat-card p { color: var(--dr-muted); font-size: 1rem; }

/* NP DOMAIN SECTION */
.dr-np-box {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 24px;
    padding: 60px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 40px;
}
.dr-np-content { flex: 1; }
.dr-np-content h2 { font-size: 2.3rem; font-weight: 800; margin-bottom: 20px; }
.dr-np-content h2 span { color: var(--dr-accent); }
.dr-np-content p { font-size: 1.1rem; color: #94a3b8; margin-bottom: 30px; }
.dr-np-list { list-style: none; padding: 0; margin-bottom: 30px; }
.dr-np-list li { margin-bottom: 12px; display: flex; align-items: center; gap: 10px; color: #cbd5e1; }
.dr-np-list li i { color: #10b981; }
.dr-btn-white {
    background: #fff;
    color: var(--dr-secondary);
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
}

/* STEPS */
.dr-steps { text-align: center; }
.dr-step-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 50px;
}
.dr-step-item { position: relative; }
.dr-step-num {
    width: 50px;
    height: 50px;
    background: var(--dr-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    margin: 0 auto 20px;
}
.dr-step-item h4 { font-weight: 700; margin-bottom: 12px; }

/* FAQ */
.dr-faq-container { max-width: 800px; margin: 40px auto 0; }
.dr-faq-item { background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; margin-bottom: 15px; }
.dr-faq-q { padding: 20px 30px; cursor: pointer; font-weight: 700; display: flex; justify-content: space-between; align-items: center; }
.dr-faq-a { padding: 0 30px 25px; color: var(--dr-muted); display: none; }
.dr-faq-item.active .dr-faq-a { display: block; }
.dr-faq-item.active .dr-faq-q { color: var(--dr-primary); }@media (max-width: 991px) {
    .dr-hero h1 { font-size: 2.5rem; }
    .dr-feat-grid { grid-template-columns: 1fr; }
    .dr-np-box { flex-direction: column; padding: 40px; text-align: center; }
    .dr-step-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- EXHAUSTIVE DARK-THEME TYPOGRAPHY RESOLUTION --- */
/* This block is placed at the end to ensure it overrides all extracted component styles */

/* Target all dark sections: heroes, CTAs, sidebars, and np-specific boxes */
.contact-sidebar-card, 
.dr-np-box, 
.office-section, 
.dr-hero, 
.zm-hero, 
.hp-hero, 
.hp-cta, 
.vps-hero, 
.zo-hero, 
.rh-hero, 
.wd-hero, 
.zw-hero, 
[class*="-hero"],
[class*="hero-"],
.features-strip,
.features-strip h2,
.features-strip p,
.features-strip h1,
.features-strip h2 span,
.feat-item,
.feat-item h3,
.feat-item p {
    color: #ffffff !important;
}

/* Ensure all headers (h1-h4) in these sections are pure white */
.contact-sidebar-card h1, .contact-sidebar-card h2, .contact-sidebar-card h3, .contact-sidebar-card h4,
.dr-np-box h1, .dr-np-box h2, .dr-np-box h3, .dr-np-box h4,
.office-section h1, .office-section h2, .office-section h3, .office-section h4,
.dr-hero h1, .dr-hero h2, .dr-hero h3, .dr-hero h4,
[class*="-hero"] h1, [class*="-hero"] h2, [class*="-hero"] h3, [class*="-hero"] h4,
.features-strip h2, .feat-item h3 {
    color: #ffffff !important;
}

/* Specific fix for Office and Sidebar headings that should stay 'Corporate Blue' but be visible */
.office-card h3, 
.sidebar-section h4,
.dr-np-content h2 span {
    color: #14b8a6 !important; /* Forces WebsNP Blue visibility on dark backgrounds */
    text-shadow: 0 0 1px rgba(255,255,255,0.1);
}

/* Brighten paragraphs and text-muted in dark zones */
.contact-sidebar-card p, 
.dr-np-box p, 
.office-section p, 
[class*="-hero"] p,
.feat-item p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.contact-sidebar-card .contact-link,
.contact-sidebar-card i {
    color: #ffffff !important;
}


/* ═══════════════════════════════════════════════════════════════
   VPS SERVER HOSTING PAGE — /vps-server-hosting
   ═══════════════════════════════════════════════════════════════ */
.vps-page * { box-sizing: border-box; }

/* ── Hero ── */
.vps-hero {
    background: linear-gradient(135deg, #0f172a 0%, #042f2e 50%, #0f172a 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

/* ── Feature Strip ── */
.vps-feature-strip {
    background: #042f2e;
    border-top: 1px solid rgba(20,184,166,0.2);
    border-bottom: 1px solid rgba(20,184,166,0.2);
    padding: 14px 0;
    overflow: hidden;
}

/* ── Section Shared ── */
.vps-section-header { text-align: center; margin-bottom: 48px; }

/* ── Plans Section ── */
.vps-plans-section { background: #f8fafc; padding: 80px 0; }

/* ── Specs Table ── */
.vps-specs-section { background: #fff; padding: 72px 0; }

/* ── What is VPS ── */
.vps-about-section { background: #f8fafc; padding: 72px 0; }

/* ── Features ── */
.vps-features-section { background: #fff; padding: 80px 0; }

/* ── FAQ ── */
.vps-faq-section { background: #f8fafc; padding: 80px 0; }

/* ── CTA ── */
.vps-cta-section {
    background: linear-gradient(135deg, #0f172a 0%, #042f2e 60%, #0f172a 100%);
    padding: 72px 0;
    text-align: center;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .vps-plans-grid { grid-template-columns: repeat(2, 1fr); }
    .vps-features-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =====================================================================
   ADMIN PRODUCT EDIT BUTTON — appears on frontend cards for admin users
   ===================================================================== */
.admin-product-edit-btn,
.hp-admin-edit-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(15,23,42,0.82);
    color: #fff !important;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    text-decoration: none !important;
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    z-index: 10;
    transition: background 0.15s, transform 0.1s;
    line-height: 1.4;
    white-space: nowrap;
}
.admin-product-edit-btn:hover,
.hp-admin-edit-btn:hover {
    background: #0f766e; /* teal-700: #0d9488 with white text was 3.74:1, fails WCAG AA (needs 4.5:1) */
    transform: translateY(-1px);
    color: #fff !important;
    text-decoration: none !important;
}
.hp-admin-edit-btn--dark {
    background: rgba(20,184,166,0.3);
    border-color: rgba(20,184,166,0.4);
}
.hp-admin-edit-btn--dark:hover {
    background: #14b8a6;
}
.hp-admin-edit-btn--inline {
    position: static;
    margin-left: 8px;
    padding: 5px 12px;
    font-size: 0.75rem;
}

/* =====================================================================
   HOMEPAGE VPS STRIP
   ===================================================================== */
.hp-vps-strip {
    background: linear-gradient(135deg, #0f172a 0%, #042f2e 100%);
    padding: 20px 40px;
}
.hp-vps-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.hp-vps-strip-text {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    color: #e2e8f0;
    font-size: 0.9rem;
}
.hp-vps-strip-text strong {
    color: #fff;
    font-weight: 700;
}
.hp-vps-strip-badge {
    background: linear-gradient(135deg,#14b8a6,#0d9488);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.hp-vps-strip-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    color: #94a3b8;
    font-size: 0.85rem;
}
.hp-vps-strip-price strong {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
}
.hp-vps-strip-price small {
    color: #94a3b8;
    font-size: 0.8rem;
}
.hp-vps-strip-btn {
    display: inline-block;
    background: linear-gradient(135deg,#14b8a6,#0d9488);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none !important;
    transition: opacity 0.2s;
    white-space: nowrap;
}
.hp-vps-strip-btn:hover { opacity: 0.88; }@media (max-width: 640px) {
    .hp-vps-strip { padding: 20px; }
    .hp-vps-strip-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ═══════════════════════════════════════════════════════════════
   GLOBAL MICRO-INTERACTIONS & SHARED COMPONENTS
   ═══════════════════════════════════════════════════════════════ */

/* Server / hosting card hover lift */
.wh-card, .hp-card {
    transition: transform 0.22s ease, box-shadow 0.22s ease !important;
}
.wh-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 16px 40px rgba(13,148,136,0.13) !important;
}
.hp-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12) !important;
}

/* Order Now / CTA button pulse on hover */
.wh-plan-btn, .vps-plan-btn, .cloud-plan-btn {
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s !important;
}
.wh-plan-btn:hover, .vps-plan-btn:hover, .cloud-plan-btn:hover {
    transform: scale(1.03) !important;
    box-shadow: 0 6px 20px rgba(13,148,136,0.3) !important;
}

/* Zero-Risk badge */
.zero-risk-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
    font-size: 14px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 8px;
}
.zero-risk-badge i { color: #16a34a; font-size: 14px; }

/* ── SLA Uptime Visualization ───────────────────────────────── */
.sla-section {
    background: #f8fafc;
    padding: 64px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}
.sla-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}
.sla-inner h2 {
    font-size: 1.9rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}
.sla-inner .sla-sub {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 40px;
}
.sla-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}
.sla-stat-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.sla-stat-card .sla-num {
    font-size: 2.4rem;
    font-weight: 900;
    color: #0d9488;
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}
.sla-stat-card .sla-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}
.sla-uptime-bar-wrap {
    margin-bottom: 32px;
}
.sla-uptime-bar-wrap h3 {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}
.sla-uptime-bar {
    background: #e2e8f0;
    border-radius: 99px;
    height: 12px;
    overflow: hidden;
}
.sla-uptime-fill {
    height: 100%;
    background: linear-gradient(90deg, #22c55e, #16a34a);
    border-radius: 99px;
    transition: width 1.2s ease;
}
.sla-credit-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.sla-credit-table th {
    background: #0f172a;
    color: #e2e8f0;
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.sla-credit-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #f1f5f9;
    color: #374151;
}
.sla-credit-table tr:last-child td { border-bottom: none; }
.sla-credit-table tr:nth-child(even) td { background: #f8fafc; }
.sla-credit-note {
    font-size: 14px;
    color: #94a3b8;
    margin-top: 12px;
}

/* ── Our Valued Clients ─────────────────────────────────────── */
.clients-logo-section {
    background: #fff;
    padding: 44px 0 28px;
}
.clients-logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 32px 48px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}
.client-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    filter: grayscale(100%);
    opacity: .65;
    transition: filter .2s, opacity .2s, transform .2s;
}
.client-logo-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-2px);
}
.client-logo-item img {
    max-height: 60px;
    max-width: 140px;
    object-fit: contain;
}
.client-logo-fallback {
    font-weight: 700;
    font-size: 15px;
    color: var(--color-muted, #64748b);
}

/* ── Powered By Ticker ──────────────────────────────────────── */
.powered-ticker-section {
    background: #fff;
    padding: 44px 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    overflow: hidden;
}
.powered-ticker-label {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 24px;
}
.ticker-track-wrap {
    overflow: hidden;
    position: relative;
}
.ticker-track-wrap::before, .ticker-track-wrap::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.ticker-track-wrap::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
.ticker-track-wrap::after  { right: 0; background: linear-gradient(to left, #fff, transparent); }
.ticker-track {
    display: flex;
    gap: 48px;
    animation: tickerScroll 28s linear infinite;
    width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 24px;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}
.ticker-item i { color: #0d9488; font-size: 18px; }
@keyframes tickerScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── Reviews Page Styles ────────────────────────────────────── */
.reviews-hero {
    background: linear-gradient(135deg, #0f172a 0%, #134e4a 100%);
    color: #fff;
    padding: 64px 24px;
    text-align: center;
    margin-bottom: 0;
}
.reviews-hero h1 { font-size: 2.2rem; font-weight: 900; margin-bottom: 12px; }
.reviews-hero p { color: #94a3b8; font-size: 1.05rem; max-width: 560px; margin: 0 auto 28px; }
.reviews-aggregate {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 18px 32px;
}
.agg-score {
    font-size: 3.2rem;
    font-weight: 900;
    color: #fbbf24;
    line-height: 1;
}
.agg-stars { color: #fbbf24; font-size: 20px; letter-spacing: 2px; }
.agg-meta { font-size: 14px; color: #94a3b8; }
.agg-meta strong { color: #e2e8f0; font-size: 15px; display: block; }

.reviews-grid-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 56px 24px;
}
.reviews-grid-section h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 32px;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}
.review-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: transform 0.2s, box-shadow 0.2s;
}
.review-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.09); }
.review-card-stars { color: #fbbf24; font-size: 16px; letter-spacing: 1px; margin-bottom: 14px; }
.review-card-body { color: #374151; font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.review-card-body::before { content: '\201C'; font-size: 32px; color: #ccfbf1; line-height: 0; vertical-align: -10px; margin-right: 3px; }
.review-card-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg,#0d9488,#0f766e);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 800; font-size: 16px;
    flex-shrink: 0;
}
.review-author-name { font-weight: 700; color: #0f172a; font-size: 14px; }
.review-author-role { font-size: 14px; color: #64748b; }
.review-tag {
    display: inline-block;
    background: #f0fdfa;
    color: #0f766e;
    font-size: 14px;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 99px;
    margin-top: 6px;
}

/* ── Reviews FAQ ────────────────────────────────────────────── */
.reviews-faq {
    background: #f8fafc;
    padding: 64px 24px;
    border-top: 1px solid #e2e8f0;
}
.reviews-faq-inner { max-width: 820px; margin: 0 auto; }
.reviews-faq h2 { font-size: 1.7rem; font-weight: 800; color: #0f172a; margin-bottom: 8px; }
.reviews-faq .faq-sub { color: #64748b; margin-bottom: 36px; }
.faq-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    text-align: left;
    gap: 12px;
}
.faq-question:hover { background: #f8fafc; }
.faq-question .faq-icon {
    flex-shrink: 0;
    width: 24px; height: 24px;
    border-radius: 50%;
    background: #f0fdfa;
    color: #0f766e;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    transition: transform 0.22s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: #115e59; color: #fff; }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.2s;
    padding: 0 20px;
    color: #374151;
    font-size: 14px;
    line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 4px 20px 20px; }

/* ── Comparison Page ────────────────────────────────────────── */
.compare-page { max-width: 1160px; margin: 0 auto; padding: 56px 24px 80px; }
.compare-hero {
    text-align: center;
    padding: 56px 24px;
    background: linear-gradient(135deg,#0f172a,#134e4a);
    color: #fff;
    margin-bottom: 0;
}
.compare-hero h1 { font-size: 2.2rem; font-weight: 900; margin-bottom: 12px; text-align: center; }
.compare-hero p { color: #94a3b8; max-width: 540px; margin: 0 auto; font-size: 1rem; }
.compare-exec {
    max-width: 820px;
    margin: 0 auto;
    background: #f0fdfa;
    border-left: 4px solid #0d9488;
    border-radius: 0 12px 12px 0;
    padding: 20px 24px;
    font-size: 14px;
    color: #134e4a;
    line-height: 1.7;
}
.compare-exec strong { font-size: 14px; text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 4px; color: #0d9488; }
.compare-table-wrap { overflow-x: auto; margin: 40px 0; }
.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.compare-table thead th {
    padding: 18px 20px;
    text-align: center;
    font-weight: 800;
    font-size: 15px;
    border-bottom: 2px solid #e2e8f0;
}
.compare-table thead th:first-child { text-align: left; color: #64748b; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.compare-table thead th.th-vps { color: #0d9488; }
.compare-table thead th.th-ded { color: #0f766e; }
.compare-table tbody tr { border-bottom: 1px solid #f1f5f9; }
.compare-table tbody tr:hover { background: #f8fafc; }
.compare-table td { padding: 14px 20px; color: #374151; vertical-align: middle; }
.compare-table td:first-child { font-weight: 600; color: #0f172a; }
.compare-table td:not(:first-child) { text-align: center; }
.ct-yes { color: #16a34a; font-size: 18px; }
.ct-no  { color: #dc2626; font-size: 18px; }
.ct-partial { color: #d97706; font-size: 14px; font-weight: 600; }
.compare-reco {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 48px 0;
}
.reco-card {
    border-radius: 16px;
    padding: 32px;
    border: 2px solid transparent;
}
.reco-card.vps-reco  { background: #f0fdfa; border-color: #0d9488; }
.reco-card.ded-reco  { background: #f0fdfa; border-color: #0f766e; }
.reco-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 12px; }
.reco-card.vps-reco h3 { color: #0f766e; }
.reco-card.ded-reco h3 { color: #0d9488; }
.reco-card ul { list-style: none; padding: 0; margin: 0 0 20px; }
.reco-card ul li { font-size: 14px; color: #374151; padding: 4px 0; padding-left: 20px; position: relative; }
.reco-card ul li::before { content: '✓'; position: absolute; left: 0; font-weight: 700; }
.reco-card.vps-reco ul li::before { color: #0d9488; }
.reco-card.ded-reco ul li::before { color: #0f766e; }
.reco-card a {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    color: #fff !important;
}
.reco-card.vps-reco a { background: #0f766e; } /* teal-700: #0d9488 with white text was 3.74:1, fails WCAG AA (needs 4.5:1) */
.reco-card.ded-reco a { background: #0f766e; }@media (max-width: 640px) { .compare-reco { grid-template-columns: 1fr; } }

/* ── Meet the Team Page ─────────────────────────────────────── */
.team-hero {
    background: linear-gradient(135deg,#0f172a,#134e4a);
    color: #fff;
    padding: 72px 24px;
    text-align: center;
}
.team-hero h1 { font-size: 2.2rem; font-weight: 900; margin-bottom: 12px; }
.team-hero p { color: #94a3b8; max-width: 540px; margin: 0 auto; }
.team-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 64px 24px;
}
.team-section h2 { font-size: 1.6rem; font-weight: 800; color: #0f172a; margin-bottom: 8px; }
.team-section .section-sub { color: #64748b; margin-bottom: 40px; }
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 28px;
    margin-bottom: 64px;
}
.team-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: transform 0.2s, box-shadow 0.2s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,0.09); }
.team-avatar {
    width: 80px; height: 80px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    background: linear-gradient(135deg,#0d9488,#0f766e);
}
.team-avatar.green  { background: linear-gradient(135deg,#059669,#0d9488); }
.team-avatar.orange { background: linear-gradient(135deg,#ea580c,#d97706); }
.team-avatar.red    { background: linear-gradient(135deg,#dc2626,#e11d48); }
.team-avatar.purple { background: linear-gradient(135deg,#0f766e,#0d9488); }
.team-avatar.teal   { background: linear-gradient(135deg,#0891b2,#0369a1); }
.team-avatar.blue   { background: linear-gradient(135deg,#2563eb,#1d4ed8); }
.team-card h3 { font-size: 1rem; font-weight: 800; color: #0f172a; margin-bottom: 4px; }
.team-card .team-role { font-size: 14px; font-weight: 600; color: #0d9488; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.team-card p { font-size: 14px; color: #64748b; line-height: 1.6; margin: 0; }
.team-office {
    background: #f8fafc;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}@media (max-width: 640px) { .team-office { grid-template-columns: 1fr; } }
.team-office h3 { font-size: 1.2rem; font-weight: 800; color: #0f172a; margin-bottom: 12px; }
.team-office p { color: #64748b; font-size: 14px; line-height: 1.75; margin-bottom: 16px; }
.team-office-stat { display: flex; gap: 24px; flex-wrap: wrap; }
.tos-num { font-size: 1.8rem; font-weight: 900; color: #0d9488; display: block; }
.tos-lbl { font-size: 14px; color: #64748b; }
.team-office-img {
    background: linear-gradient(135deg, #0f172a, #134e4a);
    border-radius: 12px;
    height: 220px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.15);
    font-size: 80px;
}
.team-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.team-value-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}
.team-value-card i { font-size: 28px; color: #0d9488; margin-bottom: 12px; display: block; }
.team-value-card h4 { font-size: 14px; font-weight: 700; color: #0f172a; margin-bottom: 6px; }
.team-value-card p { font-size: 14px; color: #64748b; margin: 0; }

/* ── Answer-First Executive Summary ────────────────────────── */
.exec-summary {
    background: #f0fdfa;
    border-left: 4px solid #0d9488;
    border-radius: 0 12px 12px 0;
    padding: 20px 28px;
    max-width: 860px;
    margin: 0 auto 40px;
    font-size: 14px;
    color: #134e4a;
    line-height: 1.75;
}
.exec-summary-label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #0d9488;
    display: block;
    margin-bottom: 6px;
}@media (prefers-reduced-motion: reduce) {
.hp-hero::before, .hp-hero::after,
            .hp-hero-eyebrow, .hp-hero h1, .hp-hero h1 span, .hp-hero-sub,
            .hp-trust-bar, .hp-ds-wrap, .hp-live-dot,
            .hp-hero-cta-row, .hp-hero-cta-primary::after {
                animation: none !important;
            }
}@media(max-width:768px) {
.hp-ds-wrap { padding: 16px 14px 12px; border-radius: 16px; }
.hp-ds-row { flex-direction: column; gap: 8px; }
.hp-ds-btn { width: 100%; justify-content: center; height: 50px; }
.hp-ds-btn-label { display: inline; }
.hp-dc-action { flex-wrap: wrap; gap: 8px; }
}@media(max-width:480px) {
.hp-dc-price { display: none; }
}
