/* === RESET & ROOT === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
    --cyan: #00d4ff;
    --cyan-dark: #0099cc;
    --electric: #7B2FFF;
    --neon: #00ffcc;
    --orange: #FF6B00;
    --dark: #060b14;
    --dark2: #0d1520;
    --dark3: #111c2d;
    --card: rgba(255,255,255,0.04);
    --border: rgba(0,212,255,0.15);
    --text: #e8f4f8;
    --muted: rgba(232,244,248,0.6);
    --white: #ffffff;
    --radius: 18px;
    --shadow-cyan: 0 8px 40px rgba(0,212,255,0.15);
}
html { scroll-behavior: smooth; }
body {
    font-family: 'Cairo', sans-serif;
    background: var(--dark);
    color: var(--text);
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
}
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* === ANNOUNCE BAR === */
.announce-bar {
    background: linear-gradient(90deg, #060b14 0%, #0d1f35 50%, #060b14 100%);
    border-bottom: 1px solid var(--border);
    padding: 9px 0;
    overflow: hidden;
}
.announce-scroll {
    white-space: nowrap;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--cyan);
    animation: ticker 25s linear infinite;
    display: inline-block;
}
@keyframes ticker { from { transform: translateX(100vw); } to { transform: translateX(-100%); } }

/* === HEADER === */
.header {
    background: rgba(6,11,20,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    position: sticky; top: 0; z-index: 200;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
}
.logo-icon { font-size: 1.5rem; filter: drop-shadow(0 0 8px var(--cyan)); }
.logo-accent { color: var(--cyan); }
.trust-pill {
    background: rgba(0,212,255,0.08);
    border: 1px solid var(--border);
    color: var(--cyan);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
}

/* === HERO === */
.hero {
    min-height: 92vh;
    padding: 70px 0 80px;
    background: radial-gradient(ellipse at 70% 50%, rgba(0,212,255,0.06) 0%, transparent 60%),
                radial-gradient(ellipse at 10% 80%, rgba(123,47,255,0.08) 0%, transparent 55%),
                var(--dark);
    position: relative;
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
}

/* Tags */
.tag-wrap { display: flex; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
.tag-hot {
    background: linear-gradient(90deg, #FF6B00, #ffab00);
    color: white;
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 800;
    animation: pulse 2s infinite;
}
.tag-new {
    background: rgba(0,212,255,0.12);
    border: 1px solid var(--border);
    color: var(--cyan);
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
}

/* Title */
.hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 16px;
    color: white;
}
.neon-text {
    color: var(--cyan);
    text-shadow: 0 0 30px rgba(0,212,255,0.7), 0 0 60px rgba(0,212,255,0.3);
}
.hero-sub {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 28px;
}

/* Specs strip */
.specs-strip {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(0,212,255,0.05);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px 20px;
    margin-bottom: 28px;
}
.spec { flex: 1; text-align: center; }
.spec-val { display: block; font-size: 1.4rem; font-weight: 900; color: var(--cyan); }
.spec-lbl { display: block; font-size: 0.78rem; color: var(--muted); margin-top: 2px; }
.spec-div { width: 1px; height: 40px; background: var(--border); }

/* Price */
.price-hero {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 26px;
    flex-wrap: wrap;
}
.price-old { color: rgba(255,255,255,0.3); text-decoration: line-through; font-size: 1.1rem; }
.price-new { font-size: 2.6rem; font-weight: 900; color: var(--cyan); text-shadow: 0 0 20px rgba(0,212,255,0.5); }
.price-new small { font-size: 1.3rem; }
.price-save {
    background: var(--orange);
    color: white;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 800;
}

/* Bullet list */
.bullet-list { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 11px; }
.bullet-list li { font-size: 0.97rem; color: var(--muted); }
.bullet-list li:hover { color: white; }

/* CTA Button */
.btn-cta {
    display: block;
    text-align: center;
    background: linear-gradient(90deg, var(--cyan-dark) 0%, var(--cyan) 100%);
    color: var(--dark);
    padding: 19px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 900;
    box-shadow: 0 8px 40px rgba(0,212,255,0.4);
    transition: all 0.3s ease;
    animation: ctaGlow 2.5s infinite;
    margin-bottom: 20px;
}
.btn-cta:hover { transform: translateY(-3px); box-shadow: 0 14px 50px rgba(0,212,255,0.55); }
.hero-bottom-trust {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 0.88rem;
}

/* Gallery */
.hero-visual { position: relative; }
.glow-ring {
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,212,255,0.12) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.gallery-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}
.main-img {
    width: 100%;
    height: 320px;
    object-fit: contain;
    border-radius: 12px;
    transition: transform 0.4s ease;
    background: rgba(255,255,255,0.02);
}
.main-img:hover { transform: scale(1.03); }
.thumbs-row {
    display: flex;
    gap: 8px;
    margin-top: 14px;
    flex-wrap: wrap;
    justify-content: center;
}
.thumb {
    width: 55px; height: 55px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid transparent;
    opacity: 0.55;
    cursor: pointer;
    transition: all 0.25s;
}
.thumb.active, .thumb:hover { border-color: var(--cyan); opacity: 1; }

/* Floating badges */
.floating-badge {
    position: absolute;
    background: rgba(6,11,20,0.9);
    border: 1px solid var(--cyan);
    color: var(--cyan);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 800;
    box-shadow: 0 4px 20px rgba(0,212,255,0.3);
    animation: float 3s ease-in-out infinite;
    z-index: 2;
}
.badge-1 { top: 20px; right: -10px; }
.badge-2 { bottom: 80px; left: -20px; animation-delay: 1.5s; }
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* === SECTION TITLE === */
.section-title {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 900;
    color: white;
    margin-bottom: 50px;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px; height: 3px;
    background: linear-gradient(90deg, var(--cyan), var(--electric));
    border-radius: 3px;
    margin: 14px auto 0;
}
.section-title.light { color: white; }

/* === FEATURES === */
.features-section {
    padding: 90px 0;
    background: var(--dark2);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.feat-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 22px;
    text-align: center;
    transition: all 0.3s;
    cursor: default;
}
.feat-card:hover {
    border-color: var(--cyan);
    background: rgba(0,212,255,0.04);
    transform: translateY(-6px);
    box-shadow: var(--shadow-cyan);
}
.feat-icon { font-size: 2.4rem; margin-bottom: 14px; }
.feat-card h3 { font-size: 1rem; font-weight: 800; color: white; margin-bottom: 8px; }
.feat-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

/* === USE CASES === */
.usecases {
    padding: 90px 0;
    background: var(--dark);
}
.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.case-card {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border);
}
.case-card img {
    width: 100%; height: 250px;
    object-fit: cover; display: block;
    transition: transform 0.4s;
}
.case-card:hover img { transform: scale(1.06); }
.case-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(6,11,20,0.95));
    padding: 20px 16px;
}
.case-overlay h3 { font-size: 0.95rem; font-weight: 800; color: var(--cyan); margin-bottom: 4px; }
.case-overlay p { font-size: 0.82rem; color: var(--muted); }

/* === SPECS TABLE === */
.specs-section {
    padding: 90px 0;
    background: var(--dark2);
}
.specs-table-wrap { max-width: 680px; margin: 0 auto; }
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table tr { border-bottom: 1px solid var(--border); }
.specs-table tr:last-child { border-bottom: none; }
.specs-table td {
    padding: 16px 20px;
    font-size: 0.95rem;
    color: var(--muted);
}
.specs-table td:last-child { color: white; text-align: left; }
.specs-table tr:hover td { background: rgba(0,212,255,0.04); }

/* === REVIEWS === */
.reviews-section {
    padding: 90px 0;
    background: radial-gradient(ellipse at center, rgba(0,212,255,0.04) 0%, var(--dark) 70%);
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.review-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 22px;
    transition: all 0.3s;
}
.review-card:hover { border-color: var(--cyan); transform: translateY(-4px); }
.stars { font-size: 1.1rem; margin-bottom: 14px; }
.review-card p { color: var(--muted); font-size: 0.93rem; line-height: 1.75; margin-bottom: 16px; }
.reviewer { color: var(--cyan); font-size: 0.85rem; font-weight: 700; }

/* === ORDER FORM === */
.order-section {
    padding: 90px 0;
    background: var(--dark2);
}
.order-card {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow: var(--shadow-cyan);
}
.order-header { text-align: center; margin-bottom: 28px; }
.order-icon { font-size: 3rem; margin-bottom: 10px; display: block; filter: drop-shadow(0 0 12px var(--cyan)); }
.order-header h2 { font-size: 1.8rem; font-weight: 900; color: white; margin-bottom: 6px; }
.order-header p { color: var(--muted); font-size: 0.95rem; }

.price-banner {
    background: linear-gradient(90deg, rgba(0,212,255,0.1), rgba(0,212,255,0.05));
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    color: var(--muted);
    font-weight: 700;
}
.price-big { font-size: 1.6rem; font-weight: 900; color: var(--cyan); }

.fg { margin-bottom: 18px; }
.fg label { display: block; font-size: 0.88rem; font-weight: 700; color: var(--muted); margin-bottom: 7px; }
.fg input, .fg select, .fg textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    color: white;
    direction: rtl;
    transition: border-color 0.25s, box-shadow 0.25s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 0 4px rgba(0,212,255,0.1);
}
.fg select option { background: var(--dark2); color: white; }
.fg textarea { resize: vertical; min-height: 80px; }

.btn-order {
    width: 100%;
    padding: 18px;
    background: linear-gradient(90deg, var(--cyan-dark) 0%, var(--cyan) 100%);
    color: var(--dark);
    border: none;
    border-radius: 50px;
    font-family: 'Cairo', sans-serif;
    font-size: 1.15rem;
    font-weight: 900;
    cursor: pointer;
    margin-top: 8px;
    box-shadow: 0 8px 30px rgba(0,212,255,0.35);
    transition: all 0.3s;
    animation: ctaGlow 2.5s infinite;
}
.btn-order:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(0,212,255,0.5); }
.btn-order:disabled { opacity: 0.6; cursor: not-allowed; animation: none; transform: none; }

.order-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.order-badges span { font-size: 0.82rem; color: var(--muted); font-weight: 600; }

/* === QUANTITY SELECTOR === */
.qty-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}
.qty-card {
    background: rgba(255,255,255,0.03);
    border: 2px solid var(--border);
    border-radius: 14px;
    padding: 16px 14px;
    cursor: pointer;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}
.qty-card:hover { border-color: var(--cyan); background: rgba(0,212,255,0.04); }
.qty-card.active {
    border-color: var(--cyan);
    background: rgba(0,212,255,0.08);
    box-shadow: 0 0 20px rgba(0,212,255,0.15);
}
.qty-radio {
    font-size: 1rem;
    color: rgba(255,255,255,0.3);
    flex-shrink: 0;
    transition: color 0.2s;
}
.qty-card.active .qty-radio { color: var(--cyan); }
.qty-info { flex: 1; }
.qty-label { font-size: 0.85rem; color: var(--muted); font-weight: 700; }
.qty-price { font-size: 1.2rem; font-weight: 900; color: white; }
.qty-card.active .qty-price { color: var(--cyan); }
.qty-badge {
    position: absolute;
    top: -10px;
    left: 10px;
    background: rgba(0,212,255,0.15);
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 50px;
    white-space: nowrap;
}
.qty-badge.deal {
    background: rgba(255,107,0,0.15);
    border-color: rgba(255,107,0,0.3);
    color: #ff9044;
}

/* === FAQ === */
.faq-section { padding: 90px 0; background: var(--dark); }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}
.fq {
    padding: 18px 20px;
    font-weight: 800;
    font-size: 0.96rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    transition: background 0.2s;
}
.fq:hover { background: rgba(0,212,255,0.05); }
.fa {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.8;
    transition: max-height 0.35s ease, padding 0.3s;
}
.faq-item.open .fa { max-height: 200px; padding: 0 20px 18px; }
.faq-item.open .arr { transform: rotate(180deg); }
.arr { transition: transform 0.3s; font-size: 0.78rem; color: var(--cyan); }

/* === FOOTER === */
.footer {
    background: var(--dark2);
    border-top: 1px solid var(--border);
    text-align: center;
    padding: 32px 20px;
    font-size: 0.88rem;
    color: var(--muted);
}
.footer-logo { font-size: 1.3rem; font-weight: 900; color: white; margin-bottom: 10px; }

/* === STICKY CTA === */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    padding: 12px 20px;
    background: var(--dark2);
    border-top: 1px solid var(--border);
    z-index: 999;
}
.btn-sticky {
    display: block;
    background: linear-gradient(90deg, var(--cyan-dark), var(--cyan));
    color: var(--dark);
    text-align: center;
    padding: 16px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(0,212,255,0.35);
}

/* === ANIMATIONS === */
@keyframes pulse { 0%,100%{transform:scale(1)}50%{transform:scale(1.04)} }
@keyframes ctaGlow {
    0%,100%{box-shadow:0 8px 30px rgba(0,212,255,0.35)}
    50%{box-shadow:0 8px 50px rgba(0,212,255,0.6)}
}

/* === RESPONSIVE === */
@media(max-width:768px){
    .hero-grid{grid-template-columns:1fr;gap:40px;}
    .hero-visual{order:-1;}
    .features-grid{grid-template-columns:1fr 1fr;}
    .cases-grid{grid-template-columns:1fr;}
    .reviews-grid{grid-template-columns:1fr;}
    .order-card{padding:32px 20px;}
    .sticky-cta{display:block;}
    .hero{padding:40px 0 60px;min-height:auto;}
    .floating-badge{display:none;}
}
@media(max-width:480px){
    .features-grid{grid-template-columns:1fr;}
    .specs-table td{font-size:0.85rem;padding:12px 12px;}
}
