/* ═══════════════════════════════════════════════════════════════════════════
   PRODUCT PAGE STYLES - صفحات المنتجات المبهرة
═══════════════════════════════════════════════════════════════════════════ */

/* --- PRODUCT PAGE LAYOUT --- */
.product-page {
    padding-top: 100px;
}

.product-section {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

/* --- PRODUCT HERO --- */
.product-hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 5% 80px;
    position: relative;
    overflow: hidden;
}

.product-hero::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.product-hero-content {
    position: relative;
    z-index: 2;
}

.product-badge {
    display: inline-block;
    background: rgba(0, 242, 255, 0.1);
    border: 1px solid var(--neon-blue);
    padding: 8px 25px;
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--neon-cyan);
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(0, 255, 213, 0.4);
}

.product-logo-large {
    width: 180px;
    height: 180px;
    margin: 0 auto 30px;
    border-radius: 30px;
    overflow: hidden;
    border: 3px solid rgba(0, 242, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 242, 255, 0.2), 0 0 100px rgba(0, 242, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.product-logo-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-name {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    background: linear-gradient(90deg, #00f2ff 0%, #9d00ff 50%, #ff007a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 30px rgba(0, 242, 255, 0.5));
}

.product-tagline {
    font-size: 1.3rem;
    color: var(--neon-cyan);
    margin-bottom: 30px;
    text-shadow: 0 0 15px rgba(0, 255, 213, 0.4);
    letter-spacing: 2px;
}

.product-intro {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.9;
}

.product-hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- BUTTONS --- */
.btn-primary {
    padding: 18px 50px;
    background: var(--grad-hyper);
    color: #fff;
    font-weight: 900;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(0, 242, 255, 0.4);
    transition: all 0.3s var(--ease-luxury);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 242, 255, 0.6);
}

.btn-primary.btn-large {
    padding: 22px 70px;
    font-size: 1.3rem;
}

.btn-secondary {
    padding: 18px 50px;
    background: transparent;
    color: var(--neon-blue);
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid var(--neon-blue);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s var(--ease-luxury);
}

.btn-secondary:hover {
    background: rgba(0, 242, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.2);
}

/* --- CONTENT BOX --- */
.content-box {
    background: linear-gradient(145deg, rgba(5, 5, 20, 0.8), rgba(10, 10, 30, 0.6));
    border: 1px solid rgba(0, 242, 255, 0.1);
    border-radius: 30px;
    padding: 60px;
    backdrop-filter: blur(20px);
    text-align: center;
}

.large-text {
    font-size: 1.3rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.85);
}

/* --- FEATURES GRID --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: linear-gradient(145deg, rgba(5, 5, 20, 0.9), rgba(10, 10, 30, 0.7));
    border: 1px solid rgba(0, 242, 255, 0.1);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.5s var(--ease-luxury);
}

.feature-card:hover {
    border-color: var(--neon-blue);
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 242, 255, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(0, 242, 255, 0.5));
}

.feature-card h3 {
    font-size: 1.3rem;
    background: var(--grad-hyper);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.7;
}

/* --- GALLERY --- */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-placeholder {
    background: linear-gradient(145deg, rgba(5, 5, 20, 0.8), rgba(10, 10, 30, 0.6));
    border: 2px dashed rgba(0, 242, 255, 0.2);
    border-radius: 20px;
    padding: 100px 40px;
    text-align: center;
    color: var(--neon-cyan);
    font-size: 1.1rem;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(0, 242, 255, 0.1);
    transition: 0.5s;
    cursor: pointer;
}

.gallery-item:hover {
    border-color: var(--neon-blue);
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 242, 255, 0.2);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- FAQ --- */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(145deg, rgba(5, 5, 20, 0.8), rgba(10, 10, 30, 0.6));
    border: 1px solid rgba(0, 242, 255, 0.1);
    border-radius: 20px;
    padding: 30px 40px;
    margin-bottom: 20px;
    transition: 0.3s;
}

.faq-item:hover {
    border-color: var(--neon-blue);
}

.faq-question {
    font-size: 1.2rem;
    color: var(--neon-cyan);
    margin-bottom: 15px;
}

.faq-answer {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
}

/* --- FINAL CTA SECTION --- */
.product-cta-section {
    text-align: center;
    padding: 120px 5%;
    background: linear-gradient(180deg, transparent, rgba(0, 242, 255, 0.03));
}

.product-cta-section .mega-title {
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--neon-cyan);
    margin-bottom: 40px;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .product-hero {
        padding-top: 120px !important;
        min-height: 80vh;
        justify-content: center;
    }

    .product-name {
        font-size: clamp(3.5rem, 12vw, 5rem);
        /* عودة قوة النص */
        margin-bottom: 20px;
        line-height: 1.1;
    }
}

@media (max-width: 768px) {
    .product-hero {
        padding: 100px 4% 60px;
    }

    .product-logo-large {
        width: 140px;
        height: 140px;
    }

    .product-name {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }

    .product-tagline {
        font-size: 1rem;
    }

    .product-intro {
        font-size: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 15px 35px;
        font-size: 1rem;
    }

    .content-box {
        padding: 40px 25px;
    }

    .feature-card {
        padding: 30px 20px;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   STREAMSYNC SPECIFIC STYLES
═══════════════════════════════════════════════════════════════════════════ */

/* --- HERO EXTRAS --- */
.highlight-number {
    font-size: 1.5em;
    font-weight: 900;
    background: linear-gradient(90deg, #00f2ff, #9d00ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-text {
    color: var(--neon-cyan);
    font-weight: 700;
}

.trust-badges {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.trust-badge {
    background: rgba(0, 242, 255, 0.1);
    border: 1px solid rgba(0, 242, 255, 0.2);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--neon-cyan);
}

/* --- PROBLEM / SOLUTION SECTION --- */
.problem-solution-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.problem-box,
.solution-box {
    background: linear-gradient(145deg, rgba(5, 5, 20, 0.9), rgba(10, 10, 30, 0.7));
    border-radius: 30px;
    padding: 50px;
    width: 100%;
    max-width: 900px;
}

.problem-box {
    border: 2px solid rgba(255, 50, 50, 0.3);
}

.solution-box {
    border: 2px solid rgba(0, 242, 255, 0.3);
}

.section-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.problem-box .section-label {
    color: #ff6b6b;
}

.solution-box .section-label {
    color: var(--neon-cyan);
}

.problem-title,
.solution-title {
    font-size: 2rem;
    margin-bottom: 30px;
}

.problem-title {
    color: #ff6b6b;
}

.solution-title {
    background: var(--grad-hyper);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pain-points,
.solution-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.pain-point,
.solution-point {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.pain-icon,
.solution-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.pain-point p,
.solution-point p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.solution-arrow {
    font-size: 2rem;
    opacity: 0.5;
}

/* --- STEPS --- */
.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--neon-cyan);
    margin-top: -30px;
    margin-bottom: 60px;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.step-card {
    background: linear-gradient(145deg, rgba(5, 5, 20, 0.9), rgba(10, 10, 30, 0.7));
    border: 1px solid rgba(0, 242, 255, 0.15);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    width: 220px;
    position: relative;
    transition: 0.5s;
}

.step-card:hover {
    border-color: var(--neon-blue);
    transform: translateY(-10px);
}

.step-card.featured-step {
    border-color: var(--neon-pink);
    box-shadow: 0 20px 60px rgba(255, 0, 122, 0.2);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--grad-hyper);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.step-card h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.step-connector {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    border-radius: 2px;
}

/* --- INCLUDED SECTION --- */
.included-section {
    background: linear-gradient(180deg, rgba(0, 242, 255, 0.02), transparent);
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.included-item {
    background: linear-gradient(145deg, rgba(5, 5, 20, 0.8), rgba(10, 10, 30, 0.6));
    border: 1px solid rgba(0, 242, 255, 0.1);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: 0.3s;
}

.included-item:hover {
    border-color: var(--neon-blue);
}

.included-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.included-item h3 {
    font-size: 1.2rem;
    color: var(--neon-cyan);
    margin-bottom: 10px;
}

.included-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* --- PROVIDERS SECTION --- */
.providers-section {
    background: linear-gradient(180deg, transparent, rgba(157, 0, 255, 0.02));
}

.provider-category {
    margin-bottom: 50px;
}

.category-title {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-icon {
    font-size: 1.5rem;
}

.providers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.provider-badge {
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: 0.3s;
    cursor: default;
}

.provider-badge.iptv {
    background: rgba(157, 0, 255, 0.15);
    border: 1px solid rgba(157, 0, 255, 0.3);
    color: #c77dff;
}

.provider-badge.streaming {
    background: rgba(255, 0, 122, 0.15);
    border: 1px solid rgba(255, 0, 122, 0.3);
    color: #ff4d94;
}

.provider-badge.gaming {
    background: rgba(0, 255, 136, 0.15);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
}

.provider-badge.ecommerce {
    background: rgba(0, 242, 255, 0.15);
    border: 1px solid rgba(0, 242, 255, 0.3);
    color: var(--neon-cyan);
}

.provider-badge.ecommerce.featured-provider {
    background: rgba(0, 242, 255, 0.25);
    border: 2px solid var(--neon-blue);
    font-weight: 900;
}

.provider-badge.channel.telegram {
    background: rgba(0, 136, 204, 0.2);
    border: 1px solid rgba(0, 136, 204, 0.4);
    color: #29b6f6;
}

.provider-badge.channel.whatsapp {
    background: rgba(37, 211, 102, 0.2);
    border: 1px solid rgba(37, 211, 102, 0.4);
    color: #25d366;
}

.provider-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.providers-note {
    text-align: center;
    margin-top: 40px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

.providers-note a {
    color: var(--neon-blue);
    text-decoration: none;
}

/* --- AI SECTION --- */
.ai-section {
    background: linear-gradient(145deg, rgba(157, 0, 255, 0.05), rgba(0, 242, 255, 0.03));
    border-radius: 40px;
    margin: 0 5%;
    padding: 80px 60px;
    text-align: center;
}

.ai-badge {
    display: inline-block;
    background: linear-gradient(90deg, rgba(157, 0, 255, 0.2), rgba(0, 242, 255, 0.2));
    border: 1px solid rgba(157, 0, 255, 0.4);
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 0.9rem;
    color: #c77dff;
    margin-bottom: 20px;
}

.ai-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.9;
}

.ai-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.ai-feature {
    text-align: center;
    max-width: 200px;
}

.ai-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.ai-feature h4 {
    font-size: 1.1rem;
    color: var(--neon-cyan);
    margin-bottom: 10px;
}

.ai-feature p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.ai-note {
    margin-top: 40px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

/* --- PACKAGES --- */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.package-card {
    background: linear-gradient(145deg, rgba(5, 5, 20, 0.95), rgba(10, 10, 30, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    transition: 0.5s;
}

.package-card:hover {
    transform: translateY(-10px);
}

.package-card.pro-card {
    border: 2px solid var(--neon-blue);
    box-shadow: 0 30px 80px rgba(0, 242, 255, 0.15);
}

.package-card.premium-card {
    border: 2px solid var(--neon-pink);
    box-shadow: 0 30px 80px rgba(255, 0, 122, 0.15);
}

.pro-badge,
.premium-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.pro-badge {
    background: var(--neon-blue);
    color: #000;
}

.premium-badge {
    background: linear-gradient(90deg, #ff007a, #ff7a00);
    color: #fff;
}

.package-header {
    padding: 40px 30px 20px;
    text-align: center;
}

.pkg-name {
    font-size: 1.8rem;
    background: var(--grad-hyper);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.pkg-subtitle {
    font-size: 1rem;
    color: var(--neon-cyan);
}

.package-body {
    padding: 20px 30px;
}

.pkg-features {
    list-style: none;
    padding: 0;
}

.pkg-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1rem;
}

.pkg-features li.included {
    color: rgba(255, 255, 255, 0.9);
}

.pkg-features li.included.highlight {
    color: var(--neon-cyan);
    font-weight: 700;
}

.pkg-features li.not-included {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: line-through;
}

.package-footer {
    padding: 20px 30px 40px;
    text-align: center;
}

.pkg-btn,
.pkg-btn-alt,
.pkg-btn-premium {
    display: inline-block;
    width: 100%;
    padding: 18px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.pkg-btn {
    background: var(--grad-hyper);
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.3);
}

.pkg-btn-alt {
    background: transparent;
    color: var(--neon-blue);
    border: 2px solid var(--neon-blue);
}

.pkg-btn-premium {
    background: linear-gradient(90deg, #ff007a, #ff7a00);
    color: #fff;
    box-shadow: 0 10px 30px rgba(255, 0, 122, 0.3);
}

.pkg-btn:hover,
.pkg-btn-premium:hover {
    transform: translateY(-3px);
}

.pkg-btn-alt:hover {
    background: rgba(0, 242, 255, 0.1);
}

/* Addon */
.addon-section {
    margin-top: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.addon-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(145deg, rgba(5, 5, 20, 0.8), rgba(10, 10, 30, 0.6));
    border: 1px dashed rgba(0, 242, 255, 0.3);
    border-radius: 20px;
    padding: 25px 30px;
}

.addon-icon {
    font-size: 2rem;
    color: var(--neon-blue);
}

.addon-content {
    flex-grow: 1;
}

.addon-content h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 5px;
}

.addon-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.addon-btn {
    background: transparent;
    border: 1px solid var(--neon-blue);
    color: var(--neon-blue);
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: 0.3s;
}

.addon-btn:hover {
    background: rgba(0, 242, 255, 0.1);
}

/* --- SECURITY --- */
.security-section {
    background: linear-gradient(180deg, transparent, rgba(0, 242, 255, 0.02));
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.security-item {
    text-align: center;
    padding: 30px;
}

.security-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.security-item h4 {
    font-size: 1.1rem;
    color: var(--neon-cyan);
    margin-bottom: 10px;
}

.security-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

.cta-note {
    margin-top: 25px;
    font-size: 1rem;
    color: var(--neon-cyan);
}

/* --- MOBILE EXTRA --- */
@media (max-width: 768px) {

    .problem-box,
    .solution-box {
        padding: 35px 25px;
    }

    .problem-title,
    .solution-title {
        font-size: 1.5rem;
    }

    .step-card {
        width: 100%;
    }

    .step-connector {
        width: 3px;
        height: 40px;
    }

    .steps-container {
        flex-direction: column;
    }

    .ai-section {
        margin: 0;
        border-radius: 0;
        padding: 60px 25px;
    }

    .addon-card {
        flex-direction: column;
        text-align: center;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   CERTIFIED APPS & PARTNERS SECTIONS
═══════════════════════════════════════════════════════════════════════════ */

/* --- CERTIFIED APPS --- */
.certified-apps-section {
    background: linear-gradient(180deg, rgba(0, 255, 136, 0.02), transparent);
}

.certified-apps-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.certified-app {
    background: linear-gradient(145deg, rgba(5, 5, 20, 0.9), rgba(10, 10, 30, 0.7));
    border-radius: 25px;
    padding: 40px 50px;
    text-align: center;
    transition: 0.5s;
    min-width: 180px;
}

.certified-app:hover {
    transform: translateY(-10px);
}

/* Brand Colors */
.certified-app.salla-app {
    border: 2px solid rgba(110, 93, 143, 0.4);
}

.certified-app.salla-app:hover {
    border-color: #6e5d8f;
    box-shadow: 0 20px 50px rgba(110, 93, 143, 0.25);
}

.certified-app.zid-app {
    border: 2px solid rgba(99, 102, 241, 0.4);
}

.certified-app.zid-app:hover {
    border-color: #6366f1;
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.25);
}

.certified-app.shopify-app {
    border: 2px solid rgba(150, 191, 72, 0.4);
}

.certified-app.shopify-app:hover {
    border-color: #96bf48;
    box-shadow: 0 20px 50px rgba(150, 191, 72, 0.25);
}

.certified-app.woo-app {
    border: 2px solid rgba(126, 92, 165, 0.4);
}

.certified-app.woo-app:hover {
    border-color: #7e5ca5;
    box-shadow: 0 20px 50px rgba(126, 92, 165, 0.25);
}

.app-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 3px solid rgba(0, 242, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

.certified-app:hover .app-logo {
    border-color: var(--neon-blue);
    transform: scale(1.05);
}

.app-logo img {
    width: 90%;
    height: 90%;
    object-fit: contain;
}

.certified-app h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 15px;
}

.certified-badge {
    display: inline-block;
    background: rgba(0, 255, 136, 0.15);
    border: 1px solid rgba(0, 255, 136, 0.4);
    color: #00ff88;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* --- PARTNERS SECTION --- */
.partners-section {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.03), rgba(255, 122, 0, 0.02));
    text-align: center;
}

.partners-header {
    margin-bottom: 50px;
}

.partners-badge {
    display: inline-block;
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.2), rgba(255, 122, 0, 0.2));
    border: 1px solid rgba(255, 215, 0, 0.4);
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 0.9rem;
    color: #ffd700;
    margin-bottom: 20px;
}

.partners-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.partner-card {
    background: linear-gradient(145deg, rgba(10, 10, 25, 0.95), rgba(20, 20, 40, 0.9));
    border-radius: 30px;
    padding: 50px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 450px;
}

.partner-card.featured-partner {
    border: 2px solid rgba(255, 215, 0, 0.4);
    box-shadow: 0 30px 80px rgba(255, 215, 0, 0.1), 0 0 100px rgba(255, 122, 0, 0.05);
}

.partner-card.featured-partner::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.partner-crown {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: float 4s ease-in-out infinite;
}

.partner-name {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(90deg, #ffd700, #ff7a00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.partner-type {
    font-size: 1rem;
    color: var(--neon-cyan);
    margin-bottom: 25px;
}

.partner-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.partner-features span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.status-verified {
    display: inline-block;
    background: linear-gradient(90deg, #ffd700, #ff7a00);
    color: #000;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
}

.become-partner {
    padding: 40px;
    background: linear-gradient(145deg, rgba(5, 5, 20, 0.8), rgba(10, 10, 30, 0.6));
    border: 1px dashed rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    max-width: 500px;
    margin: 0 auto;
}

.become-partner p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.partner-cta {
    display: inline-block;
    background: transparent;
    border: 2px solid #ffd700;
    color: #ffd700;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.partner-cta:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

/* ═══════════════════════════════════════════════════════════════════════════
   QANATI PLAYER SPECIFIC STYLES
═══════════════════════════════════════════════════════════════════════════ */

/* --- MULTI-VIEW SECTION --- */
.multiview-section {
    text-align: center;
}

.multiview-demo {
    max-width: 700px;
    margin: 50px auto;
    padding: 20px;
    background: rgba(99, 102, 241, 0.1);
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 25px;
}

.multiview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.multiview-screen {
    background: linear-gradient(145deg, rgba(20, 20, 40, 0.9), rgba(30, 30, 60, 0.8));
    border: 2px solid rgba(99, 102, 241, 0.4);
    border-radius: 15px;
    padding: 50px 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.multiview-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.8);
}

/* --- FEATURES GRID --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.feature-card {
    background: linear-gradient(145deg, rgba(5, 5, 20, 0.9), rgba(10, 10, 30, 0.7));
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: 0.3s;
}

.feature-card:hover {
    border-color: rgba(99, 102, 241, 0.5);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.feature-card h3 {
    color: var(--neon-cyan);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* --- PLATFORMS SECTION --- */
.platforms-section {
    text-align: center;
}

.platforms-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.platform-badge {
    background: linear-gradient(145deg, rgba(5, 5, 20, 0.9), rgba(15, 15, 35, 0.8));
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 20px;
    padding: 25px 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 120px;
    transition: 0.3s;
}

.platform-badge:hover {
    border-color: #6366F1;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.2);
}

.platform-icon {
    font-size: 2rem;
}

.platform-badge span:last-child {
    color: #fff;
    font-weight: 600;
}

/* --- VIEWERS SECTION --- */
.viewers-section {
    text-align: center;
}

.viewer-options {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.viewer-card {
    background: linear-gradient(145deg, rgba(5, 5, 20, 0.9), rgba(15, 15, 35, 0.8));
    border: 2px solid rgba(99, 102, 241, 0.2);
    border-radius: 25px;
    padding: 40px;
    max-width: 350px;
    text-align: center;
    transition: 0.3s;
}

.viewer-card:hover {
    border-color: rgba(99, 102, 241, 0.5);
}

.viewer-card.featured-card {
    border-color: rgba(217, 70, 239, 0.4);
    background: linear-gradient(145deg, rgba(99, 102, 241, 0.1), rgba(217, 70, 239, 0.05));
}

.viewer-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
}

.viewer-card h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.viewer-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.partner-tag {
    display: inline-block;
    background: linear-gradient(90deg, #ffd700, #ff7a00);
    color: #000;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
}

/* --- SERVERS SECTION (B2B) --- */
.servers-section {
    text-align: center;
    background: linear-gradient(145deg, rgba(99, 102, 241, 0.05), rgba(217, 70, 239, 0.03));
}

.servers-header {
    margin-bottom: 40px;
}

.server-offer {
    max-width: 600px;
    margin: 0 auto;
}

.offer-content {
    background: linear-gradient(145deg, rgba(10, 10, 25, 0.95), rgba(20, 20, 45, 0.9));
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 30px;
    padding: 50px;
    text-align: center;
}

.offer-content h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.offer-content>p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.8;
}

.offer-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: right;
}

.offer-benefits li {
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 0;
}

/* --- TECH SECTION --- */
.tech-section {
    text-align: center;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.tech-item {
    background: linear-gradient(145deg, rgba(5, 5, 20, 0.8), rgba(10, 10, 30, 0.6));
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
}

.tech-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.tech-item h4 {
    color: var(--neon-cyan);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.tech-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* --- SCREENSHOTS PLACEHOLDER --- */
.screenshots-section {
    text-align: center;
}

.gallery-placeholder {
    background: linear-gradient(145deg, rgba(10, 10, 25, 0.8), rgba(20, 20, 45, 0.6));
    border: 2px dashed rgba(99, 102, 241, 0.3);
    border-radius: 25px;
    padding: 80px 40px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .multiview-grid {
        grid-template-columns: 1fr;
    }

    .multiview-screen {
        padding: 30px 15px;
    }

    .platforms-grid {
        gap: 15px;
    }

    .platform-badge {
        padding: 20px 25px;
        min-width: 100px;
    }

    .viewer-options {
        flex-direction: column;
        align-items: center;
    }

    .offer-content {
        padding: 30px 20px;
    }
}

@media (max-width: 900px) {
    .product-hero {
        padding-top: 200px !important;
        /* مساحة وافرة جداً لمنع أي تداخل مع الشعار */
        min-height: auto;
        justify-content: flex-start;
    }

    .product-name {
        font-size: clamp(3rem, 10vw, 4.5rem);
        /* استعادة الضخامة والفخامة */
        margin-bottom: 25px;
        line-height: 1.1;
    }

    .product-logo-large {
        width: 140px;
        height: 140px;
    }

    .product-tagline {
        font-size: 1.1rem;
    }

    .product-intro {
        font-size: 1rem;
        padding: 0 10px;
    }
}