/* ============================================================
   layout.css — تخطيط موقع biila Toppik
   مستوحى من toppik.com مع الحفاظ على الألوان الأصلية
   ============================================================ */

:root {
    --red: #ff0050;
    --red2: #ff3366;
    --purple: #b000ff;
    --emerald: #00ff88;
    --gold: #ffd700;
    --bg: #0f0f0f;
    --bg2: #1a1a1a;
    --bg3: #222;
    --txt: #ffffff;
    --txt2: #cccccc;
    --txt3: #888888;
    --border: rgba(255, 255, 255, 0.08);
    --max: 1200px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--txt);
    line-height: 1.6;
    overflow-x: hidden;
    direction: rtl;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ══════════════════════════════════════
   شريط الإعلان
══════════════════════════════════════ */
.announcement-bar {
    background: linear-gradient(90deg, var(--red), var(--purple));
    height: 40px;
    overflow: hidden;
    position: relative;
}

.ann-track {
    display: flex;
    align-items: center;
    gap: 2rem;
    white-space: nowrap;
    animation: annScroll 22s linear infinite;
    height: 100%;
    font-size: 0.82rem;
    font-weight: 600;
    color: #fff;
    padding-right: 100%;
}

.ann-track span {
    flex-shrink: 0;
}

@keyframes annScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ══════════════════════════════════════
   الهيدر
══════════════════════════════════════ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-weight: 900;
    font-size: 1.5rem;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-brand {
    color: var(--red);
}

.logo-product {
    color: #fff;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    flex: 1;
    justify-content: center;
}

.main-nav a {
    padding: 0.4rem 0.9rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--txt2);
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}

.main-nav a:hover {
    color: var(--red);
    background: rgba(255, 0, 80, 0.08);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-shrink: 0;
}

.header-wa {
    color: #25D366;
    display: flex;
    align-items: center;
    transition: transform 0.2s;
}

.header-wa:hover {
    transform: scale(1.15);
}

.header-cta-btn {
    padding: 0.45rem 1.2rem;
    background: linear-gradient(135deg, var(--red), var(--purple));
    color: #fff;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.25s;
    box-shadow: 0 0 18px rgba(255, 0, 80, 0.35);
}

.header-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(255, 0, 80, 0.6);
}

.mob-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    min-width: 40px;
    align-items: center;
    justify-content: center;
}

.mob-hamburger span {
    width: 22px;
    height: 2.5px;
    background: var(--red);
    border-radius: 2px;
    transition: all 0.25s;
    display: block;
}

.mob-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mob-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.mob-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mob-nav {
    display: none;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.98);
    border-top: 1px solid var(--border);
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.3rem;
}

.mob-nav.open {
    display: flex;
}

.mob-nav a {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    color: var(--txt2);
    transition: all 0.2s;
}

.mob-nav a:hover {
    color: var(--red);
    background: rgba(255, 0, 80, 0.08);
}

.mob-nav .mob-cta {
    margin-top: 0.5rem;
    text-align: center;
    background: linear-gradient(135deg, var(--red), var(--purple));
    color: #fff;
    border-radius: 50px;
    padding: 0.8rem;
    font-weight: 700;
}

/* ══════════════════════════════════════
   Hero
══════════════════════════════════════ */
.hero-full {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 560px;
    overflow: hidden;
}

.hero-full .slider-container {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-full .slider-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s;
    transform: scale(1.04);
}

.hero-full .slider-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 5;
    animation: kbHero 6s ease-out forwards;
}

@keyframes kbHero {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.06);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 10;
    background: linear-gradient(to left,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.55) 50%,
            transparent 100%);
    display: flex;
    align-items: center;
}

.hero-content-wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.hero-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-eyebrow::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--red);
}

.hero-headline {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.2rem;
    color: #fff;
}

.hero-headline em {
    font-style: normal;
    background: linear-gradient(135deg, var(--red), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.hbtn-primary {
    padding: 0.85rem 2.2rem;
    background: linear-gradient(135deg, var(--red), var(--purple));
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 0 30px rgba(255, 0, 80, 0.45);
}

.hbtn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(255, 0, 80, 0.7);
}

.hbtn-ghost {
    padding: 0.85rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}

.hbtn-ghost:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.hero-trust-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.75);
    flex-wrap: wrap;
}

.trust-sep {
    color: rgba(255, 255, 255, 0.3);
}

.sl-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(6px);
    border: 1.5px solid rgba(255, 0, 80, 0.4);
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s;
}

.hero-full:hover .sl-arrow {
    opacity: 1;
}

.sl-arrow:hover {
    background: var(--red);
    border-color: var(--red);
}

.sl-prev {
    right: 14px;
}

.sl-next {
    left: 14px;
}

.sl-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 8px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(6px);
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.sl-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sl-dots .dot.active {
    background: var(--red);
    width: 24px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(255, 0, 80, 0.7);
}

.sl-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 20;
}

.sl-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--red), var(--red2));
    width: 0%;
    box-shadow: 0 0 8px rgba(255, 0, 80, 0.8);
}

@keyframes progressFill {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}

.sl-fill.animating {
    animation: progressFill 5s linear forwards;
}

/* ══════════════════════════════════════
   Caption Bar
══════════════════════════════════════ */
.caption-bar {
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
    padding: 1.2rem 1.5rem;
    text-align: center;
}

.caption-text {
    font-size: clamp(1.4rem, 3.5vw, 2.2rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--red), var(--purple), var(--emerald));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.caption-text.caption-exit {
    animation: capOut 0.3s ease forwards;
}

.caption-text.caption-enter {
    animation: capIn 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes capOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-12px);
    }
}

@keyframes capIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ══════════════════════════════════════
   Trust Bar
══════════════════════════════════════ */
.trust-bar {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 0.9rem 1.5rem;
}

.trust-bar-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem 2.5rem;
}

.tb-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--txt2);
}

.tb-item svg {
    color: var(--red);
    flex-shrink: 0;
}

/* ══════════════════════════════════════
   Urgency Strip
══════════════════════════════════════ */
.urgency-strip {
    background: linear-gradient(135deg, rgba(255, 0, 80, 0.12), rgba(176, 0, 255, 0.12));
    border-top: 1px solid rgba(255, 0, 80, 0.2);
    border-bottom: 1px solid rgba(255, 0, 80, 0.2);
    padding: 0.9rem 1.5rem;
}

.urgency-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.urg-icon {
    font-size: 1.2rem;
    animation: pulse-txt 1.5s ease-in-out infinite;
}

@keyframes pulse-txt {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

.urg-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--txt);
}

.urg-btn {
    padding: 0.45rem 1.4rem;
    background: linear-gradient(135deg, var(--red), var(--purple));
    color: #fff;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    transition: all 0.25s;
    white-space: nowrap;
}

.urg-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 80, 0.5);
}

/* ══════════════════════════════════════
   أقسام عامة
══════════════════════════════════════ */
.section-wrap {
    padding: 80px 0;
}

.section-dark {
    background: var(--bg2);
}

.section-container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-container.narrow {
    max-width: 780px;
}

.section-head {
    text-align: center;
    margin-bottom: 3rem;
}

.sec-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.sec-eyebrow::before,
.sec-eyebrow::after {
    content: '';
    width: 24px;
    height: 1.5px;
    background: var(--red);
    opacity: 0.6;
}

.sec-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--txt);
    margin-bottom: 0.8rem;
}

.sec-sub {
    font-size: 1rem;
    color: var(--txt3);
    max-width: 540px;
    margin: 0 auto;
}

/* ══════════════════════════════════════
   كيف يعمل
══════════════════════════════════════ */
.steps-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step-item {
    flex: 1;
    max-width: 300px;
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s;
    position: relative;
}

.step-item:hover {
    border-color: rgba(255, 0, 80, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(255, 0, 80, 0.15);
}

.step-num {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 0, 80, 0.12);
    line-height: 1;
    margin-bottom: 0.8rem;
    font-family: 'Cairo', sans-serif;
}

.step-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 0, 80, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--red);
    transition: all 0.3s;
}

.step-item:hover .step-icon-wrap {
    background: rgba(255, 0, 80, 0.18);
    transform: scale(1.08);
}

.step-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-item p {
    font-size: 0.88rem;
    color: var(--txt3);
    line-height: 1.6;
}

.step-arrow {
    font-size: 1.8rem;
    color: rgba(255, 0, 80, 0.3);
    display: flex;
    align-items: center;
    padding: 0 0.5rem;
    margin-top: -2rem;
    flex-shrink: 0;
}

.steps-highlight {
    text-align: center;
    margin-top: 2.5rem;
    padding: 1.1rem 2rem;
    background: linear-gradient(135deg, rgba(255, 0, 80, 0.1), rgba(176, 0, 255, 0.1));
    border: 1.5px solid rgba(255, 0, 80, 0.25);
    border-radius: 50px;
    display: inline-block;
    font-weight: 700;
    color: var(--red);
    font-size: 1rem;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
}

/* ══════════════════════════════════════
   المميزات
══════════════════════════════════════ */
.benefits-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.ben-card {
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
}

.ben-card:hover {
    background: rgba(255, 0, 80, 0.07);
    border-color: rgba(255, 0, 80, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(255, 0, 80, 0.15);
}

.ben-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.ben-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--emerald);
    margin-bottom: 0.5rem;
}

.ben-card p {
    font-size: 0.85rem;
    color: var(--txt3);
}

/* ══════════════════════════════════════
   الإحصائيات
══════════════════════════════════════ */
.stats-section {
    background: linear-gradient(135deg, rgba(255, 0, 80, 0.08), rgba(176, 0, 255, 0.08));
    border-top: 1px solid rgba(255, 0, 80, 0.15);
    border-bottom: 1px solid rgba(255, 0, 80, 0.15);
    padding: 60px 0;
}

.stats-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.8rem 1rem;
    background: rgba(255, 0, 80, 0.06);
    border: 1.5px solid rgba(255, 0, 80, 0.2);
    border-radius: 16px;
    transition: all 0.3s;
}

.stat-item:hover {
    border-color: var(--red);
    background: rgba(255, 0, 80, 0.12);
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(255, 0, 80, 0.25);
}

.stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--red), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.3rem;
}

.stat-item .stat-delta {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--emerald);
    min-height: 1rem;
    margin-bottom: 0.3rem;
    opacity: 0;
    transition: opacity 0.4s;
}

.stat-item .stat-label {
    font-size: 0.82rem;
    color: var(--txt3);
    margin-bottom: 1rem;
}

.stat-bar {
    width: 100%;
    height: 5px;
    background: rgba(255, 0, 80, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.stat-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--red), var(--red2));
    border-radius: 4px;
    box-shadow: 0 0 8px rgba(255, 0, 80, 0.5);
    transition: width 0.6s ease;
}

.stats-info {
    text-align: center;
}

.stats-info p {
    color: var(--red);
    font-weight: 600;
    font-size: 0.95rem;
}

.last-sale-text {
    color: var(--txt3) !important;
    font-weight: 400 !important;
    font-size: 0.82rem !important;
    margin-top: 0.4rem;
}

/* ══════════════════════════════════════
   قبل وبعد - سليدر جديد
══════════════════════════════════════ */
.ba-slider-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 24px;
    background: var(--bg2);
    padding: 0.5rem 0;
}

.ba-slider-container {
    overflow: hidden;
    width: 100%;
}

.ba-slides-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ba-slide-item {
    flex: 0 0 100%;
    padding: 0 0.5rem;
}

.ba-compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.ba-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1.5px solid var(--border);
    background: var(--bg2);
    transition: all 0.3s;
    position: relative;
}

.ba-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.ba-card.featured {
    border-color: rgba(0, 255, 136, 0.4);
    box-shadow: 0 0 0 1px rgba(0, 255, 136, 0.2), 0 8px 32px rgba(0, 255, 136, 0.15);
}

.ba-label {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 5;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.before-lbl {
    background: rgba(255, 100, 100, 0.85);
    color: #fff;
}

.after-lbl {
    background: rgba(0, 255, 136, 0.85);
    color: #000;
}

.ba-img-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--bg3);
}

.ba-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.5s;
}

.ba-card:hover .ba-img-wrap img {
    transform: scale(1.04);
}

.ba-footer {
    padding: 1rem 1.2rem;
    display: flex;
    justify-content: center;
}

.ba-tag {
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
}

.ba-tag.bad {
    background: rgba(255, 80, 80, 0.12);
    color: #ff6b6b;
    border: 1px solid rgba(255, 80, 80, 0.2);
}

.ba-tag.good {
    background: rgba(0, 255, 136, 0.1);
    color: var(--emerald);
    border: 1px solid rgba(0, 255, 136, 0.25);
}

.ba-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 0, 80, 0.5);
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 15;
}

.ba-slider-arrow:hover {
    background: var(--red);
    border-color: var(--red);
}

.ba-prev {
    right: 10px;
}

.ba-next {
    left: 10px;
}

.ba-slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 1.8rem;
}

.ba-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 0, 80, 0.3);
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid rgba(255, 0, 80, 0.2);
}

.ba-dot.active {
    background: var(--red);
    width: 24px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(255, 0, 80, 0.6);
}

@media (max-width: 768px) {
    .ba-compare-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .ba-slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 1.3rem;
    }
    .ba-prev {
        right: 5px;
    }
    .ba-next {
        left: 5px;
    }
}

/* ══════════════════════════════════════
   الفيديو
══════════════════════════════════════ */
.video-frame-wrap {
    border-radius: 20px;
    overflow: hidden;
    border: 1.5px solid rgba(255, 0, 80, 0.25);
    box-shadow: 0 0 40px rgba(255, 0, 80, 0.15);
}

.video-frame-wrap iframe {
    display: block;
}

/* ══════════════════════════════════════
   المشكلة
══════════════════════════════════════ */
.problems-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.prob-item {
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
}

.prob-item:hover {
    border-color: rgba(176, 0, 255, 0.3);
    background: rgba(176, 0, 255, 0.07);
    transform: translateY(-6px);
}

.prob-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s;
}

.stress-icon {
    background: rgba(255, 107, 107, 0.15);
    color: #ff6b6b;
}

.money-icon {
    background: rgba(255, 215, 0, 0.15);
    color: var(--gold);
}

.failed-icon {
    background: rgba(176, 0, 255, 0.15);
    color: var(--purple);
}

.prob-item:hover .prob-icon {
    transform: scale(1.1) rotate(8deg);
}

.prob-item h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.prob-item p {
    font-size: 0.85rem;
    color: var(--txt3);
}

.solution-banner {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.08), rgba(0, 212, 255, 0.08));
    border: 1.5px solid rgba(0, 255, 136, 0.25);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
}

.sol-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--emerald);
    margin-bottom: 0.8rem;
}

.sol-content p {
    color: var(--txt2);
    margin-bottom: 1.5rem;
}

.sol-btn {
    display: inline-block;
    padding: 0.85rem 2.5rem;
    background: linear-gradient(135deg, var(--red), var(--purple));
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 0 28px rgba(255, 0, 80, 0.4);
}

.sol-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(255, 0, 80, 0.65);
}

/* ══════════════════════════════════════
   الثقة
══════════════════════════════════════ */
.trust-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.trust-card {
    padding: 2rem 1.2rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.04), rgba(0, 212, 255, 0.04));
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
}

.trust-card:hover {
    border-color: rgba(255, 215, 0, 0.35);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(0, 212, 255, 0.08));
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(255, 215, 0, 0.15);
}

.trust-icon-wrap {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.trust-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.6rem;
}

.trust-card p {
    font-size: 0.82rem;
    color: var(--txt3);
    line-height: 1.6;
}

/* ══════════════════════════════════════
   آراء العملاء
══════════════════════════════════════ */
.rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 0.8rem;
    flex-wrap: wrap;
}

.stars-big {
    font-size: 1.3rem;
    color: var(--gold);
}

.rating-num {
    font-size: 1.1rem;
    font-weight: 700;
}

.rating-count {
    font-size: 0.82rem;
    color: var(--txt3);
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
}

.carousel-container {
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    transition: transform 0.5s ease;
}

.testimonial-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s;
    position: relative;
}

.testimonial-card:hover {
    border-color: rgba(0, 255, 136, 0.3);
    background: rgba(0, 255, 136, 0.05);
    transform: translateY(-6px);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 16px;
    font-size: 2.5rem;
    color: var(--red);
    opacity: 0.25;
    font-family: serif;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 0, 80, 0.15);
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--txt);
}

.location {
    font-size: 0.78rem;
    color: var(--red);
    margin: 0;
}

.stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
}

.testimonial-text {
    font-size: 0.85rem;
    color: var(--txt2);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 0.8rem;
}

.verified-badge {
    font-size: 0.75rem;
    color: var(--emerald);
    font-weight: 600;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--red), var(--red2));
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(255, 0, 80, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 32px rgba(255, 0, 80, 0.7);
}

.carousel-btn.prev {
    left: -10px;
}

.carousel-btn.next {
    right: -10px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
}

.carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 0, 80, 0.3);
    cursor: pointer;
    transition: all 0.3s;
    border: 1.5px solid rgba(255, 0, 80, 0.1);
}

.carousel-dots .dot.active {
    background: var(--red);
    box-shadow: 0 0 14px rgba(255, 0, 80, 0.6);
    transform: scale(1.2);
}

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.faq-items {
    margin-bottom: 2.5rem;
}

.faq-item {
    margin-bottom: 0.8rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    transition: border-color 0.2s;
}

.faq-item:hover {
    border-color: rgba(255, 0, 80, 0.2);
}

.faq-item.active {
    border-color: rgba(255, 0, 80, 0.3);
}

.faq-question {
    width: 100%;
    padding: 1.1rem 1.3rem;
    background: transparent;
    text-align: right;
    color: var(--txt);
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--red);
}

.faq-icon {
    font-size: 1.3rem;
    color: var(--red);
    transition: transform 0.35s;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(255, 0, 80, 0.04);
}

.faq-item.active .faq-answer {
    max-height: 400px;
}

.faq-answer p {
    padding: 0 1.3rem 1.2rem;
    color: var(--txt2);
    font-size: 0.88rem;
    line-height: 1.7;
    margin: 0;
}

.faq-cta {
    text-align: center;
    padding: 2rem;
    background: var(--bg2);
    border-radius: 16px;
    border: 1px solid var(--border);
}

.faq-cta p {
    color: var(--txt2);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.faq-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.8rem 1.8rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.25s;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
}

.faq-wa-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

/* ══════════════════════════════════════
   CTA النهائي
══════════════════════════════════════ */
.final-cta-sec {
    background: linear-gradient(135deg, rgba(255, 0, 80, 0.12), rgba(176, 0, 255, 0.12));
    border-top: 1px solid rgba(255, 0, 80, 0.2);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.final-cta-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 0, 80, 0.1), transparent 60%),
        radial-gradient(circle at 70% 50%, rgba(176, 0, 255, 0.1), transparent 60%);
}

.fcta-wrap {
    text-align: center;
    position: relative;
    z-index: 1;
}

.fcta-wrap h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--red), var(--emerald));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fcta-wrap p {
    color: var(--txt2);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.urgency-badge {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: rgba(255, 100, 100, 0.15);
    border: 1px solid rgba(255, 100, 100, 0.3);
    color: #ff6b6b;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.88rem;
    margin-bottom: 2rem;
    animation: pulse-txt 1.5s ease-in-out infinite;
}

.fcta-btn {
    display: inline-block;
    padding: 1.1rem 3rem;
    background: linear-gradient(135deg, var(--purple), var(--red));
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
    box-shadow: 0 0 40px rgba(176, 0, 255, 0.5);
}

.fcta-btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 40px rgba(176, 0, 255, 0.7);
}

.fcta-sub {
    font-size: 0.82rem;
    color: var(--txt3);
}

/* ══════════════════════════════════════
   الفوتر
══════════════════════════════════════ */
.site-footer {
    background: #080808;
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    font-size: 0.88rem;
    color: var(--txt3);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    font-size: 0.85rem;
    color: var(--txt3);
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--red);
}

.footer-col p {
    font-size: 0.85rem;
    color: var(--txt3);
    margin-bottom: 0.4rem;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.fbadge {
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.75rem;
    color: var(--txt2);
}

.social-links {
    display: flex;
    gap: 0.8rem;
}

.social-links a {
    font-size: 1.3rem;
    transition: transform 0.2s;
}

.social-links a:hover {
    transform: scale(1.2);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    font-size: 0.8rem;
    color: var(--txt3);
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* ══════════════════════════════════════
   رسبونسف
══════════════════════════════════════ */
@media (max-width: 1024px) {
    .trust-grid-new,
    .stats-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    .mob-hamburger {
        display: flex;
    }
    .header-cta-btn {
        display: none;
    }
    .hero-full {
        height: 70vh;
        min-height: 450px;
    }
    .hero-overlay {
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4) 60%, transparent);
        align-items: flex-end;
        padding-bottom: 3rem;
    }
    .hero-eyebrow::before,
    .hero-eyebrow::after {
        display: none;
    }
    .section-wrap {
        padding: 56px 0;
    }
    .benefits-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
    .steps-row {
        flex-direction: column;
        align-items: center;
    }
    .step-arrow {
        transform: rotate(-90deg);
        padding: 0;
        margin: -0.5rem 0;
    }
    .problems-row {
        grid-template-columns: 1fr;
    }
    .ba-slide-item .ba-compare-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
    .sl-arrow {
        opacity: 1;
    }
    .trust-bar-inner {
        gap: 1rem 1.5rem;
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .hero-full {
        height: 60vh;
        min-height: 380px;
    }
    .benefits-grid-new {
        grid-template-columns: 1fr;
    }
    .trust-grid-new {
        grid-template-columns: 1fr;
    }
    .stats-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    .header-inner {
        padding: 0 1rem;
    }
    .section-container {
        padding: 0 1rem;
    }
    .fcta-btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}