/* =============================================
   WEB-HOSTING.CSS — DONHOSTER
   Brand: #6B3DBB · #8E2FE4 · #10B981 · #FCD34D
   ============================================= */

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

/* ════════════════════════════════════════════
   HERO — 2-column layout
   ════════════════════════════════════════════ */
.wh-hero {
    position: relative;
    background: linear-gradient(135deg, #6B3DBB 0%, #4C1D95 50%, #1E3A8A 100%);
    overflow: hidden;
    padding: 72px 0 60px;
}

.wh-hero-bg {
    position: absolute; inset: 0;
    background: radial-gradient(circle at 70% 50%, rgba(255,255,255,0.05) 0%, transparent 60%);
    pointer-events: none;
}

.wh-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* ── Left copy ── */
.wh-uptime-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: white; padding: 8px 18px;
    border-radius: 50px; font-size: 0.8125rem; font-weight: 600;
    margin-bottom: 24px;
}

.pulse-dot {
    width: 9px; height: 9px; background: #10B981; border-radius: 50%;
    animation: pulse-green 2s infinite; flex-shrink: 0;
}

@keyframes pulse-green {
    0%,100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.4); }
    50%      { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
}

.wh-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900; color: white;
    margin-bottom: 20px; line-height: 1.15;
}

.wh-gradient-text {
    background: linear-gradient(135deg, #FCD34D 0%, #F97316 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    display: block;
}

.wh-hero-subtitle {
    font-size: 1.0625rem; color: rgba(255,255,255,0.88);
    margin-bottom: 28px; line-height: 1.7;
}
.wh-hero-subtitle strong { color: #FCD34D; }

.wh-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }

.btn-large {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 32px; font-size: 1rem; font-weight: 700;
    border-radius: 8px; text-decoration: none;
    transition: all var(--transition-base); border: 2px solid transparent;
}
.btn-large.btn-primary { background: linear-gradient(135deg,#10B981,#059669); color: white; box-shadow: 0 6px 20px rgba(16,185,129,0.35); }
.btn-large.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px 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.35); }
.btn-large.btn-secondary:hover { background: rgba(255,255,255,0.18); }

.wh-trust-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.trust-pill {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9);
    padding: 6px 12px; border-radius: 50px; font-size: 0.8125rem; font-weight: 500;
}

.wh-rating { display: flex; align-items: center; gap: 10px; }
.wh-stars  { display: flex; gap: 2px; }
.wh-rating span { color: rgba(255,255,255,0.85); font-size: 0.9rem; }
.wh-rating strong { color: white; }
.wh-rating strong:last-child { color: #FCD34D; }

/* ── Right: Browser demo ── */
.wh-hero-demo { perspective: 1200px; }

.demo-browser {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,0.4);
    transform: rotateY(-4deg) rotateX(2deg);
    border: 1px solid rgba(255,255,255,0.1);
}

.browser-bar {
    background: #1F2937;
    padding: 10px 14px;
    display: flex; align-items: center; gap: 12px;
}

.browser-dots { display: flex; gap: 6px; }
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot-red    { background: #EF4444; }
.dot-yellow { background: #F59E0B; }
.dot-green  { background: #10B981; }

.browser-url {
    flex: 1; background: #111827; border-radius: 6px;
    padding: 5px 10px; display: flex; align-items: center; gap: 6px;
    font-size: 0.75rem; color: #9CA3AF;
}
.browser-url svg { stroke: #10B981; flex-shrink: 0; }

.browser-screen { height: 340px; overflow: hidden; background: #F9FAFB; position: relative; }
[data-theme="dark"] .browser-screen { background: #1F2937; }

/* Steps */
.demo-step {
    position: absolute; inset: 0;
    opacity: 0; transform: translateX(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}
.demo-step.active { opacity: 1; transform: translateX(0); pointer-events: auto; }

/* cPanel UI */
.cpanel-header {
    background: #1F2937; padding: 10px 14px;
    display: flex; align-items: center; justify-content: space-between;
}
.cpanel-logo { display: flex; align-items: center; gap: 8px; color: white; font-weight: 700; font-size: 0.875rem; }
.cpanel-user { color: #9CA3AF; font-size: 0.75rem; }
.cpanel-body { padding: 12px 14px; }
.cpanel-section-title { font-size: 0.7rem; font-weight: 700; color: #9CA3AF; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.cpanel-icons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 12px; }
.cpanel-icon {
    display: flex; flex-direction: column; align-items: center; gap: 5px;
    background: var(--bg-secondary); border: 1px solid var(--border-color);
    border-radius: 8px; padding: 10px 6px;
    font-size: 0.65rem; color: var(--text-secondary);
    cursor: pointer; transition: all 0.2s ease;
}
.cpanel-icon:hover { border-color: #6B3DBB; color: #6B3DBB; }
.cpanel-icon svg  { stroke: var(--text-secondary); transition: stroke 0.2s; }
.cpanel-icon:hover svg { stroke: #6B3DBB; }
.cpanel-icon--highlight { border-color: #6B3DBB; background: rgba(107,61,187,0.08); }
.cpanel-icon--highlight svg { stroke: #6B3DBB; }
.cpanel-icon--highlight span { color: #6B3DBB; font-weight: 700; }

.demo-hint { font-size: 0.7rem; color: #6B3DBB; font-weight: 600; text-align: center; padding: 4px; background: rgba(107,61,187,0.06); border-radius: 4px; }

/* Softaculous UI */
.soft-header { background: #2D3748; color: white; padding: 10px 14px; font-size: 0.8rem; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.soft-header svg { stroke: white; }
.soft-body { padding: 12px 14px; }
.soft-wp-card { display: flex; align-items: center; gap: 10px; background: var(--bg-secondary); border: 1px solid #6B3DBB; border-radius: 8px; padding: 10px; margin-bottom: 10px; }
.wp-logo-circle { width: 44px; height: 44px; border-radius: 50%; background: #2271B1; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.soft-wp-info { flex: 1; display: flex; flex-direction: column; gap: 2px; font-size: 0.75rem; }
.soft-wp-info strong { color: var(--text-primary); font-size: 0.825rem; }
.soft-wp-info span   { color: var(--text-secondary); }
.soft-install-btn { background: #6B3DBB; color: white; border: none; border-radius: 6px; padding: 6px 12px; font-size: 0.75rem; font-weight: 700; cursor: pointer; white-space: nowrap; transition: background 0.2s; }
.soft-install-btn:hover { background: #8E2FE4; }
.soft-form { display: flex; flex-direction: column; gap: 6px; }
.form-row-demo { display: flex; align-items: center; gap: 8px; }
.form-row-demo label { font-size: 0.7rem; color: var(--text-secondary); width: 100px; flex-shrink: 0; }
.form-input-demo { flex: 1; background: var(--bg-secondary); border: 1px solid var(--border-color); border-radius: 4px; padding: 5px 8px; font-size: 0.7rem; color: var(--text-primary); }

/* Install progress */
.install-screen { padding: 20px 16px; display: flex; flex-direction: column; align-items: center; }
.install-wp-logo { margin-bottom: 10px; }
.install-title { font-size: 0.9rem; font-weight: 700; color: var(--text-primary); margin-bottom: 12px; }
.install-bar-wrap { width: 100%; background: var(--bg-secondary); border-radius: 4px; height: 8px; overflow: hidden; margin-bottom: 14px; }
.install-bar { height: 100%; background: linear-gradient(90deg, #6B3DBB, #10B981); border-radius: 4px; width: 0%; transition: width 0.6s ease; }
.install-steps-list { width: 100%; display: flex; flex-direction: column; gap: 6px; }
.install-step-item { display: flex; align-items: center; gap: 8px; font-size: 0.75rem; color: #9CA3AF; transition: color 0.3s; }
.install-step-item.done { color: var(--text-primary); font-weight: 600; }

/* WordPress Dashboard */
.wp-dashboard { display: flex; height: 100%; }
.wp-sidebar { width: 100px; background: #1D2327; flex-shrink: 0; padding: 12px 0; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.wp-sidebar-logo { margin-bottom: 8px; }
.wp-nav { width: 100%; }
.wp-nav-item { display: flex; align-items: center; gap: 6px; padding: 7px 10px; color: #A0ADB9; font-size: 0.65rem; cursor: pointer; transition: all 0.2s; border-left: 2px solid transparent; }
.wp-nav-item:hover { color: white; background: rgba(255,255,255,0.05); }
.wp-nav-item.active { color: white; border-left-color: #2271B1; background: rgba(255,255,255,0.08); }
.wp-nav-item svg { stroke: currentColor; flex-shrink: 0; }
.wp-main { flex: 1; display: flex; flex-direction: column; overflow: hidden; }
.wp-topbar { background: #1D2327; padding: 8px 12px; display: flex; align-items: center; justify-content: space-between; }
.wp-site-name { color: #A0ADB9; font-size: 0.7rem; }
.wp-user-icon { display: flex; align-items: center; gap: 4px; color: #A0ADB9; font-size: 0.65rem; }
.wp-user-icon svg { stroke: currentColor; }
.wp-body { flex: 1; padding: 10px 12px; background: #F0F0F1; overflow: auto; }
[data-theme="dark"] .wp-body { background: #1F2937; }
.wp-welcome { display: flex; align-items: center; gap: 10px; background: white; border-left: 4px solid #10B981; border-radius: 4px; padding: 8px 12px; margin-bottom: 10px; font-size: 0.7rem; }
[data-theme="dark"] .wp-welcome { background: #374151; }
.wp-welcome strong { display: block; color: var(--text-primary); }
.wp-welcome span   { color: var(--text-secondary); }
.wp-welcome-icon   { flex-shrink: 0; }
.wp-cards-row { display: flex; gap: 6px; margin-bottom: 8px; }
.wp-stat-card { flex: 1; background: white; border-radius: 4px; padding: 6px 8px; text-align: center; font-size: 0.65rem; color: var(--text-secondary); border: 1px solid var(--border-color); }
[data-theme="dark"] .wp-stat-card { background: #374151; }
.wp-stat-num { display: block; font-size: 1rem; font-weight: 700; color: #6B3DBB; margin-bottom: 2px; }
.wp-new-post { display: flex; align-items: center; gap: 6px; background: #6B3DBB; color: white; border-radius: 4px; padding: 6px 10px; font-size: 0.7rem; font-weight: 600; cursor: pointer; }
.wp-new-post svg { stroke: white; }

/* Demo dots */
.demo-dots { display: flex; justify-content: center; gap: 8px; padding: 10px; background: var(--bg-card); }
.demo-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border-color); cursor: pointer; transition: background 0.2s; }
.demo-dot.active { background: #6B3DBB; }
.demo-label { text-align: center; font-size: 0.75rem; color: var(--text-secondary); padding: 0 14px 10px; margin: 0; background: var(--bg-card); font-weight: 500; }

/* ════════════════════════════════════════════
   TRUST BAR
   ════════════════════════════════════════════ */
.wh-trust-bar { background: var(--bg-card); border-bottom: 1px solid var(--border-color); overflow: hidden; }

.trust-bar-track { display: flex; align-items: center; justify-content: center; max-width: 1280px; margin: 0 auto; width: 100%; }
.trust-bar-clone { display: none; }

.trust-bar-item { display: inline-flex; align-items: center; gap: 9px; padding: 15px 22px; font-size: 0.875rem; color: var(--text-secondary); white-space: nowrap; flex-shrink: 0; }
.trust-bar-item svg    { stroke: #10B981; flex-shrink: 0; }
.trust-bar-item strong { color: var(--text-primary); }
.trust-bar-payments    { gap: 10px; }
.payment-icons { display: inline-flex; align-items: center; gap: 8px; }
.trust-bar-divider { width: 1px; height: 24px; background: var(--border-color); flex-shrink: 0; }

@media (max-width: 900px) {
    .wh-trust-bar { -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%); mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%); }
    .trust-bar-clone { display: contents; }
    .trust-bar-track { width: max-content; max-width: none; margin: 0; justify-content: flex-start; animation: trustTicker 28s linear infinite; }
    .trust-bar-track:hover { animation-play-state: paused; }
    @keyframes trustTicker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
}

/* ════════════════════════════════════════════
   PRICING
   ════════════════════════════════════════════ */
.wh-pricing { padding: 80px 0; background: var(--bg-secondary); }

.wh-pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.wh-card {
    background: var(--bg-card); border: 2px solid var(--border-color); border-radius: 16px;
    padding: 28px 22px; display: flex; flex-direction: column;
    box-shadow: var(--shadow-md); transition: all 0.3s ease; position: relative;
}
.wh-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: #6B3DBB; }

.wh-card--featured {
    background: linear-gradient(160deg, #5B2FA6 0%, #7E22CE 60%, #6B21A8 100%);
    border-color: #F59E0B; border-width: 3px;
    transform: scale(1.04); box-shadow: 0 20px 50px rgba(107,61,187,0.4); color: white;
}
.wh-card--featured:hover { transform: scale(1.04) translateY(-4px); }
.wh-card--featured .wh-plan-name,
.wh-card--featured .wh-currency,
.wh-card--featured .wh-amount,
.wh-card--featured .wh-decimal,
.wh-card--featured .wh-period,
.wh-card--featured .wh-plan-tagline { color: white; }
.wh-card--featured .wh-features li { color: rgba(255,255,255,0.9); }
.wh-card--featured .wh-features li::before { color: #FCD34D; }

.wh-popular-badge {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg,#F59E0B,#F97316); color: white;
    padding: 6px 18px; border-radius: 50px; font-weight: 700; font-size: 0.75rem;
    letter-spacing: 1px; white-space: nowrap; box-shadow: 0 4px 12px rgba(245,158,11,0.4);
}

.wh-plan-name   { font-size: 1.375rem; font-weight: 700; color: var(--text-primary); text-align: center; margin: 6px 0 10px; }
.wh-plan-price  { display: flex; align-items: baseline; justify-content: center; gap: 2px; margin-bottom: 4px; }
.wh-currency    { font-size: 1.4rem; font-weight: 600; color: var(--text-secondary); }
.wh-amount      { font-size: 3.5rem; font-weight: 900; line-height: 1; color: var(--text-primary); }
.wh-decimal     { font-size: 1.125rem; color: var(--text-secondary); }
.wh-period      { font-size: 0.875rem; color: var(--text-secondary); font-weight: 500; margin-left: 2px; }
.wh-plan-tagline{ text-align: center; font-size: 0.8125rem; color: var(--text-secondary); margin-bottom: 18px; }

.wh-features { list-style: none; padding: 0; margin: 0 0 20px; flex: 1; display: flex; flex-direction: column; gap: 7px; }
.wh-features li { font-size: 0.875rem; color: var(--text-secondary); padding-left: 22px; position: relative; line-height: 1.4; }
.wh-features li::before { content: '✓'; position: absolute; left: 0; color: #10B981; font-weight: 800; }

.wh-btn-order {
    display: block; width: 100%; text-align: center; padding: 13px;
    font-weight: 700; font-size: 0.9375rem; border-radius: 8px;
    background: linear-gradient(135deg,#6B3DBB,#8E2FE4); color: white;
    text-decoration: none; transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(107,61,187,0.3); margin-top: auto;
}
.wh-btn-order:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(107,61,187,0.4); }
.wh-card--featured .wh-btn-order { background: linear-gradient(135deg,#F59E0B,#F97316); box-shadow: 0 4px 16px rgba(245,158,11,0.35); }

/* ════════════════════════════════════════════
   WORDPRESS SECTION
   ════════════════════════════════════════════ */
.wh-wordpress { padding: 80px 0; background: var(--bg-primary); }

.wh-wp-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

.wh-wp-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(107,61,187,0.1); color: #6B3DBB;
    border: 1px solid rgba(107,61,187,0.25); border-radius: 50px;
    padding: 8px 16px; font-size: 0.8125rem; font-weight: 600; margin-bottom: 20px;
}
.wh-wp-badge svg { stroke: #6B3DBB; }

.wh-wp-text h2 { font-size: clamp(1.625rem,3vw,2.25rem); font-weight: 800; color: var(--text-primary); margin-bottom: 14px; line-height: 1.25; }
.wh-wp-text > p { font-size: 1rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 28px; }

.wh-wp-features { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.wh-wp-feat { display: flex; gap: 14px; align-items: flex-start; }
.wh-wp-feat-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(107,61,187,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.wh-wp-feat-icon svg { stroke: #6B3DBB; }
.wh-wp-feat div { display: flex; flex-direction: column; gap: 3px; }
.wh-wp-feat strong { font-size: 0.9375rem; color: var(--text-primary); }
.wh-wp-feat span   { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.5; }

.wh-wp-cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--gradient-primary); color: white;
    padding: 13px 28px; border-radius: 8px; font-weight: 700; font-size: 1rem;
    text-decoration: none; transition: all var(--transition-base);
    box-shadow: 0 6px 20px rgba(107,61,187,0.3);
}
.wh-wp-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(107,61,187,0.45); }

/* Speed card */
.wp-speed-card {
    background: var(--bg-card); border: 1px solid var(--border-color);
    border-radius: 16px; padding: 28px; box-shadow: var(--shadow-xl);
}

.speed-header { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.9375rem; color: var(--text-primary); margin-bottom: 16px; }
.speed-score { font-size: 4rem; font-weight: 900; color: #10B981; line-height: 1; text-align: center; margin-bottom: 12px; }

.speed-bar-wrap { background: var(--bg-secondary); border-radius: 4px; height: 10px; overflow: hidden; margin-bottom: 16px; }
.speed-bar { height: 100%; width: 98%; background: linear-gradient(90deg,#10B981,#059669); border-radius: 4px; }

.speed-metrics { display: flex; justify-content: space-between; margin-bottom: 20px; }
.speed-metric { text-align: center; }
.metric-val { display: block; font-size: 1.125rem; font-weight: 800; margin-bottom: 2px; }
.metric-val.green { color: #10B981; }
.metric-label { font-size: 0.7rem; color: var(--text-secondary); font-weight: 500; }

.speed-checks { display: flex; flex-direction: column; gap: 8px; }
.speed-check { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; color: var(--text-secondary); }

/* ════════════════════════════════════════════
   WHY DONHOSTER
   ════════════════════════════════════════════ */
.wh-why { padding: 80px 0; background: var(--bg-secondary); }

.wh-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.wh-why-card {
    background: var(--bg-card); border: 1px solid var(--border-color);
    border-radius: 16px; padding: 30px 24px; transition: all 0.3s ease;
    position: relative; overflow: hidden;
}
.wh-why-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(135deg,#6B3DBB,#8E2FE4); opacity: 0; transition: opacity 0.3s; }
.wh-why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); border-color: #6B3DBB; }
.wh-why-card:hover::before { opacity: 1; }

.wh-why-icon { width: 60px; height: 60px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.wh-icon--purple { background: rgba(107,61,187,0.1); }
.wh-icon--purple svg { stroke: #6B3DBB; }
.wh-icon--green  { background: rgba(16,185,129,0.1); }
.wh-icon--green svg { stroke: #10B981; }
.wh-icon--blue   { background: rgba(59,130,246,0.1); }
.wh-icon--blue svg { stroke: #3B82F6; }
.wh-icon--yellow { background: rgba(245,158,11,0.1); }
.wh-icon--yellow svg { stroke: #F59E0B; }

.wh-why-card h3 { font-size: 1.0625rem; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; line-height: 1.3; }
.wh-why-card p  { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; margin: 0; }

/* ════════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════════ */
.wh-testimonials { padding: 80px 0; background: var(--bg-primary); }

.wh-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; display: flex; flex-direction: column; transition: all 0.3s ease; }
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); border-color: #6B3DBB; }
.testimonial-stars { display: flex; gap: 2px; margin-bottom: 16px; }
.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: linear-gradient(135deg,#6B3DBB,#8E2FE4); 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.9rem; color: var(--text-primary); font-style: normal; display: block; }
.author-role { font-size: 0.8125rem; color: var(--text-secondary); margin-top: 2px; }

/* ════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════ */
.wh-faq { padding: 80px 0; background: var(--bg-secondary); }
.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; }
.faq-item.active { border-color: #6B3DBB; }
.faq-question { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 18px 22px; 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; font-family: inherit; }
.faq-question:hover { color: #6B3DBB; }
.faq-item.active .faq-question { color: #6B3DBB; }
.faq-chevron { flex-shrink: 0; transition: transform 0.3s; }
.faq-item.active .faq-chevron { transform: rotate(180deg); color: #6B3DBB; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.active .faq-answer { max-height: 400px; }
.faq-answer p { padding: 0 22px 18px; font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.75; margin: 0; }

/* ════════════════════════════════════════════
   FINAL CTA
   ════════════════════════════════════════════ */
.wh-cta-final { padding: 80px 0; background: linear-gradient(135deg,#6B3DBB 0%,#8E2FE4 50%,#6B3DBB 100%); position: relative; overflow: hidden; }
.wh-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: 640px; margin: 0 auto; }
.cta-final-content h2 { font-size: clamp(1.75rem,4vw,2.75rem); font-weight: 800; color: white; margin-bottom: 14px; line-height: 1.2; }
.cta-final-content > p { font-size: 1.0625rem; color: rgba(255,255,255,0.88); margin-bottom: 32px; line-height: 1.6; }
.cta-final-buttons { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.cta-final-buttons .btn-large.btn-primary { background: linear-gradient(135deg,#10B981,#059669); }
.cta-final-buttons .btn-large.btn-secondary { background: rgba(255,255,255,0.12); color: white; border-color: rgba(255,255,255,0.4); }
.cta-final-buttons .btn-large.btn-secondary:hover { background: rgba(255,255,255,0.2); }
.cta-reassurance { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 0.875rem; color: rgba(255,255,255,0.72); margin: 0; }
.cta-reassurance svg { stroke: rgba(255,255,255,0.72); }

/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .wh-hero-inner     { gap: 2.5rem; }
    .wh-pricing-grid   { grid-template-columns: repeat(2,1fr); }
    .wh-card--featured { transform: none; }
    .wh-card--featured:hover { transform: translateY(-6px); }
    .wh-wp-inner       { gap: 3rem; }
    .wh-why-grid       { grid-template-columns: repeat(2,1fr); }
    .wh-testimonials-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
    .wh-hero { padding: 50px 0 40px; }
    .wh-hero-inner { grid-template-columns: 1fr; gap: 2rem; }
    .wh-hero-copy  { text-align: center; }
    .wh-hero-cta   { justify-content: center; }
    .wh-trust-pills { justify-content: center; }
    .wh-rating     { justify-content: center; }

    .wh-pricing-grid   { grid-template-columns: 1fr; }
    .wh-wp-inner       { grid-template-columns: 1fr; gap: 2rem; }
    .wh-why-grid       { grid-template-columns: 1fr; }
    .wh-testimonials-grid { grid-template-columns: 1fr; }

    .cta-final-buttons { flex-direction: column; align-items: center; }
    .btn-large { width: 100%; max-width: 320px; justify-content: center; }
    .section-container { padding: 0 1.25rem; }
}

/* ════════════════════════════════════════════
   HERO FLOATING BADGES
   ════════════════════════════════════════════ */
.wh-hero-demo { position: relative; }

.demo-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 7px;
    background: white;
    border-radius: 50px;
    padding: 8px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    white-space: nowrap;
    animation: floatBadge 3s ease-in-out infinite;
    z-index: 10;
}

[data-theme="dark"] .demo-badge { background: #1F2937; color: white; }

.demo-badge--ssl {
    bottom: 60px;
    left: -28px;
    color: #10B981;
    animation-delay: 0s;
}

.demo-badge--speed {
    top: 40px;
    right: -24px;
    color: #F59E0B;
    animation-delay: 1s;
}

.demo-badge--wp {
    bottom: 110px;
    right: -20px;
    color: #2271B1;
    animation-delay: 2s;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-6px); }
}

/* ════════════════════════════════════════════
   WEBSITE TYPES GALLERY
   ════════════════════════════════════════════ */
.wh-sites {
    padding: 80px 0;
    background: var(--bg-primary);
}

.wh-sites-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.wh-site-card {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.wh-site-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: #6B3DBB;
}

.wh-site-img {
    position: relative;
    overflow: hidden;
    height: 180px;
}

.wh-site-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.wh-site-card:hover .wh-site-img img {
    transform: scale(1.06);
}

.wh-site-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #6B3DBB;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.wh-site-tag--green  { background: #10B981; }
.wh-site-tag--orange { background: #F97316; }
.wh-site-tag--blue   { background: #3B82F6; }

.wh-site-info {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 16px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* ════════════════════════════════════════════
   WORDPRESS SECTION — new visual
   ════════════════════════════════════════════ */
.wh-wp-screenshot {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,0.18);
}

.wh-wp-screenshot img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
}

/* Overlay score badge */
.wh-wp-score-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

[data-theme="dark"] .wh-wp-score-badge { background: #1F2937; }

.score-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: conic-gradient(#10B981 354deg, #E5E7EB 0deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.score-num   { font-size: 1rem; font-weight: 900; color: #10B981; line-height: 1; }
.score-label { font-size: 0.55rem; color: #6B7280; font-weight: 500; }

.score-info { display: flex; flex-direction: column; gap: 2px; }
.score-info strong { font-size: 0.8125rem; color: #111827; }
.score-info span   { font-size: 0.75rem; color: #6B7280; }
[data-theme="dark"] .score-info strong { color: white; }

/* Overlay uptime badge */
.wh-wp-uptime-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(8px);
    color: white;
    border-radius: 50px;
    padding: 7px 14px;
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Metrics row below screenshot */
.wh-wp-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.wh-metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px 8px;
    border-right: 1px solid var(--border-color);
}

.wh-metric-item:last-child { border-right: none; }

.wh-metric-val   { font-size: 1.25rem; font-weight: 800; color: #10B981; line-height: 1; margin-bottom: 4px; }
.wh-metric-label { font-size: 0.6875rem; color: var(--text-secondary); font-weight: 500; }

/* ════════════════════════════════════════════
   WHY SECTION — background image
   ════════════════════════════════════════════ */
.wh-why { position: relative; padding: 80px 0; background: var(--bg-secondary); overflow: hidden; }

.wh-why-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.wh-why-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.04;
}

.wh-why .section-container,
.wh-why .section-header,
.wh-why .wh-why-grid { position: relative; z-index: 1; }

/* ════════════════════════════════════════════
   DATACENTER SECTION
   ════════════════════════════════════════════ */
.wh-datacenter {
    background: var(--bg-primary);
    overflow: hidden;
}

.wh-dc-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* Image side */
.wh-dc-image {
    position: relative;
    overflow: hidden;
    min-height: 460px;
}

.wh-dc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.wh-datacenter:hover .wh-dc-image img { transform: scale(1.03); }

.wh-dc-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(107,61,187,0.9) 0%, transparent 100%);
    padding: 32px 28px 24px;
    display: flex;
    gap: 28px;
    align-items: flex-end;
}

.wh-dc-stat { text-align: center; }
.dc-stat-num   { display: block; font-size: 1.5rem; font-weight: 900; color: white; line-height: 1; }
.dc-stat-label { display: block; font-size: 0.7rem; color: rgba(255,255,255,0.8); font-weight: 500; margin-top: 3px; text-transform: uppercase; letter-spacing: 0.5px; }

/* Copy side */
.wh-dc-copy {
    padding: 56px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-secondary);
}

.wh-dc-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(107,61,187,0.1);
    color: #6B3DBB;
    border: 1px solid rgba(107,61,187,0.25);
    border-radius: 50px;
    padding: 7px 16px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 20px;
    width: fit-content;
}
.wh-dc-badge svg { stroke: #6B3DBB; }

.wh-dc-copy h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.25;
}

.wh-dc-copy > p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 28px;
}

.wh-dc-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.wh-dc-feat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}



/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .wh-sites-grid { grid-template-columns: repeat(2, 1fr); }
    .wh-dc-inner   { grid-template-columns: 1fr; }
    .wh-dc-image   { min-height: 300px; }
    .wh-dc-copy    { padding: 40px 32px; }
    .demo-badge--ssl   { left: -10px; }
    .demo-badge--speed { right: -10px; }
    .demo-badge--wp    { right: -10px; }
}

@media (max-width: 768px) {
    .wh-sites-grid { grid-template-columns: 1fr; }
    .demo-badge    { display: none; }
    .wh-dc-features { grid-template-columns: 1fr; }
    .wh-wp-metrics { grid-template-columns: repeat(2, 1fr); }
    .wh-metric-item:nth-child(2) { border-right: none; }
    .wh-metric-item:nth-child(3),
    .wh-metric-item:nth-child(4) { border-top: 1px solid var(--border-color); }
}