/* =======================================================
   HOMEPAGE - Dark Theme
   Loaded only on homepage ($templatefile == "homepage")
   ======================================================= */

/* WHMCS wrapper reset */
.clientarea-full, #main-body, .main-content, section#main-body {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
}
.hp-wrap { width: 100%; background: #07060d; box-sizing: border-box; }

/* Hide WHMCS admin inline edit overlays on homepage */
.admin-inline-edit-overlay,
.whmcs-inlineedit-section,
[data-section-type],
.hp-wrap .inline-edit-btn {
    display: none !important;
}

/* ── WHMCS #scrollTop → custom scroll-to-top button ── */
/* Note: display is managed by WHMCS JS (shown after scrolling) */
#scrollTop {
    position: fixed !important;
    bottom: 2rem !important;
    right: 2rem !important;
    width: 46px !important;
    height: 46px !important;
    border-radius: 50% !important;
    background: rgba(139,92,246,0.15) !important;
    border: 1px solid rgba(139,92,246,0.35) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    align-items: center !important;
    justify-content: center !important;
    color: #a78bfa !important;
    font-size: 1rem !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    z-index: 999 !important;
    box-shadow: 0 4px 20px rgba(139,92,246,0.25) !important;
}
#scrollTop:hover {
    background: rgba(139,92,246,0.3) !important;
    border-color: rgba(139,92,246,0.6) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 28px rgba(139,92,246,0.4) !important;
    color: #fff !important;
}

/* ── Scroll-down indicator (separate element, no ::before/::after conflict) ── */
.hp-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 1.5rem 0 0.5rem;
    opacity: 0.5;
    text-decoration: none;
    animation: scroll-fade 2.5s ease-in-out infinite;
}
.hp-scroll-indicator span {
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #a78bfa;
    border-bottom: 2px solid #a78bfa;
    transform: rotate(45deg);
    animation: scroll-chevron 2.5s ease-in-out infinite;
}
.hp-scroll-indicator span:nth-child(2) { animation-delay: 0.2s; }
.hp-scroll-indicator span:nth-child(3) { animation-delay: 0.4s; }
@keyframes scroll-chevron {
    0%   { opacity: 0; transform: rotate(45deg) translate(-4px, -4px); }
    50%  { opacity: 1; }
    100% { opacity: 0; transform: rotate(45deg) translate(4px, 4px); }
}
@keyframes scroll-fade {
    0%, 100% { opacity: 0.4; }
    50%       { opacity: 0.9; }
}
.hp-card-btn::after { display: none !important; }

/* Product card backgrounds */
#pnl-metin .hp-price-card {
    background-image: linear-gradient(180deg, rgba(7,6,13,.4) 0%, rgba(7,6,13,.85) 100%),
                      url('https://ligahosting.com/assets/img/metin2.jpg');
    background-size: cover;
    background-position: top center;
}
#pnl-metin .hp-price-card:hover {
    background-image: linear-gradient(180deg, rgba(7,6,13,.25) 0%, rgba(7,6,13,.75) 100%),
                      url('https://ligahosting.com/assets/img/metin2.jpg');
}
#pnl-vps .hp-price-card,
#pnl-web .hp-price-card {
    background-image: linear-gradient(180deg, rgba(7,6,13,.5) 0%, rgba(7,6,13,.9) 100%),
                      url('https://ligahosting.com/assets/img/vps.jpg');
    background-size: cover;
    background-position: center;
}
#pnl-vps .hp-price-card:hover,
#pnl-web .hp-price-card:hover {
    background-image: linear-gradient(180deg, rgba(7,6,13,.35) 0%, rgba(7,6,13,.8) 100%),
                      url('https://ligahosting.com/assets/img/vps.jpg');
}

/* Scroll animations */
.js-ready .hp-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.js-ready .hp-animate.visible { opacity: 1; transform: translateY(0); }
.hp-animate-delay-1 { transition-delay: .1s; }
.hp-animate-delay-2 { transition-delay: .2s; }
.hp-animate-delay-3 { transition-delay: .3s; }
.hp-animate-delay-4 { transition-delay: .4s; }

/* =============================================
   Animations
   ============================================= */
@keyframes hero-glow {
    0%, 100% { transform: translate(0,0) scale(1); }
    33%       { transform: translate(30px,-40px) scale(1.05); }
    66%       { transform: translate(-20px,30px) scale(.95); }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: .5; transform: scale(.8); }
}
@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}
@keyframes orb-pulse {
    0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: 1; }
    50%       { transform: translate(-50%,-50%) scale(1.1); opacity: .7; }
}
@keyframes orb-spin  { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes panelFadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes shimmerText { 0% { background-position: 200% center; } 100% { background-position: -200% center; } }

/* =============================================
   HERO
   ============================================= */
.hp-wrap { overflow-x: clip; }
.hp-hero {
    background: #07060d;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    max-width: 100vw;
    box-sizing: border-box;
}
.hp-hero::before {
    content: '';
    position: absolute; top: -30%; right: -10%;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(139,92,246,.12) 0%, transparent 60%);
    pointer-events: none;
    animation: hero-glow 20s ease-in-out infinite;
}
.hp-hero::after {
    content: '';
    position: absolute; bottom: -20%; left: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(99,102,241,.08) 0%, transparent 60%);
    pointer-events: none;
    animation: hero-glow 25s ease-in-out infinite reverse;
}
.hp-hero-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(139,92,246,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139,92,246,.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}
.hp-hero-inner {
    position: relative; z-index: 2;
    max-width: 1400px; width: 100%;
    margin: 0 auto; padding: 120px 40px 80px;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
    box-sizing: border-box;
}
.hp-hero-left  { animation: fadeUp .8s ease both; }
.hp-hero-right {
    display: flex; justify-content: center; align-items: center;
    animation: fadeUp .8s ease .2s both;
}
.hp-hero-desc  { color: #94a3b8; font-size: 1.1rem; line-height: 1.8; margin: 0 0 40px; max-width: 520px; }
.hp-hero-btns  { display: flex; gap: 16px; margin-bottom: 48px; flex-wrap: wrap; }
.hp-hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }

.hp-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(139,92,246,.08); border: 1px solid rgba(139,92,246,.15);
    padding: 8px 20px; border-radius: 100px;
    color: #a78bfa; font-size: .8rem; font-weight: 600;
    margin-bottom: 32px; letter-spacing: .02em;
}
.hp-badge-dot {
    width: 8px; height: 8px; background: #22c55e; border-radius: 50%;
    box-shadow: 0 0 10px rgba(34,197,94,.8);
    animation: pulse-dot 2s ease-in-out infinite; flex-shrink: 0;
}
.hp-hero h1 {
    color: #f1f5f9; font-size: clamp(2.5rem, 4.5vw, 4.5rem);
    font-weight: 900; margin: 0 0 24px; line-height: 1.05; letter-spacing: -.04em;
}
.hp-hero h1 .hp-grad {
    background: linear-gradient(135deg, #a78bfa 0%, #818cf8 40%, #60a5fa 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hp-hero-stat-num   { font-size: 1.5rem; font-weight: 800; color: #e2e8f0; line-height: 1; }
.hp-hero-stat-label { font-size: .8rem; color: #64748b; font-weight: 500; margin-top: 4px; text-transform: uppercase; letter-spacing: .05em; }

.hp-btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    color: #fff; padding: 16px 36px; border-radius: 14px;
    font-size: 1rem; font-weight: 700; text-decoration: none;
    transition: all .3s cubic-bezier(.175,.885,.32,1.275);
    box-shadow: 0 4px 20px rgba(139,92,246,.3), inset 0 1px 0 rgba(255,255,255,.1);
}
.hp-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(139,92,246,.4); color: #fff; text-decoration: none; }
.hp-btn-secondary {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
    color: #e2e8f0; padding: 16px 36px; border-radius: 14px;
    font-size: 1rem; font-weight: 600; text-decoration: none;
    transition: all .25s ease; backdrop-filter: blur(8px);
}
.hp-btn-secondary:hover { background: rgba(255,255,255,.08); border-color: rgba(139,92,246,.3); color: #fff; text-decoration: none; }

/* Floating cards */
.hp-float-cards { position: relative; width: 100%; aspect-ratio: 1; max-width: 440px; margin: 0 auto; }
.hp-float-card {
    position: absolute; background: rgba(22,19,42,.8); backdrop-filter: blur(20px);
    border: 1px solid rgba(139,92,246,.15); border-radius: 16px; padding: 20px 24px;
    display: flex; align-items: center; gap: 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,.3); transition: all .3s ease;
    animation: float-card 6s ease-in-out infinite; white-space: nowrap;
}
.hp-float-card:hover { border-color: rgba(139,92,246,.3); transform: translateY(-4px); }
.hp-float-card:nth-child(2) { top: 5%;    left: 0;   animation-delay: 0s;    }
.hp-float-card:nth-child(3) { top: 30%;   right: 0;  animation-delay: -1.5s; }
.hp-float-card:nth-child(4) { bottom: 25%; left: 5%; animation-delay: -3s;   }
.hp-float-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.hp-float-info h4 { font-size: .875rem; font-weight: 700; color: #e2e8f0; margin: 0 0 2px; }
.hp-float-info p  { font-size: .75rem; color: #64748b; margin: 0; font-weight: 500; }
.hp-center-orb {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 160px; height: 160px; border-radius: 50%;
    background: radial-gradient(circle, rgba(139,92,246,.2) 0%, rgba(139,92,246,.05) 50%, transparent 70%);
    box-shadow: 0 0 80px rgba(139,92,246,.15);
    animation: orb-pulse 4s ease-in-out infinite;
}
.hp-center-orb::after {
    content: ''; position: absolute; inset: 20px; border-radius: 50%;
    border: 2px solid rgba(139,92,246,.15);
    animation: orb-spin 20s linear infinite;
}

/* =============================================
   Brand Strip
   ============================================= */
.hp-brands {
    background: #07060d;
    border-top: 1px solid rgba(255,255,255,.04);
    border-bottom: 1px solid rgba(255,255,255,.04);
    padding: 28px 24px;
}
.hp-brands-inner {
    max-width: 1400px; margin: 0 auto;
    display: flex; align-items: center; justify-content: center;
    gap: 48px; flex-wrap: wrap;
}
.hp-brand-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.35); font-size: .85rem; font-weight: 600; transition: color .2s; }
.hp-brand-item:hover { color: rgba(255,255,255,.6); }
.hp-brand-item i { font-size: 1.1rem; }

/* =============================================
   Category Tabs
   ============================================= */
.hp-tabs-section { background: #0a0914; padding: 0 24px; position: relative; z-index: 3; }
.hp-tabs { display: flex; justify-content: center; gap: 8px; max-width: 800px; margin: 0 auto; flex-wrap: wrap; padding: 0; }
.hp-tab {
    display: flex; align-items: center; gap: 10px;
    padding: 16px 32px; background: transparent;
    border: 1px solid transparent; border-bottom: 3px solid transparent;
    color: #64748b; font-size: .95rem; font-weight: 600;
    cursor: pointer; transition: all .25s ease;
}
.hp-tab:hover { color: #cbd5e1; background: rgba(139,92,246,.04); }
.hp-tab.on    { color: #a78bfa; border-bottom-color: #8b5cf6; background: rgba(139,92,246,.06); }
.hp-tab i { font-size: .9rem; }

/* =============================================
   Pricing Section
   ============================================= */
.hp-pricing {
    background: linear-gradient(180deg, #0a0914 0%, #0e0c18 40%, #0a0914 100%);
    padding: 80px 30px 100px; position: relative; overflow: hidden;
}
.hp-pricing::before {
    content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 900px; height: 900px;
    background: radial-gradient(circle, rgba(139,92,246,.04) 0%, transparent 60%);
    pointer-events: none;
}
.hp-pricing-inner { max-width: 1400px; margin: 0 auto; position: relative; }
.hp-section-header { text-align: center; margin-bottom: 56px; }
.hp-section-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(139,92,246,.08); border: 1px solid rgba(139,92,246,.15);
    color: #a78bfa; font-size: .75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .1em;
    padding: 6px 16px; border-radius: 100px; margin-bottom: 20px;
}
.hp-section-header h2 { font-size: 2.75rem; font-weight: 800; color: #f1f5f9; margin: 0 0 16px; letter-spacing: -.03em; }
.hp-section-header p  { font-size: 1.1rem; color: #64748b; margin: 0 auto; max-width: 560px; line-height: 1.7; }
.hp-panel    { display: none; animation: panelFadeIn .4s ease; }
.hp-panel.on { display: block; }
.hp-price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 16px; }
@media (max-width: 1100px) { .hp-price-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .hp-price-grid { grid-template-columns: 1fr; } }

/* Price Card */
.hp-price-card {
    background: #0e0c18; border-radius: 20px;
    border: 1px solid rgba(139,92,246,.15); overflow: hidden;
    transition: all .4s cubic-bezier(.4,0,.2,1);
    position: relative; display: flex; flex-direction: column;
}
.hp-price-card:hover {
    border-color: rgba(139,92,246,.35);
    box-shadow: 0 0 0 1px rgba(139,92,246,.1), 0 20px 50px rgba(0,0,0,.6);
    transform: translateY(-6px);
}
.hp-price-card.featured {
    border: 1px solid rgba(139,92,246,.4);
    box-shadow: 0 0 0 1px rgba(139,92,246,.15), 0 8px 40px rgba(139,92,246,.3);
}
.hp-price-card.featured:hover {
    box-shadow: 0 0 0 1px rgba(139,92,246,.25), 0 24px 60px rgba(139,92,246,.4);
    transform: translateY(-8px);
}
.hp-price-card.featured::after {
    content: ''; position: absolute; top: 0; left: 20%; right: 20%; height: 3px;
    background: linear-gradient(90deg, transparent, #8b5cf6, #6366f1, #8b5cf6, transparent);
    border-radius: 0 0 3px 3px;
}
.hp-popular-badge {
    position: absolute; top: 16px; right: 16px;
    background: linear-gradient(135deg, #8b5cf6, #6366f1); color: #fff;
    font-size: .6rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em;
    padding: 5px 12px; border-radius: 100px; box-shadow: 0 2px 10px rgba(139,92,246,.4); z-index: 2;
}
.hp-card-head { padding: 18px 20px 0; text-align: left; position: relative; z-index: 2; }
.hp-card-name { font-size: 1.2rem; font-weight: 800; color: #f1f5f9; margin: 0 0 4px; letter-spacing: -.02em; text-shadow: 0 2px 6px rgba(0,0,0,.8); }
.hp-card-desc { font-size: .7rem; color: #cbd5e1; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; margin: 0; text-shadow: 0 2px 6px rgba(0,0,0,.8); }
.hp-card-price { padding: 12px 20px 12px; text-align: left; border-bottom: 1px solid rgba(255,255,255,.08); position: relative; z-index: 2; }
.hp-card-amount { font-size: 2.25rem; font-weight: 900; color: #f1f5f9; line-height: 1; display: inline-flex; align-items: baseline; text-shadow: 0 2px 6px rgba(0,0,0,.8); }
.hp-card-amount .currency { font-size: 1.1rem; font-weight: 700; color: #a78bfa; margin-right: 2px; }
.hp-card-amount .period   { font-size: .8rem; font-weight: 500; color: #cbd5e1; margin-left: 4px; }
.hp-card-specs { padding: 10px 20px 6px; flex: 1; position: relative; z-index: 2; }
.hp-card-spec { display: flex; align-items: center; gap: 10px; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.06); transition: padding-left .2s; }
.hp-card-spec:last-child { border-bottom: none; }
.hp-card-spec:hover { padding-left: 4px; }
.hp-card-spec-label { display: flex; align-items: center; gap: 10px; font-size: .8125rem; color: #e2e8f0; font-weight: 500; flex: 1; text-shadow: 0 2px 6px rgba(0,0,0,.8); }
.hp-card-spec-label i  { color: #a78bfa; width: 16px; font-size: .75rem; text-align: center; opacity: .9; }
.hp-card-spec-value { font-size: .8125rem; font-weight: 700; color: #fff; text-align: right; text-shadow: 0 2px 6px rgba(0,0,0,.8); }
.hp-card-foot { padding: 12px 20px 18px; margin-top: auto; position: relative; z-index: 2; }
.hp-card-btn {
    display: flex; width: 100%; padding: 14px; align-items: center; justify-content: center;
    gap: 8px; font-size: .875rem; font-weight: 700; border-radius: 12px;
    text-decoration: none; transition: all .3s ease;
    background: rgba(139,92,246,.2); border: 1px solid rgba(139,92,246,.35); color: #fff;
}
.hp-card-btn i { font-size: .8rem; transition: transform .3s; }
.hp-card-btn:hover { background: linear-gradient(135deg, #8b5cf6, #6366f1); border-color: transparent; color: #fff; text-decoration: none; box-shadow: 0 4px 20px rgba(139,92,246,.4); }
.hp-card-btn:hover i { transform: translateX(4px); }
.hp-price-card.featured .hp-card-btn { background: linear-gradient(135deg, #8b5cf6, #6366f1); border-color: transparent; color: #fff; box-shadow: 0 4px 15px rgba(139,92,246,.3); }
.hp-price-card.featured .hp-card-btn:hover { box-shadow: 0 8px 30px rgba(139,92,246,.5); background: linear-gradient(135deg, #7c3aed, #4f46e5); }
.hp-section-note { text-align: center; margin-top: 32px; color: #64748b; font-size: .9rem; display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; }
.hp-section-note i { color: #8b5cf6; }
.hp-section-note strong { color: #a0aec0; }
.hp-metin-locations { text-align: center; margin-top: 32px; display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }
.hp-metin-loc { display: flex; align-items: center; gap: 8px; color: #94a3b8; font-size: .9rem; font-weight: 500; }
.hp-metin-loc img { border-radius: 3px; vertical-align: middle; }

/* =============================================
   Features
   ============================================= */
.hp-features {
    background: #07060d; padding: 100px 30px;
    position: relative; overflow: hidden;
}
.hp-features::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(139,92,246,.2) 50%, transparent 100%);
}
.hp-feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1400px; margin: 0 auto; }
.hp-feat-card {
    padding: 32px; background: rgba(14,12,24,.4);
    border: 1px solid rgba(139,92,246,.06); border-radius: 20px;
    transition: all .3s ease; position: relative; overflow: hidden;
}
.hp-feat-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, rgba(139,92,246,.3), transparent); opacity: 0; transition: opacity .3s; }
.hp-feat-card:hover { border-color: rgba(139,92,246,.15); background: rgba(22,19,42,.4); transform: translateY(-4px); }
.hp-feat-card:hover::before { opacity: 1; }
.hp-feat-icon { width: 52px; height: 52px; background: rgba(139,92,246,.08); border: 1px solid rgba(139,92,246,.12); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: #a78bfa; margin-bottom: 20px; }
.hp-feat-card h4 { font-size: 1.1rem; font-weight: 700; color: #e2e8f0; margin: 0 0 10px; }
.hp-feat-card p  { font-size: .9rem; color: #64748b; line-height: 1.7; margin: 0; }

/* =============================================
   Data Centers
   ============================================= */
.hp-locations { background: linear-gradient(180deg, #07060d 0%, #0e0c18 50%, #07060d 100%); padding: 100px 30px; }
.hp-loc-stats { display: flex; justify-content: center; gap: 64px; margin-bottom: 56px; flex-wrap: wrap; }
.hp-loc-stat { text-align: center; }
.hp-loc-stat-num   { font-size: 3rem; font-weight: 900; background: linear-gradient(135deg, #a78bfa, #818cf8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 8px; }
.hp-loc-stat-label { font-size: .85rem; color: #64748b; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.hp-dc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 1400px; margin: 0 auto; }
.hp-dc-card { background: rgba(14,12,24,.5); border: 1px solid rgba(139,92,246,.08); border-radius: 16px; padding: 20px; transition: all .3s ease; }
.hp-dc-card:hover { border-color: rgba(139,92,246,.2); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.2); }
.hp-dc-card.primary { border-color: rgba(139,92,246,.2); background: rgba(22,19,42,.5); }
.hp-dc-head { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.hp-dc-flag { width: 36px; height: 27px; border-radius: 4px; object-fit: cover; box-shadow: 0 2px 8px rgba(0,0,0,.15); flex-shrink: 0; }
.hp-dc-city    { font-size: 1rem; font-weight: 800; color: #e2e8f0; line-height: 1.2; }
.hp-dc-country { font-size: .75rem; color: #64748b; font-weight: 500; }
.hp-dc-status  { margin-left: auto; display: flex; align-items: center; gap: 6px; background: rgba(34,197,94,.08); color: #6ee7b7; font-size: .7rem; font-weight: 700; padding: 6px 14px; border-radius: 100px; border: 1px solid rgba(34,197,94,.15); white-space: nowrap; text-transform: uppercase; letter-spacing: .05em; }
.hp-dc-dot { width: 7px; height: 7px; background: #22c55e; border-radius: 50%; box-shadow: 0 0 8px rgba(34,197,94,.6); animation: pulse-dot 2s ease-in-out infinite; }
.hp-dc-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
.hp-dc-spec { display: flex; align-items: center; gap: 8px; font-size: .825rem; color: #94a3b8; font-weight: 500; }
.hp-dc-spec i { color: rgba(139,92,246,.6); width: 14px; font-size: .75rem; flex-shrink: 0; }
.hp-dc-tags { display: flex; gap: 8px; flex-wrap: wrap; padding-top: 16px; border-top: 1px solid rgba(139,92,246,.06); }
.hp-dc-tag { display: inline-flex; align-items: center; gap: 5px; background: rgba(139,92,246,.06); color: #a78bfa; font-size: .7rem; font-weight: 700; padding: 5px 12px; border-radius: 100px; border: 1px solid rgba(139,92,246,.1); text-transform: uppercase; letter-spacing: .04em; }

/* =============================================
   CTA & Trustpilot
   ============================================= */
.hp-cta-section {
    background: #07060d !important;
    padding: 80px 30px 60px; text-align: center;
    position: relative; overflow: hidden;
    border-top: 1px solid rgba(139,92,246,.1);
}
.hp-cta-section::before {
    content: ''; position: absolute; top: 30%; left: 50%; transform: translate(-50%,-50%);
    width: 1200px; height: 600px;
    background: radial-gradient(ellipse, rgba(139,92,246,.06) 0%, rgba(99,102,241,.03) 40%, transparent 70%);
    pointer-events: none;
}
.hp-cta-section::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(139,92,246,.15), transparent); }
.hp-cta-inner { max-width: 800px; margin: 0 auto; position: relative; }
.hp-cta-section h2 {
    font-size: 2.75rem; font-weight: 800; margin: 0 0 16px; letter-spacing: -.03em;
    background: linear-gradient(135deg, #f1f5f9 0%, #a78bfa 50%, #f1f5f9 100%);
    background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; animation: shimmerText 4s linear infinite;
}
.hp-cta-section p { color: #718096; font-size: 1.05rem; margin: 0 auto 40px; max-width: 520px; line-height: 1.7; position: relative; }
.hp-cta-features { display: flex; justify-content: center; gap: 16px; margin-bottom: 40px; flex-wrap: wrap; }
.hp-cta-feat { display: inline-flex; align-items: center; gap: 8px; color: #a0aec0; font-size: .8125rem; font-weight: 500; padding: 8px 18px; background: rgba(139,92,246,.06); border: 1px solid rgba(139,92,246,.1); border-radius: 100px; transition: all .2s ease; }
.hp-cta-feat:hover { border-color: rgba(139,92,246,.25); color: #a78bfa; }
.hp-cta-feat i { font-size: .7rem; color: #8b5cf6; }
.hp-cta-btn { display: inline-flex; align-items: center; gap: 10px; background: linear-gradient(135deg, #7c3aed, #6366f1); color: #fff; padding: 14px 36px; border-radius: 100px; font-size: .9375rem; font-weight: 700; text-decoration: none; box-shadow: 0 4px 20px rgba(139,92,246,.25); transition: all .3s ease; }
.hp-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(139,92,246,.35); color: #fff; text-decoration: none; }

/* Trustpilot */
.hp-trustpilot { margin-top: 56px; padding-top: 48px; border-top: 1px solid rgba(139,92,246,.08); }
.hp-trustpilot a { text-decoration: none !important; color: inherit !important; }
.hp-tp-label { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: .8125rem; font-weight: 500; color: #718096; margin-bottom: 16px; }
.hp-tp-label img { height: 20px; }
.hp-tp-stars { display: flex; justify-content: center; gap: 4px; margin-bottom: 12px; }
.hp-tp-star { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; background: #00b67a; border-radius: 4px; color: #fff; font-size: .75rem; }
.hp-tp-score { font-size: .9375rem; font-weight: 700; color: #e2e8f0; margin-bottom: 4px; }
.hp-tp-count { font-size: .8125rem; color: #718096; }
.hp-tp-reviews { display: flex; justify-content: center; gap: 20px; margin-top: 28px; flex-wrap: wrap; }
.hp-tp-review { background: rgba(22,19,42,.6); border: 1px solid rgba(139,92,246,.08); border-radius: 16px; padding: 20px 24px; max-width: 260px; text-align: left; transition: all .2s ease; }
.hp-tp-review:hover { border-color: rgba(139,92,246,.2); transform: translateY(-2px); }
.hp-tp-review-stars { display: flex; gap: 2px; margin-bottom: 10px; }
.hp-tp-review-stars i { color: #00b67a; font-size: .6875rem; }
.hp-tp-review-text   { color: #a0aec0; font-size: .8125rem; line-height: 1.5; margin-bottom: 10px; font-style: italic; }
.hp-tp-review-author { font-size: .75rem; color: #718096; font-weight: 600; }

/* =============================================
   Responsive — ALL overrides consolidated here
   ============================================= */
@media (max-width: 1100px) {
    .hp-price-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 1000px) {
    .hp-hero-inner {
        grid-template-columns: 1fr; gap: 48px;
        padding: 100px 30px 60px; text-align: center;
    }
    .hp-hero-right { order: -1; }
    .hp-hero-desc  { max-width: 100%; margin-left: auto; margin-right: auto; }
    .hp-hero-btns  { justify-content: center; }
    .hp-hero-stats { justify-content: center; }
    .hp-float-cards { max-width: 360px; }
}
@media (max-width: 900px) {
    .hp-feat-grid { grid-template-columns: repeat(2, 1fr); }
    .hp-dc-grid   { grid-template-columns: 1fr; max-width: 500px; }
}
@media (max-width: 650px) {
    .hp-price-grid     { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
    .hp-cta-section    { padding: 60px 20px 40px; }
    .hp-cta-section h2 { font-size: 1.75rem; }
    .hp-cta-features   { gap: 10px; }
    .hp-cta-feat       { padding: 6px 14px; font-size: .75rem; }
    .hp-tp-reviews     { gap: 12px; }
    .hp-tp-review      { max-width: 100%; }
}
@media (max-width: 600px) {
    .hp-hero         { min-height: auto; }
    .hp-hero-inner   { padding: 80px 20px 40px; }
    .hp-hero-stats   { gap: 24px; }
    .hp-hero-right, .hp-float-cards, .hp-center-orb { display: none; }
    .hp-tabs         { gap: 4px; }
    .hp-tab          { flex: 1 1 40%; justify-content: center; padding: 14px 16px; font-size: .85rem; border-bottom-width: 2px; }
    .hp-feat-grid    { grid-template-columns: 1fr; }
}
