/*
Theme Name: VarnaHost
Theme URI: https://vernahost.ir
Author: VarnaHost Team
Author URI: https://vernahost.ir
Description: قالب حرفه‌ای هاستینگ ورناهاست با طراحی گلاسمورفیسم و اتصال به WHMCS
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: varnahost
Domain Path: /languages
*/

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: 'Vazirmatn', sans-serif;
    background: #F0F4F8;
    color: #334155;
    line-height: 1.7;
    direction: rtl;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
::selection { background: #0A5EFF; color: white; }

/* ===== Scrollbar ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #F0F4F8; }
::-webkit-scrollbar-thumb { background: #CBD5E1; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #94A3B8; }

/* ===== Glass System ===== */
.glass {
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.5);
}
.glass-strong {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.6);
}

/* ===== Blobs ===== */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    pointer-events: none;
}

/* ===== Animations ===== */
@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pageIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.float-anim { animation: floatY 6s ease-in-out infinite; }
.float-anim-delay { animation: floatY 6s ease-in-out 2s infinite; }
.float-anim-delay2 { animation: floatY 6s ease-in-out 4s infinite; }
.fade-in { animation: fadeIn 0.5s ease-out; }
.page-transition { animation: pageIn 0.4s ease-out; }

/* ===== Buttons ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--vh-primary, #0A5EFF);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 12px 28px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(10,94,255,0.3);
    transition: all 0.3s;
}
.btn-primary:hover {
    background: var(--vh-primary-dark, #0044CC);
    box-shadow: 0 6px 24px rgba(10,94,255,0.45);
    transform: translateY(-1px);
}
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--vh-primary, #0A5EFF);
    border: 2px solid rgba(10,94,255,0.3);
    border-radius: 12px;
    padding: 10px 28px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
.btn-outline:hover {
    border-color: var(--vh-primary, #0A5EFF);
    background: rgba(10,94,255,0.05);
}

/* ===== Header ===== */
.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 50;
    transition: box-shadow 0.3s;
}
.site-header.scrolled {
    box-shadow: 0 4px 24px rgba(15,23,42,0.06);
}
.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}
.header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.site-logo-icon {
    width: 36px;
    height: 36px;
    background: var(--vh-primary, #0A5EFF);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(10,94,255,0.25);
}
.site-logo-icon svg { width: 20px; height: 20px; color: #fff; }
.site-logo-text { font-size: 18px; font-weight: 700; color: #0F172A; }
.site-logo-text span { color: var(--vh-primary, #0A5EFF); }

/* Desktop Nav */
.main-nav { display: none; }
@media (min-width: 1024px) {
    .main-nav { display: flex; align-items: center; gap: 4px; }
}
.main-nav a {
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #475569;
    transition: all 0.2s;
}
.main-nav a:hover,
.main-nav a.current-menu-item {
    color: var(--vh-primary, #0A5EFF);
    background: rgba(10,94,255,0.05);
}

/* Header Actions */
.header-actions { display: none; align-items: center; gap: 12px; }
@media (min-width: 1024px) {
    .header-actions { display: flex; }
}
.header-actions .btn-login {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #475569;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: color 0.2s;
}
.header-actions .btn-login:hover { color: var(--vh-primary, #0A5EFF); }
.header-actions .btn-buy {
    padding: 10px 20px;
    font-size: 14px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    padding: 8px;
    border-radius: 8px;
    border: none;
    background: none;
    cursor: pointer;
    color: #334155;
    transition: background 0.2s;
}
@media (min-width: 1024px) {
    .mobile-menu-btn { display: none; }
}
.mobile-menu-btn:hover { background: #F1F5F9; }

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 60;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.mobile-menu-overlay.active { opacity: 1; pointer-events: auto; }
.mobile-menu-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: #fff;
    z-index: 61;
    transform: translateX(100%);
    transition: transform 0.3s ease-out;
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 32px rgba(0,0,0,0.1);
}
.mobile-menu-panel.active { transform: translateX(0); }
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1px solid #F1F5F9;
}
.mobile-menu-close {
    padding: 8px;
    border: none;
    background: none;
    cursor: pointer;
    border-radius: 8px;
    color: #334155;
}
.mobile-menu-close:hover { background: #F1F5F9; }
.mobile-menu-nav {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
}
.mobile-menu-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    color: #334155;
    transition: all 0.2s;
}
.mobile-menu-nav a:hover {
    background: rgba(10,94,255,0.05);
    color: var(--vh-primary, #0A5EFF);
}
.mobile-menu-footer {
    padding: 16px;
    border-top: 1px solid #F1F5F9;
}
.mobile-menu-footer .btn-primary { width: 100%; justify-content: center; }

/* ===== Hero ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0 64px;
    overflow: hidden;
}
.hero-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}
@media (min-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr 1fr; gap: 32px; padding: 0 2rem; }
}
.hero-content { text-align: center; }
@media (min-width: 1024px) {
    .hero-content { text-align: right; }
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(10,94,255,0.08);
    border: 1px solid rgba(10,94,255,0.15);
    margin-bottom: 24px;
}
.hero-badge span { font-size: 12px; font-weight: 600; color: var(--vh-primary, #0A5EFF); }
.hero-title {
    font-size: 2rem;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}
@media (min-width: 640px) { .hero-title { font-size: 2.5rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 3.4rem; } }
.hero-title em { font-style: normal; color: var(--vh-primary, #0A5EFF); }
.hero-desc {
    font-size: 16px;
    color: #64748B;
    line-height: 1.8;
    max-width: 540px;
    margin: 0 auto 32px;
}
@media (min-width: 1024px) { .hero-desc { margin: 0 0 32px; } }
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
}
@media (min-width: 1024px) { .hero-buttons { justify-content: flex-start; } }
.hero-perks {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    font-size: 12px;
    color: #94A3B8;
}
@media (min-width: 1024px) { .hero-perks { justify-content: flex-start; } }
.hero-perks span { display: flex; align-items: center; gap: 6px; }
.hero-perks svg { width: 14px; height: 14px; color: #22C55E; }

/* Hero Illustration */
.hero-illustration {
    display: flex;
    justify-content: center;
}
@media (min-width: 1024px) { .hero-illustration { justify-content: flex-start; } }
.hero-illust-wrapper {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1;
}
.orbit-ring {
    position: absolute;
    border: 1.5px dashed rgba(10,94,255,0.2);
    border-radius: 50%;
    animation: spin 30s linear infinite;
}
.hero-server-card {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(10,94,255,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    animation: floatY 6s ease-in-out infinite;
}
.hero-server-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(10,94,255,0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-server-card-icon svg { width: 28px; height: 28px; color: var(--vh-primary, #0A5EFF); }
.hero-server-card-label { font-size: 14px; font-weight: 700; color: #0F172A; }
.hero-server-card-status { display: flex; align-items: center; gap: 6px; }
.hero-server-card-status .dot {
    width: 8px; height: 8px; border-radius: 50%; background: #22C55E;
    animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero-server-card-status span { font-size: 12px; color: #16A34A; font-weight: 500; }

.hero-float-badge {
    position: absolute;
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(16px);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.hero-float-badge svg { width: 24px; height: 24px; }
.hero-float-badge.wp { top: 16px; right: 16px; animation: floatY 6s ease-in-out 2s infinite; }
.hero-float-badge.wp .wp-w {
    font-size: 20px; font-weight: 800; color: #fff;
    width: 48px; height: 48px;
    background: linear-gradient(135deg, #21759B, #0A5EFF);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(10,94,255,0.3);
}
.hero-float-badge.shield { bottom: 48px; left: 0; animation: floatY 6s ease-in-out 4s infinite; }
.hero-float-badge.shield svg { color: #22C55E; }
.hero-float-badge.zap { top: 64px; left: 16px; animation: floatY 6s ease-in-out infinite; }
.hero-float-badge.zap svg { color: #EAB308; }
.hero-float-badge.chart { bottom: 16px; right: 32px; animation: floatY 6s ease-in-out 2s infinite; }
.hero-float-badge.chart svg { color: var(--vh-primary, #0A5EFF); }
.hero-float-badge.globe { top: 50%; left: -16px; transform: translateY(-50%); animation: floatY 6s ease-in-out 4s infinite; }
.hero-float-badge.globe svg { color: #A855F7; }

/* ===== Trust Bar ===== */
.trust-bar-section {
    position: relative;
    z-index: 1;
    margin-top: -32px;
    padding-bottom: 64px;
}
.trust-bar-inner {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 1rem;
}
.trust-bar-card {
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(15,23,42,0.05);
}
.trust-bar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
@media (min-width: 1024px) { .trust-bar-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}
@media (min-width: 640px) { .trust-item { justify-content: flex-start; } }
.trust-item-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.trust-item-icon svg { width: 20px; height: 20px; }
.trust-item-icon.green { background: #F0FDF4; }
.trust-item-icon.green svg { color: #22C55E; }
.trust-item-icon.blue { background: #EFF6FF; }
.trust-item-icon.blue svg { color: #0A5EFF; }
.trust-item-icon.purple { background: #FAF5FF; }
.trust-item-icon.purple svg { color: #A855F7; }
.trust-item-icon.emerald { background: #ECFDF5; }
.trust-item-icon.emerald svg { color: #10B981; }
.trust-item-title { font-size: 14px; font-weight: 700; color: #0F172A; }
.trust-item-sub { font-size: 12px; color: #94A3B8; }

/* ===== Section Common ===== */
.section { padding: 80px 0; position: relative; }
.section-inner { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 1024px) { .section-inner { padding: 0 2rem; } }
.section-header { text-align: center; margin-bottom: 56px; }
.section-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(10,94,255,0.08);
    font-size: 12px;
    font-weight: 600;
    color: var(--vh-primary, #0A5EFF);
    margin-bottom: 16px;
}
.section-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -0.02em;
}
@media (min-width: 640px) { .section-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .section-title { font-size: 2.5rem; } }
.section-desc { font-size: 15px; color: #64748B; max-width: 560px; margin: 12px auto 0; }

/* ===== Services ===== */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
.service-card {
    border-radius: 16px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(10,94,255,0.12);
}
.service-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.3s;
}
.service-card:hover .service-card-icon { transform: scale(1.1); }
.service-card-icon svg { width: 28px; height: 28px; color: #fff; }
.service-card-icon.blue { background: linear-gradient(135deg, #3B82F6, #0A5EFF); box-shadow: 0 4px 16px rgba(10,94,255,0.2); }
.service-card-icon.purple { background: linear-gradient(135deg, #A855F7, #6D28D9); box-shadow: 0 4px 16px rgba(147,51,234,0.2); }
.service-card-icon.dark { background: linear-gradient(135deg, #475569, #0F172A); box-shadow: 0 4px 16px rgba(15,23,42,0.2); }
.service-card h3 { font-size: 18px; font-weight: 700; color: #0F172A; margin-bottom: 12px; }
.service-card p { font-size: 14px; color: #64748B; line-height: 1.8; margin-bottom: 20px; }
.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--vh-primary, #0A5EFF);
    transition: gap 0.3s;
}
.service-card:hover .service-card-link { gap: 12px; }
.service-card-link.purple-link { color: #7C3AED; }
.service-card-link.dark-link { color: #334155; }
.service-card-link svg { width: 16px; height: 16px; }

/* ===== Why Us ===== */
.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}
@media (min-width: 1024px) { .why-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }
.why-benefits { order: 2; }
@media (min-width: 1024px) { .why-benefits { order: 1; } }
.why-mockup { order: 1; display: flex; justify-content: center; }
@media (min-width: 1024px) { .why-mockup { order: 2; justify-content: flex-start; } }
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}
.benefit-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #F0FDF4;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.benefit-check svg { width: 14px; height: 14px; color: #16A34A; }
.benefit-title { font-size: 14px; font-weight: 700; color: #1E293B; }
.benefit-desc { font-size: 12px; color: #94A3B8; margin-top: 2px; }

/* Dashboard Mockup */
.mockup-card {
    width: 100%;
    max-width: 400px;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(10,94,255,0.08);
    border: 1px solid rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(20px);
}
.mockup-dots {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
}
.mockup-dots span {
    width: 12px; height: 12px; border-radius: 50%;
}
.mockup-dots .r { background: #F87171; }
.mockup-dots .y { background: #FBBF24; }
.mockup-dots .g { background: #34D399; }
.mockup-url { font-size: 10px; color: #94A3B8; font-family: monospace; text-align: left; }
.mockup-services { margin-bottom: 20px; }
.mockup-service {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 8px;
}
.mockup-service.green { background: #F0FDF4; border: 1px solid #DCFCE7; }
.mockup-service.orange { background: #FFFBEB; border: 1px solid #FEF3C7; }
.mockup-service-info { display: flex; align-items: center; gap: 8px; }
.mockup-service-dot { width: 8px; height: 8px; border-radius: 50%; }
.mockup-service-dot.green { background: #22C55E; }
.mockup-service-dot.orange { background: #F97316; }
.mockup-service-name { font-size: 12px; font-weight: 600; color: #334155; }
.mockup-service-badge {
    font-size: 10px; font-weight: 600; padding: 2px 8px; border-radius: 999px;
}
.mockup-service-badge.green { background: #DCFCE7; color: #16A34A; }
.mockup-service-badge.orange { background: #FEF3C7; color: #D97706; }
.mockup-bar { margin-bottom: 12px; }
.mockup-bar-header { display: flex; justify-content: space-between; font-size: 10px; margin-bottom: 4px; }
.mockup-bar-header span:first-child { color: #64748B; }
.mockup-bar-header span:last-child { color: #334155; font-weight: 600; }
.mockup-bar-track { width: 100%; height: 8px; background: #F1F5F9; border-radius: 99px; overflow: hidden; }
.mockup-bar-fill { height: 100%; border-radius: 99px; transition: width 1s; }
.mockup-bar-fill.blue { background: #0A5EFF; }
.mockup-bar-fill.purple { background: #A855F7; }
.mockup-bar-fill.green { background: #10B981; }

/* ===== Pricing ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
}
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
.pricing-card {
    border-radius: 16px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(10,94,255,0.12);
}
.pricing-card.highlight {
    background: linear-gradient(135deg, #0A5EFF 0%, #0044CC 100%);
    color: #fff;
    transform: scale(1);
    position: relative;
    overflow: hidden;
}
@media (min-width: 768px) {
    .pricing-card.highlight { transform: scale(1.05); }
    .pricing-card.highlight:hover { transform: scale(1.05) translateY(-6px); }
}
.pricing-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255,255,255,0.2);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 999px;
    backdrop-filter: blur(8px);
}
.pricing-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.pricing-card.highlight h3 { color: #fff; }
.pricing-sub { font-size: 12px; color: #94A3B8; margin-bottom: 20px; }
.pricing-card.highlight .pricing-sub { color: rgba(255,255,255,0.6); }
.pricing-price { margin-bottom: 24px; }
.pricing-price .amount { font-size: 2rem; font-weight: 800; color: #0F172A; }
.pricing-card.highlight .pricing-price .amount { color: #fff; }
.pricing-price .period { font-size: 14px; color: #94A3B8; margin-right: 4px; }
.pricing-card.highlight .pricing-price .period { color: rgba(255,255,255,0.6); }
.pricing-features {
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 20px;
    margin-bottom: 32px;
}
.pricing-card.highlight .pricing-features { border-top-color: rgba(255,255,255,0.15); }
.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #475569;
    margin-bottom: 12px;
}
.pricing-card.highlight .pricing-features li { color: rgba(255,255,255,0.9); }
.pricing-features li svg { width: 16px; height: 16px; flex-shrink: 0; }
.pricing-features li .check { color: #22C55E; }
.pricing-card.highlight .pricing-features li .check { color: #86EFAC; }
.pricing-features li .cross { color: #CBD5E1; }
.pricing-card .btn-outline,
.pricing-card .btn-primary { width: 100%; justify-content: center; font-size: 14px; }
.pricing-card.highlight .btn-white {
    width: 100%;
    justify-content: center;
    font-size: 14px;
    background: #fff;
    color: var(--vh-primary, #0A5EFF);
    border: none;
    border-radius: 12px;
    padding: 12px;
    font-family: inherit;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: background 0.2s;
}
.pricing-card.highlight .btn-white:hover { background: #F0F4F8; }

.pricing-see-all {
    text-align: center;
    margin-top: 32px;
}
.pricing-see-all a {
    font-size: 14px;
    font-weight: 600;
    color: var(--vh-primary, #0A5EFF);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.pricing-see-all a:hover { text-decoration: underline; }
.pricing-see-all svg { width: 16px; height: 16px; }

/* ===== Testimonials ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card {
    border-radius: 16px;
    padding: 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(10,94,255,0.12);
}
.testimonial-stars { display: flex; gap: 2px; margin-bottom: 16px; }
.testimonial-stars svg { width: 16px; height: 16px; color: #FACC15; fill: #FACC15; }
.testimonial-text { font-size: 14px; color: #475569; line-height: 1.8; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}
.testimonial-avatar.blue { background: rgba(10,94,255,0.1); color: #0A5EFF; }
.testimonial-avatar.purple { background: #FAF5FF; color: #7C3AED; }
.testimonial-avatar.green { background: #ECFDF5; color: #059669; }
.testimonial-name { font-size: 14px; font-weight: 700; color: #1E293B; }
.testimonial-role { font-size: 12px; color: #94A3B8; }

/* ===== FAQ ===== */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: right;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    color: #1E293B;
}
.faq-question svg {
    width: 20px;
    height: 20px;
    color: #94A3B8;
    flex-shrink: 0;
    margin-right: 12px;
    transition: transform 0.3s;
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner {
    padding: 0 20px 20px;
    font-size: 14px;
    color: #64748B;
    line-height: 1.8;
}

/* ===== CTA ===== */
.cta-section { padding: 80px 0; }
.cta-inner { max-width: 1024px; margin: 0 auto; padding: 0 1rem; }
.cta-card {
    border-radius: 24px;
    padding: 56px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0A5EFF 0%, #0044CC 50%, #002E99 100%);
}
.cta-dots {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: radial-gradient(circle at 20% 50%, #fff 1px, transparent 1px),
                      radial-gradient(circle at 80% 50%, #fff 1px, transparent 1px);
    background-size: 60px 60px;
}
.cta-content { position: relative; z-index: 1; }
.cta-card h2 { font-size: 1.75rem; font-weight: 800; color: #fff; margin-bottom: 16px; }
@media (min-width: 640px) { .cta-card h2 { font-size: 2.25rem; } }
.cta-card p { font-size: 15px; color: rgba(255,255,255,0.7); max-width: 480px; margin: 0 auto 32px; }
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--vh-primary, #0A5EFF);
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 32px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: background 0.2s;
}
.cta-btn:hover { background: #F0F4F8; }
.cta-btn svg { width: 16px; height: 16px; }

/* ===== Footer ===== */
.site-footer {
    background: #0F172A;
    color: #fff;
    padding: 64px 0 32px;
}
.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}
@media (min-width: 1024px) { .footer-inner { padding: 0 2rem; } }
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }
.footer-about p { font-size: 14px; color: #94A3B8; line-height: 1.8; margin-top: 16px; margin-bottom: 16px; }
.footer-socials { display: flex; gap: 8px; }
.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94A3B8;
    transition: all 0.2s;
}
.footer-socials a:hover { background: #0A5EFF; color: #fff; }
.footer-socials a svg { width: 16px; height: 16px; }
.footer-col h4 { font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: #94A3B8; transition: color 0.2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #94A3B8;
}
.footer-contact svg { width: 16px; height: 16px; color: #0A5EFF; flex-shrink: 0; margin-top: 3px; }
.footer-trust { display: flex; gap: 12px; margin-top: 20px; }
.footer-trust-badge {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    color: #94A3B8;
    text-align: center;
    line-height: 1.4;
}
.footer-trust-badge svg { width: 24px; height: 24px; color: #22C55E; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom p { font-size: 12px; color: #64748B; }
.footer-bottom-perks { display: flex; gap: 16px; }
.footer-bottom-perks span {
    font-size: 12px;
    color: #64748B;
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-bottom-perks svg { width: 12px; height: 12px; }

/* ===== Pricing Page ===== */
.pricing-page-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
}
.pricing-page-tab-switch {
    display: inline-flex;
    gap: 4px;
    padding: 6px;
    border-radius: 12px;
}
.pricing-page-tab-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    background: transparent;
    color: #64748B;
}
.pricing-page-tab-btn.active {
    background: var(--vh-primary, #0A5EFF);
    color: #fff;
}
.pricing-page-tab-btn:not(.active):hover { color: #334155; }

/* VPS Grid */
.vps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 768px) { .vps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .vps-grid { grid-template-columns: repeat(3, 1fr); } }
.vps-card {
    border-radius: 16px;
    padding: 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.vps-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(10,94,255,0.12);
}
.vps-card-header { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.vps-location {
    padding: 2px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
}
.vps-location.iran { background: #F0FDF4; color: #16A34A; }
.vps-location.europe { background: #EFF6FF; color: #2563EB; }
.vps-card h3 { font-size: 16px; font-weight: 700; color: #0F172A; }
.vps-price { margin-bottom: 20px; }
.vps-price .amount { font-size: 1.75rem; font-weight: 800; color: #0F172A; }
.vps-price .period { font-size: 14px; color: #94A3B8; margin-right: 4px; }
.vps-specs { margin-bottom: 24px; }
.vps-spec {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #475569;
    padding: 8px 0;
    border-bottom: 1px solid #F1F5F9;
}
.vps-spec:last-child { border-bottom: none; }
.vps-spec span:last-child { font-weight: 600; color: #1E293B; }
.vps-card .btn-outline { width: 100%; justify-content: center; font-size: 14px; }

.vps-custom {
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 2px dashed #E2E8F0;
    background: transparent;
    backdrop-filter: none;
}
.vps-custom:hover {
    transform: none;
    box-shadow: none;
    border-color: #0A5EFF;
}
.vps-custom-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #F1F5F9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.vps-custom-icon svg { width: 24px; height: 24px; color: #94A3B8; }
.vps-custom h3 { font-size: 16px; font-weight: 700; color: #475569; margin-bottom: 8px; }
.vps-custom p { font-size: 12px; color: #94A3B8; margin-bottom: 20px; }

.pricing-guarantees {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 48px;
    font-size: 12px;
    color: #94A3B8;
}
.pricing-guarantees span { display: flex; align-items: center; gap: 6px; }
.pricing-guarantees svg { width: 16px; height: 16px; color: #22C55E; }

/* ===== Contact Page ===== */
.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 48px;
}
@media (min-width: 1024px) { .contact-cards { grid-template-columns: repeat(4, 1fr); } }
.contact-card {
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(10,94,255,0.1); }
.contact-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}
.contact-card-icon svg { width: 24px; height: 24px; }
.contact-card-icon.blue { background: rgba(10,94,255,0.1); }
.contact-card-icon.blue svg { color: #0A5EFF; }
.contact-card-icon.green { background: #F0FDF4; }
.contact-card-icon.green svg { color: #22C55E; }
.contact-card-icon.purple { background: #FAF5FF; }
.contact-card-icon.purple svg { color: #A855F7; }
.contact-card-icon.orange { background: #FFFBEB; }
.contact-card-icon.orange svg { color: #F97316; }
.contact-card h3 { font-size: 14px; font-weight: 700; color: #1E293B; margin-bottom: 4px; }
.contact-card p { font-size: 12px; color: #64748B; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 3fr 2fr; } }
.contact-form-card {
    border-radius: 16px;
    padding: 32px;
}
@media (min-width: 1024px) { .contact-form-card { padding: 40px; } }
.contact-form-card h2 { font-size: 18px; font-weight: 700; color: #0F172A; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 16px; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #64748B;
    margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 14px;
    color: #334155;
    background: rgba(255,255,255,0.5);
    transition: all 0.2s;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #0A5EFF;
    box-shadow: 0 0 0 3px rgba(10,94,255,0.1);
}
.form-group textarea { resize: none; }
.contact-map {
    border-radius: 16px;
    overflow: hidden;
    height: 200px;
    margin-bottom: 16px;
    background: #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (min-width: 1024px) { .contact-map { height: 224px; } }
.contact-map-inner { text-align: center; }
.contact-map-inner svg { width: 40px; height: 40px; color: #94A3B8; margin: 0 auto 8px; }
.contact-map-inner p { font-size: 12px; color: #94A3B8; }
.contact-social-card {
    border-radius: 16px;
    padding: 24px;
}
.contact-social-card h3 { font-size: 14px; font-weight: 700; color: #1E293B; margin-bottom: 16px; }
.contact-socials { display: flex; gap: 12px; }
.contact-socials a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #F1F5F9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748B;
    transition: all 0.2s;
}
.contact-socials a:hover { background: rgba(10,94,255,0.1); color: #0A5EFF; }
.contact-socials a.green-hover:hover { background: #F0FDF4; color: #22C55E; }
.contact-socials a svg { width: 20px; height: 20px; }

/* ===== Dashboard Redirect ===== */
.dashboard-redirect {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}
.dashboard-redirect-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgba(10,94,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.dashboard-redirect-icon svg { width: 40px; height: 40px; color: #0A5EFF; }
.dashboard-redirect h1 { font-size: 24px; font-weight: 800; color: #0F172A; margin-bottom: 12px; }
.dashboard-redirect p { font-size: 15px; color: #64748B; max-width: 400px; margin-bottom: 32px; }
.dashboard-redirect .countdown { font-size: 14px; color: #94A3B8; margin-top: 16px; }

/* ===== Generic Page ===== */
.generic-page {
    padding: 120px 0 80px;
}
.generic-page-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}
.generic-page h1 { font-size: 2rem; font-weight: 800; color: #0F172A; margin-bottom: 24px; }
.generic-page .entry-content { font-size: 15px; color: #475569; line-height: 1.9; }
.generic-page .entry-content h2 { font-size: 1.5rem; font-weight: 700; color: #0F172A; margin: 32px 0 16px; }
.generic-page .entry-content p { margin-bottom: 16px; }
.generic-page .entry-content a { color: #0A5EFF; }
.generic-page .entry-content a:hover { text-decoration: underline; }

/* ===== 404 ===== */
.error-404 {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}
.error-404 h1 { font-size: 120px; font-weight: 800; color: #E2E8F0; line-height: 1; }
.error-404 h2 { font-size: 24px; font-weight: 700; color: #0F172A; margin-bottom: 12px; }
.error-404 p { font-size: 15px; color: #64748B; margin-bottom: 32px; }

/* ===== Single Post ===== */
.single-post {
    padding: 120px 0 80px;
}
.single-post-inner {
    max-width: 768px;
    margin: 0 auto;
    padding: 0 1rem;
}
.single-post h1 { font-size: 2rem; font-weight: 800; color: #0F172A; margin-bottom: 16px; }
.single-post .post-meta { font-size: 13px; color: #94A3B8; margin-bottom: 32px; display: flex; gap: 16px; }
.single-post .entry-content { font-size: 15px; color: #475569; line-height: 1.9; }
.single-post .entry-content h2 { font-size: 1.5rem; font-weight: 700; color: #0F172A; margin: 32px 0 16px; }
.single-post .entry-content p { margin-bottom: 16px; }
.single-post .entry-content img { border-radius: 12px; margin: 24px 0; }
.single-post .entry-content a { color: #0A5EFF; }
.single-post .entry-content a:hover { text-decoration: underline; }