/* ============================================================
   هوش‌پرس (HooshPress) - لندینگ تمام‌عرض
   توسعه‌دهنده: BoldBusiness
   ============================================================ */

/* ========== تنظیمات پایه ========== */
.hooshpress-landing {
    font-family: 'IRANSans', 'Tahoma', 'Arial', sans-serif;
    direction: rtl;
    overflow-x: hidden;
    background: #ffffff;
    color: #1a1a2e;
    line-height: 1.8;
}

.hp-fullwidth {
    width: 100%;
    max-width: 100%;
}

.hp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== بخش‌های عمومی ========== */
.hp-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.hp-section-tag {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 24px;
    border-radius: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hp-section-header h2 {
    font-size: 40px;
    font-weight: 900;
    margin: 16px 0 12px;
    background: linear-gradient(135deg, #1a1a2e, #4a00e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hp-section-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* ========== دکمه‌ها ========== */
.hp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-family: inherit;
}

.hp-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
}

.hp-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.6);
    color: #fff;
}

.hp-btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.hp-btn-secondary:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.hp-btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.hp-btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

.hp-btn-white {
    background: #fff;
    color: #667eea;
}

.hp-btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.3);
    color: #667eea;
}

.hp-btn-outline-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.hp-btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

.hp-btn-outline-primary {
    background: transparent;
    color: #667eea;
    border-color: #667eea;
}

.hp-btn-outline-primary:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    transform: translateY(-3px);
}

.hp-btn-ultimate {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #fff;
    box-shadow: 0 8px 30px rgba(245, 87, 108, 0.4);
}

.hp-btn-ultimate:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(245, 87, 108, 0.6);
    color: #fff;
}

.hp-btn-block {
    display: block;
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* ============================================================
   بخش ۱: هدر (Hero) - تمام‌عرض
   ============================================================ */
.hp-hero {
    position: relative;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3e 30%, #16213e 60%, #0f3460 100%);
    padding: 80px 0 100px;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    width: 100%;
}

.hp-hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 20px 30px, #eee, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.2), transparent),
        radial-gradient(2px 2px at 50px 160px, #ddd, transparent),
        radial-gradient(2px 2px at 90px 40px, rgba(255,255,255,0.1), transparent),
        radial-gradient(2px 2px at 130px 80px, #fff, transparent);
    background-size: 200px 200px;
    opacity: 0.05;
}

.hp-hero-bg-glow {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.15), transparent 70%);
    border-radius: 50%;
    animation: hp-glow-pulse 8s ease-in-out infinite;
}

@keyframes hp-glow-pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.3); opacity: 1; }
}

.hp-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hp-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hp-hero-content {
    color: #fff;
}

.hp-badge {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.hp-badge span {
    background: rgba(255, 255, 255, 0.08);
    padding: 5px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.05);
}

.hp-hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hp-hero-sub {
    display: block;
    font-size: 24px;
    font-weight: 400;
    color: rgba(255,255,255,0.5);
    margin-bottom: 4px;
}

.hp-highlight {
    display: block;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 64px;
}

.hp-hero-desc {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hp-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hp-hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.hp-stat {
    display: flex;
    flex-direction: column;
}

.hp-stat-number {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
}

.hp-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* ========== تصویر هدر ========== */
.hp-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hp-hero-illustration {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1/1;
}


/* ========== کادر اصلی ربات ========== */
.hp-robot-mascot {
    background-image: url('https://boldbusiness.ir/files/hooshpress.webp');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    background-color: rgba(26, 26, 58, 0.3);
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* ==========================================================
   سر ربات - کانتینر اصلی
   ========================================================== */
.hp-robot-head {
    position: relative;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;    /* ⬅ ستونی: آنتن → چشم‌ها → دهان */
    align-items: center;
    justify-content: center;
    gap: 4px;                  /* ⬅ فاصله بین ردیف‌ها */
        margin-top: -10px;
}

/* ==========================================================
   ۱. آنتن (بالای سر)
   ========================================================== */
.hp-robot-antenna {
    display: flex;
    flex-direction: column-reverse;  /* ⬅ گلوله بالا، خط پایین */
    align-items: center;
    margin-bottom: 2px;
    z-index: 2;
}

.hp-antenna-line {
    width: 5px;
    height: 18px;
    background: linear-gradient(to bottom, #FFFFFF, #000000);
    border-radius: 3px;
    margin-top: -2px;
}

.hp-antenna-ball {
    position: relative;
    width: 16px;
    height: 16px;
    background: radial-gradient(circle at 30% 30%, #ff6b6b, #C80815);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.6);
    animation: hp-pulse 1.5s ease-in-out infinite;
    z-index: 3;
}

.hp-signal {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 2px solid #ff6b6b;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: hp-signal 2s ease-out infinite;
    opacity: 0;
}
.hp-signal:nth-child(2) { animation-delay: 0.6s; }
.hp-signal:nth-child(3) { animation-delay: 1.2s; }

@keyframes hp-signal {
    0%   { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(3); opacity: 0; }
}

/* ==========================================================
   ۲. چشم‌ها (ردیف اول - کنار هم)
   ========================================================== */
.hp-robot-eyes {
    display: flex;
    flex-direction: row;       /* ⬅ افقی: چشم چپ و راست کنار هم */
    justify-content: center;
    align-items: center;
    gap: 20px;                 /* ⬅ فاصله بین دو چشم */
    width: 100%;
    padding: 2px 0;
    z-index: 1;
}

.hp-robot-eye {
    width: 30px;
    height: 30px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 25px rgba(102, 126, 234, 0.5);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.hp-robot-pupil {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    animation: hp-look 4s ease-in-out infinite;
}

.hp-robot-pupil::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 3px;
    width: 4px;
    height: 4px;
    background: #ffffff;
    border-radius: 50%;
    opacity: 0.8;
}

/* ==========================================================
   ۳. دهان (ردیف دوم - زیر چشم‌ها)
   ========================================================== */
.hp-robot-mouth-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 2px 0;
    z-index: 1;
}

.hp-robot-mouth {
    width: 45px;
    height: 18px;
    border: 5px solid #FFFFFF;
    border-radius: 0 0 36px 36px;
    border-top: none;
    animation: hp-mouth-talk 2s ease-in-out infinite;
    flex-shrink: 0;
    background: rgba(102, 126, 234, 0.05);
}

/* ==========================================================
   انیمیشن‌ها
   ========================================================== */
@keyframes hp-look {
    0%, 100% { transform: translate(-50%, -50%); }
    25% { transform: translate(-75%, -50%); }
    75% { transform: translate(-25%, -50%); }
}

@keyframes hp-mouth-talk {
    0%, 100% { height: 18px; width: 36px; }
    50% { height: 10px; width: 28px; }
}

@keyframes hp-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(255, 107, 107, 0.5); }
    50% { transform: scale(1.3); box-shadow: 0 0 40px rgba(255, 107, 107, 0.8); }
}

@keyframes hp-blink-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hp-robot-shadow {
    width: 80%;
    height: 12px;
    margin: 16px auto 0;
    background: radial-gradient(ellipse, rgba(0,0,0,0.3), transparent);
    border-radius: 50%;
        display: none;
}

/* ========== عناصر شناور ========== */

.hp-float-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    display: none;
}

.hp-float-emoji {
    position: absolute;
    font-size: 32px;
    animation: hp-float 5s ease-in-out infinite;
    filter: drop-shadow(0 4px 15px rgba(0,0,0,0.2));
}

.hp-float-emoji:nth-child(1) { top: 0%; right: 0%; animation-delay: 0s; }
.hp-float-emoji:nth-child(2) { bottom: 10%; left: -5%; animation-delay: 1s; font-size: 28px; }
.hp-float-emoji:nth-child(3) { top: 20%; left: 5%; animation-delay: 2s; font-size: 24px; }
.hp-float-emoji:nth-child(4) { bottom: 20%; right: 0%; animation-delay: 0.5s; font-size: 36px; }
.hp-float-emoji:nth-child(5) { top: 40%; right: -5%; animation-delay: 1.5s; font-size: 26px; }
.hp-float-emoji:nth-child(6) { bottom: 5%; left: 10%; animation-delay: 2.5s; font-size: 22px; }
.hp-float-emoji:nth-child(7) { top: 10%; left: -10%; animation-delay: 0.8s; font-size: 30px; }
.hp-float-emoji:nth-child(8) { bottom: 30%; right: -8%; animation-delay: 1.8s; font-size: 32px; }
.hp-float-emoji:nth-child(9) { top: 50%; left: -3%; animation-delay: 2.2s; font-size: 27px; }
.hp-float-emoji:nth-child(10) { bottom: 45%; right: 5%; animation-delay: 0.3s; font-size: 29px; }
.hp-float-emoji:nth-child(11) { top: 30%; right: -10%; animation-delay: 1.2s; font-size: 25px; }
.hp-float-emoji:nth-child(12) { bottom: -5%; left: 20%; animation-delay: 2.8s; font-size: 23px; }

@keyframes hp-float {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    25% { transform: translateY(-20px) rotate(8deg) scale(1.05); }
    75% { transform: translateY(10px) rotate(-5deg) scale(0.95); }
}

.hp-hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 2;
}

.hp-hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
    fill: #ffffff;
    display: none;
}

/* ============================================================
   بخش ۲: اعتماد (Trust)
   ============================================================ */
.hp-trust {
    padding: 40px 0;
    background: #f8f9fe;
    text-align: center;
    width: 100%;
}

.hp-trust-label {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.hp-trust-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 50px;
}

.hp-trust-logos span {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    opacity: 0.5;
    transition: all 0.3s;
    padding: 6px 16px;
    border-radius: 30px;
    background: #fff;
    border: 1px solid #eee;
}

.hp-trust-logos span:hover {
    opacity: 1;
    border-color: #667eea;
    transform: translateY(-2px);
}

/* ============================================================
   بخش ۳: آمار سریع (Quick Stats)
   ============================================================ */
.hp-quick-stats {
    padding: 50px 0;
    background: #fff;
    width: 100%;
}

.hp-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.hp-stat-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fe;
    border-radius: 16px;
    transition: all 0.3s;
}

.hp-stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.hp-stat-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 8px;
}

.hp-stat-item .hp-stat-number {
    display: block;
    font-size: 28px;
    font-weight: 900;
    color: #1a1a2e;
    -webkit-text-fill-color: #1a1a2e;
}

.hp-stat-item .hp-stat-label {
    display: block;
    font-size: 14px;
    color: #888;
}

/* ============================================================
   بخش ۴: امکانات (Features) - ۱۲ مورد
   ============================================================ */
.hp-features {
    padding: 80px 0;
    background: #ffffff;
    width: 100%;
}

.hp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.hp-feature-card {
    background: #f8f9fe;
    padding: 32px 28px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.hp-feature-card:hover {
    transform: translateY(-8px);
    border-color: #667eea;
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.1);
}

.hp-feature-icon {
    font-size: 42px;
    margin-bottom: 16px;
}

.hp-feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.hp-feature-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 16px;
}

.hp-feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hp-feature-tags span {
    background: rgba(102, 126, 234, 0.08);
    color: #667eea;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
}

.hp-features-cta {
    text-align: center;
    margin-top: 40px;
}

.hp-features-more {
    display: inline-block;
    background: #f0f2ff;
    color: #667eea;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 30px;
    border-radius: 30px;
    border: 1px dashed #667eea;
}

/* ============================================================
   بخش ۵: اسلاید (Screenshots)
   ============================================================ */
.hp-screenshots {
    padding: 80px 0;
    background: #f8f9fe;
    width: 100%;
}

.hp-slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.hp-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hp-slide {
    min-width: 100%;
    padding: 40px 30px 30px;
    text-align: center;
}

.hp-slide-img {
    background: linear-gradient(135deg, #f0f2ff, #e8ecff);
    border-radius: 16px;
    padding: 60px 20px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(102, 126, 234, 0.15);
}

.hp-slide-placeholder {
    font-size: 56px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hp-slide-label {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    -webkit-text-fill-color: #1a1a2e;
}

.hp-slide-desc {
    font-size: 14px;
    color: #888;
    -webkit-text-fill-color: #888;
}

.hp-slide-caption {
    font-size: 15px;
    color: #888;
    margin-top: 14px;
}

.hp-slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    background: #fff;
}

.hp-slider-btn {
    background: transparent;
    border: 2px solid #e0e0e0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    color: #333;
    font-family: inherit;
}

.hp-slider-btn:hover {
    border-color: #667eea;
    color: #667eea;
    background: rgba(102, 126, 234, 0.05);
}

.hp-slider-dots {
    display: flex;
    gap: 10px;
}

.hp-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s;
}

.hp-slider-dot.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    width: 36px;
    border-radius: 12px;
}

/* ============================================================
   بخش ۶: نظرات (Testimonials)
   ============================================================ */
.hp-testimonials {
    padding: 80px 0;
    background: #ffffff;
    width: 100%;
}

.hp-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.hp-testimonial-card {
    background: #f8f9fe;
    padding: 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.hp-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.hp-testimonial-stars {
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.hp-testimonial-text {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.hp-testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hp-testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
}

.hp-testimonial-name {
    font-weight: 700;
    display: block;
    color: #1a1a2e;
}

.hp-testimonial-role {
    font-size: 13px;
    color: #888;
}

/* ============================================================
   بخش ۷: مزایا (Benefits)
   ============================================================ */
.hp-benefits {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    width: 100%;
}

.hp-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.hp-benefit {
    text-align: center;
    color: #fff;
    padding: 16px;
    background: rgba(255,255,255,0.04);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.04);
    transition: all 0.3s;
}

.hp-benefit:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
}

.hp-benefit-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.hp-benefit h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.hp-benefit p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* ============================================================
   بخش ۸: قیمت‌گذاری (Pricing) - ۳ پلن
   ============================================================ */
.hp-pricing {
    padding: 80px 0;
    background: #ffffff;
    width: 100%;
}

.hp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.hp-pricing-card {
    background: #f8f9fe;
    padding: 40px 30px 30px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    display: flex;
    flex-direction: column;
}

.hp-pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

/* پلن رایگان */
.hp-pricing-free {
    border-color: #e0e0e0;
}

.hp-pricing-free:hover {
    border-color: #667eea;
}

/* پلن حرفه‌ای (پرفروش) */
.hp-pricing-popular {
    border-color: #667eea;
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.12);
}

.hp-pricing-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 24px;
    border-radius: 30px;
}

/* پلن نامحدود */
.hp-pricing-ultimate {
    border-color: #f093fb;
    background: linear-gradient(135deg, #faf0ff, #fff);
}

.hp-pricing-ultimate:hover {
    border-color: #f5576c;
}

.hp-pricing-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 18px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hp-badge-free {
    background: rgba(74, 222, 128, 0.1);
    color: #22c55e;
}

.hp-badge-pro {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

.hp-badge-ultimate {
    background: rgba(245, 87, 108, 0.1);
    color: #f5576c;
}

.hp-pricing-card h3 {
    font-size: 26px;
    font-weight: 800;
    margin: 12px 0 16px;
}

.hp-pricing-price {
    margin-bottom: 16px;
}

.hp-price-amount {
    font-size: 48px;
    font-weight: 900;
    color: #1a1a2e;
}

.hp-price-currency {
    display: block;
    font-size: 14px;
    color: #888;
}

.hp-price-period {
    font-size: 13px;
    color: #999;
}

.hp-pricing-limits {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: rgba(102, 126, 234, 0.04);
    padding: 10px 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #444;
}

.hp-pricing-limits span {
    font-weight: 500;
}

.hp-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: right;
    flex: 1;
}

.hp-pricing-features li {
    padding: 7px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    font-size: 15px;
    color: #444;
}

.hp-pricing-features li:last-child {
    border-bottom: none;
}

.hp-feature-limited {
    opacity: 0.4;
}

.hp-pricing-note {
    display: block;
    font-size: 13px;
    color: #999;
    margin-top: 12px;
}

.hp-pricing-compare {
    text-align: center;
    margin-top: 30px;
}

.hp-compare-link {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
}

.hp-compare-link:hover {
    text-decoration: underline;
}

/* ============================================================
   بخش ۹: سوالات متداول (FAQ)
   ============================================================ */
.hp-faq {
    padding: 80px 0;
    background: #f8f9fe;
    width: 100%;
}

.hp-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.hp-faq-item {
    background: #fff;
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.hp-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 18px 24px;
    background: none;
    border: none;
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    cursor: pointer;
    text-align: right;
    font-family: inherit;
    transition: background 0.3s;
}

.hp-faq-question:hover {
    background: #f8f9fe;
}

.hp-faq-icon {
    font-size: 24px;
    transition: transform 0.3s;
    color: #667eea;
    flex-shrink: 0;
}

.hp-faq-item.active .hp-faq-icon {
    transform: rotate(45deg);
}

.hp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 24px;
}

.hp-faq-item.active .hp-faq-answer {
    max-height: 400px;
    padding: 0 24px 24px;
}

.hp-faq-answer p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

/* ============================================================
   بخش ۱۰: فراخوان نهایی (CTA)
   ============================================================ */
.hp-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    width: 100%;
}

.hp-cta-box {
    text-align: center;
    color: #fff;
}

.hp-cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    padding: 4px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 16px;
}

.hp-cta-box h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 12px;
}

.hp-cta-box p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.hp-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.hp-cta-guarantee {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.hp-cta-separator {
    opacity: 0.3;
}

/* ============================================================
   بخش ۱۱: فوتر (Footer)
   ============================================================ */
.hp-footer {
    background: #0d0d1a;
    color: rgba(255, 255, 255, 0.7);
    padding: 50px 0 20px;
    width: 100%;
}

.hp-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 20px;
}

.hp-footer-brand h3 {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}

.hp-footer-brand p {
    font-size: 15px;
    margin-bottom: 8px;
}

.hp-footer-developer {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.hp-footer-developer strong {
    color: #667eea;
}

.hp-footer-social {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.hp-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
    font-size: 18px;
    text-decoration: none;
    color: rgba(255,255,255,0.4);
    transition: all 0.3s;
}

.hp-footer-social a:hover {
    background: rgba(102, 126, 234, 0.2);
    color: #667eea;
    transform: translateY(-3px);
}

.hp-footer-links h4,
.hp-footer-contact h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.hp-footer-links ul,
.hp-footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hp-footer-links li,
.hp-footer-contact li {
    padding: 4px 0;
    font-size: 14px;
}

.hp-footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s;
}

.hp-footer-links a:hover {
    color: #667eea;
}

.hp-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.3);
    flex-wrap: wrap;
    gap: 10px;
}

.hp-footer-version {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.03);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 13px;
}

.hp-footer-status {
    color: #4ade80;
    font-size: 12px;
}

/* ============================================================
   ریسپانسیو (Responsive)
   ============================================================ */

/* تبلت */
@media (max-width: 992px) {
    .hp-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hp-hero-title {
        font-size: 40px;
    }
    .hp-highlight {
        font-size: 44px;
    }
    .hp-hero-sub {
        font-size: 20px;
    }

    .hp-hero-buttons {
        justify-content: center;
    }
    .hp-hero-stats {
        justify-content: center;
    }

    .hp-hero-illustration {
        max-width: 320px;
        margin: 0 auto;
    }

    .hp-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hp-testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hp-pricing-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hp-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hp-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hp-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* موبایل */
@media (max-width: 768px) {
    .hp-hero {
        padding: 40px 0 60px;
        min-height: auto;
    }

    .hp-hero-title {
        font-size: 30px;
    }
    .hp-highlight {
        font-size: 34px;
    }
    .hp-hero-sub {
        font-size: 17px;
    }
    .hp-hero-desc {
        font-size: 16px;
    }

    .hp-hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }
    .hp-stat-number {
        font-size: 24px;
    }

    .hp-section-header h2 {
        font-size: 28px;
    }
    .hp-section-header p {
        font-size: 16px;
    }

    .hp-features-grid {
        grid-template-columns: 1fr;
    }

    .hp-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .hp-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .hp-pricing-card {
        padding: 30px 20px;
    }

    .hp-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .hp-benefits-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .hp-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hp-footer-social {
        justify-content: center;
    }

    .hp-footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .hp-slide-img {
        min-height: 200px;
        padding: 30px 16px;
    }
    .hp-slide-placeholder {
        font-size: 40px;
    }
    .hp-slide-label {
        font-size: 16px;
    }
    .hp-slide-desc {
        font-size: 13px;
    }

    .hp-cta-box h2 {
        font-size: 30px;
    }
    .hp-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .hp-cta-buttons .hp-btn {
        width: 100%;
        justify-content: center;
        max-width: 320px;
    }

    .hp-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .hp-hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .hp-hero-buttons .hp-btn {
        width: 100%;
        justify-content: center;
        max-width: 320px;
    }

    .hp-robot-mascot {
        padding: 24px 16px;
    }
    .hp-robot-text {
        font-size: 20px;
            display: none;
        
    }
    .hp-robot-sub {
        font-size: 13px;
            display: none;
    }
}

/* موبایل کوچک */
@media (max-width: 480px) {
    .hp-container {
        padding: 0 16px;
    }

    .hp-hero-title {
        font-size: 24px;
    }
    .hp-highlight {
        font-size: 28px;
    }

    .hp-badge {
        gap: 6px;
    }
    .hp-badge span {
        font-size: 12px;
        padding: 4px 12px;
    }

    .hp-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .hp-stat-item .hp-stat-number {
        font-size: 22px;
    }

    .hp-benefits-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .hp-benefit {
        padding: 12px;
    }
    .hp-benefit-icon {
        font-size: 28px;
    }
    .hp-benefit h4 {
        font-size: 14px;
    }
    .hp-benefit p {
        font-size: 12px;
    }

    .hp-pricing-price .hp-price-amount {
        font-size: 36px;
    }

    .hp-slider-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}



/* ============================================================
   ویژگی‌های بیشتر - نمایش/مخفی
   ============================================================ */

.hp-features-more-wrapper {
    display: none;
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-top: 30px;
    border-top: 2px dashed rgba(102, 126, 234, 0.15);
    animation: hp-features-fade-in 0.5s ease;
}

@keyframes hp-features-fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hp-features-more-wrapper .hp-feature-card {
    background: #ffffff;
    border: 1px solid rgba(102, 126, 234, 0.08);
}

.hp-features-more-wrapper .hp-feature-card:hover {
    border-color: #667eea;
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.08);
}

.hp-btn-features-more {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
    padding: 12px 36px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.hp-btn-features-more:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.hp-features-cta {
    text-align: center;
    margin-top: 40px;
}

/* ============================================================
   ریسپانسیو برای ویژگی‌های بیشتر
   ============================================================ */
@media (max-width: 992px) {
    .hp-features-more-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hp-features-more-wrapper {
        grid-template-columns: 1fr;
    }
}