/* ================= CSS VARIABLES ================= */
:root {
    --bg-dark: #030304;
    --bg-mid: #0a0e14;
    --bg-glass: rgba(15, 20, 25, 0.6);

    --text-primary: #e2e8f0;
    --text-secondary: #94a3b8;

    --brand-green: #00d05a;
    --gradient-green: linear-gradient(135deg, #00e664, #009940);

    --border-color: rgba(255, 255, 255, 0.08);
    --radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================= GLOBAL ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    /* مسحنا overflow-x: hidden من هنا خالص عشان السوستة */
}

body {
    font-family: "Inter", sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    width: 100%;
    overflow-x: hidden; /* دي كفاية جداً تمنع السكرول بالعرض */
    position: relative;
    -webkit-font-smoothing: antialiased; /* بتنضف الفونتات على الموبايل */
    overscroll-behavior-y: none; /* بتمنع سحبة السوستة الرخمة دي */
}

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

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

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

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.relative {
    position: relative;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: #fff;
    color: #000;
    padding: 10px 14px;
    z-index: 9999;
    border-radius: 6px;
}

.skip-link:focus {
    left: 10px;
    top: 10px;
}

/* ================= TYPOGRAPHY & EFFECTS ================= */
h1,
h2,
h3,
h4 {
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: #fff;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    text-transform: uppercase;
    font-weight: 900;
}

h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    margin-bottom: 14px;
}

h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.text-glow {
    text-shadow: 0 0 40px rgba(0, 208, 90, 0.2), 0 0 10px rgba(255, 255, 255, 0.1);
}

.text-animated-gradient {
    background: linear-gradient(110deg, #00d05a 10%, #80ffb0 30%, #00d05a 50%, #00d05a 100%);
    background-size: 200% auto;
    color: #fff;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
    filter: drop-shadow(0 0 15px rgba(0, 208, 90, 0.3));
    display: inline-block;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.text-secondary {
    color: var(--text-secondary);
}

/* ================= NAVBAR ================= */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 10px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links a {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--brand-green);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: "";
    position: absolute;
    left: 0;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* ================= BUTTONS ================= */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 800;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    will-change: transform;
}

.btn-primary {
    background: var(--gradient-green);
    box-shadow: 0 4px 15px rgba(0, 208, 90, 0.2);
}

.btn-black-text {
    color: #000 !important;
    font-weight: 900 !important;
}

.glow-btn:hover {
    box-shadow: 0 0 30px rgba(0, 208, 90, 0.6);
    transform: translateY(-4px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--brand-green);
    background: rgba(0, 208, 90, 0.1);
    transform: translateY(-4px);
}

.large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.small-btn {
    padding: 12px 24px;
    font-size: 0.85rem;
}

/* ================= HERO & BACKGROUND ================= */
.hero {
    min-height: 100vh;
    min-height: 100svh; /* السطر السحري ده بيخلي الطول يتأقلم مع شريط المتصفح بتاع الموبايل وميعملش نتشة في السكرول */
    display: flex;
    flex-direction: column;
    padding-top: 160px;
    overflow: hidden;
    position: relative;
}

.noise-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05;
    mix-blend-mode: overlay;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle, black 30%, transparent 80%);
}

.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(130px);
    opacity: 0.22;
    z-index: 0;
    pointer-events: none;
}

/* ================= HERO GLOW ANIMATIONS (FAST & NOTICEABLE) ================= */
.mega-glow-left {
    width: 520px;
    height: 520px;
    background: var(--brand-green);
    top: 10%;
    left: -150px;
    will-change: transform, opacity;
    animation: breatheLeft 6s ease-in-out infinite alternate;
}

.mega-glow-right {
    width: 520px;
    height: 520px;
    background: var(--brand-green);
    bottom: 10%;
    right: -150px;
    opacity: 0.18;
    will-change: transform, opacity;
    animation: breatheRight 8s ease-in-out infinite alternate;
}

@keyframes breatheLeft {
    0% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.22; }
    100% { transform: translate3d(80px, -50px, 0) scale(1.25); opacity: 0.45; }
}

@keyframes breatheRight {
    0% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.18; }
    100% { transform: translate3d(-80px, 60px, 0) scale(1.3); opacity: 0.4; }
}


/* ================= WATERFALL BACKGROUND TEXT ================= */
.bg-text-col {
    position: absolute;
    top: 0;
    bottom: 0; /* ياخد طول السكشن كله */
    width: auto;
    display: flex;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    overflow: hidden; /* بيخفي الكلام اللي بيطلع بره الشاشة */
    /* تأثير ذوبان الكلام من فوق ومن تحت */
    mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}

.left-col {
    left: -5vw;
    align-items: flex-start;
}

.right-col {
    right: -5vw;
    align-items: flex-end;
}

.waterfall-track {
    display: flex;
    flex-direction: column;
    will-change: transform; /* تحذير للـ GPU عشان يجهز الأنيميشن بدون تقطيع */
}

.waterfall-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 20px; /* مسافة ضرورية عشان التكرار ميبقاش مقطوع */
}

/* حركة الشمال (طالع لفوق) */
.track-up {
    animation: waterfallUp 25s linear infinite;
}

/* حركة اليمين (نازل لتحت) */
.track-down {
    transform: translateY(-50%);
    animation: waterfallDown 25s linear infinite;
}

@keyframes waterfallUp {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(0, -50%, 0); } /* بيتحرك بالظبط نص المسافة عشان يعيد نفسه */
}

@keyframes waterfallDown {
    0% { transform: translate3d(0, -50%, 0); }
    100% { transform: translate3d(0, 0, 0); }
}

/* سيب الـ .bg-text زي ما هو، متعدلش فيه حاجة */

.bg-text {
    font-size: 6rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.05);
    white-space: nowrap;
    line-height: 1.1;
    text-transform: uppercase;
}

.stroke-green {
    color: transparent;
    -webkit-text-stroke: 2px rgba(0, 208, 90, 0.15);
}

/* ================= HERO CONTENT ================= */
/* ================= HERO CONTENT ================= */
.hero-content {
    flex-grow: 1;
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center !important;
    margin-bottom: 50px;
    animation: heroFadeUp 680ms ease-out both;
}

/* ================= HERO CENTER HTML LOGO (تكبير ضخم) ================= */
.center-logo-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 60px; /* زودنا المسافة دي عشان اللوجو الضخم ميكتمش الكلام اللي تحته */
}

.hero-icon-large {
    width: 1000px; /* كبرناه جداً عشان يملى المركز */
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 25px rgba(0, 208, 90, 0.4)) drop-shadow(0 0 10px rgba(128, 255, 176, 0.2));
    animation: logoFloat 6.5s ease-in-out infinite;
}

.hero-logo-sub {
    font-size: 1.4rem;
    letter-spacing: 0.5em;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 800;
    margin-top: 8px;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 240px;
    height: 240px;
    background: var(--brand-green);
    filter: blur(85px);
    opacity: 0.3;
    z-index: 1;
    border-radius: 50%;
}

.hero-title {
    width: 100%;
    display: block;
    text-align: center !important;
    margin: 0 auto 25px auto !important;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin: 0 auto 40px auto !important;
    max-width: 750px;
    text-align: center !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    animation: heroFadeUp 820ms ease-out both;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    z-index: 20;
    animation: heroFadeUp 920ms ease-out both;
}

.hero-grid-bg {
    animation: gridDrift 18s linear infinite;
}

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

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes gridDrift {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 40px 40px, 40px 40px; }
}

/* تظبيط اللوجو الكبير عشان ميبوظش شاشة الموبايل */
@media (max-width: 768px) {
    .center-logo-wrapper { margin-bottom: 30px; }
    .hero-icon-large { width: 260px; }
    .hero-logo-sub { font-size: 0.9rem; letter-spacing: 0.3em; }
}

/* ================= MARQUEE ================= */
.mini-marquee-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #001a0b, #004d22, #001a0b);
    border-top: 1px solid rgba(0, 208, 90, 0.3);
    border-bottom: 1px solid rgba(0, 208, 90, 0.3);
    height: 60px;
    overflow: hidden;
    z-index: 15;
    contain: content;
    box-shadow: 0 0 24px rgba(0, 208, 90, 0.1);
    margin-top: auto;
}

.marquee-track {
    display: flex;
    width: fit-content;
    animation: scrollMarquee 25s linear infinite;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.marquee-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 40px;
    padding-right: 40px;
}

.marquee-group span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: #ffffff;
    font-weight: 600;
    white-space: nowrap;
}

.marquee-icon {
    color: var(--brand-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
}

@keyframes scrollMarquee {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* ================= CONTENT SECTIONS ================= */
.content-section {
    padding: 90px 0;
}

.section-alt {
    background: linear-gradient(180deg, #07090d, #05070a);
}

.section-copy {
    max-width: 780px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 22px;
    background: rgba(255, 255, 255, 0.02);
}

.card p {
    color: var(--text-secondary);
}

.card.featured {
    border-color: rgba(0, 208, 90, 0.45);
    box-shadow: 0 0 0 1px rgba(0, 208, 90, 0.2) inset;
}

/* ================= ABOUT PRO SECTION ================= */
.about-pro {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 0%, rgba(0, 208, 90, 0.08), transparent 40%),
        radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0.03), transparent 40%),
        linear-gradient(180deg, #05070d 0%, #03050a 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.about-pro-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
}

.about-orb-left {
    width: 320px;
    height: 320px;
    left: -90px;
    top: 120px;
    background: rgba(0, 208, 90, 0.18);
}

.about-orb-right {
    width: 360px;
    height: 360px;
    right: -120px;
    bottom: 30px;
    background: rgba(255, 255, 255, 0.08);
}

.about-pro-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 34px;
    align-items: start;
}

.about-kicker {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 8px 14px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 700;
    color: #cbd5e1;
    margin-bottom: 18px;
    background: rgba(255, 255, 255, 0.03);
}

.about-title {
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1.03;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    max-width: 16ch;
}

.about-intro {
    color: #dbe7ff;
    font-size: 1.08rem;
    max-width: 66ch;
}

.about-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0.22), rgba(255,255,255,0.04));
    margin: 24px 0;
}

.about-body {
    color: #b6c3db;
    max-width: 68ch;
    margin-bottom: 16px;
}

.about-pill-row {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.about-pill {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    color: #e2e8f0;
    padding: 10px 14px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    font-weight: 700;
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.about-pill:hover {
    border-color: rgba(0, 208, 90, 0.45);
    background: rgba(0, 208, 90, 0.08);
    transform: translateY(-1px);
}

.about-pro-right {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 18px;
    background: linear-gradient(180deg, rgba(18, 25, 44, 0.55), rgba(10, 14, 27, 0.48));
    backdrop-filter: blur(8px);
}

.about-image-card {
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 14px;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.about-image-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(3, 6, 14, 0.08) 0%,
        rgba(3, 6, 14, 0.45) 100%
    );
    pointer-events: none;
}

.about-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    filter: saturate(0.82) contrast(1.02) brightness(0.9);
    transform: scale(1.01);
    transition: transform 0.45s ease, filter 0.45s ease;
}

.about-image-card:hover .about-image {
    transform: scale(1.05);
    filter: saturate(0.92) contrast(1.06) brightness(0.95);
}

.about-step-card {
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 20px;
    padding: 18px;
    margin-bottom: 14px;
    background: rgba(255, 255, 255, 0.02);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.about-step-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 208, 90, 0.28);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.about-step-label {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #9fb0ce;
    margin-bottom: 10px;
    font-weight: 700;
}

.about-step-copy {
    color: #d8e2f5;
    font-size: 0.95rem;
    line-height: 1.55;
}

.tone-neutral {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
        rgba(255, 255, 255, 0.01);
}

.about-highlights {
    margin-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 14px;
}

.about-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cfd8ea;
    font-size: 0.83rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 600;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dot-blue,
.dot-pink,
.dot-green {
    background: #00d05a;
    box-shadow: 0 0 10px rgba(0, 208, 90, 0.55);
}

/* ================= RESULTS SECTION ================= */
/* ================= RESULTS SECTION (WITH IMAGE BACKGROUND) ================= */
.results-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    /* السحر هنا: 
       الطبقة الأولى: لون غامق فوق وتحت عشان يدمج السكشن مع اللي قبله واللي بعده بنعومة.
       الطبقة التانية: الصورة بتاعتك، ومظبوطة إنها تغطي المساحة كلها وتتوسط.
    */
    background: 
        linear-gradient(180deg, rgba(3, 3, 4, 0.685) 0%, rgba(10, 14, 20, 0.85) 50%, rgba(3, 3, 4, 0.98) 100%),
        url('src/photo1.jpeg') center/cover no-repeat;
    
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* هنزود شفافية الشبكة اللي فوق الصورة سنة عشان تبان أشيك */
.results-bg-grid {
    opacity: 0.6;
}

.results-kicker {
    width: fit-content;
    margin: 0 auto 12px auto;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
    color: #cdd9ee;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.03);
}

.results-title {
    text-align: center;
    font-size: clamp(1.9rem, 4vw, 3rem);
    max-width: 17ch;
    margin: 0 auto 10px auto;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.results-subtitle {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 34px auto;
    color: var(--text-secondary);
    font-size: 1.02rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.result-card {
    position: relative;
    border-radius: 22px;
    padding: 20px 20px 22px;
    min-height: 230px;
    border: 1px solid rgba(255,255,255,0.1);
    background:
        linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.01) 45%),
        rgba(14, 19, 32, 0.75);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.08),
        0 12px 30px rgba(0,0,0,0.28);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    overflow: hidden;
}

.result-card::before {
    content: "";
    position: absolute;
    inset: -30%;
    background: radial-gradient(circle, rgba(0,208,90,0.14), transparent 55%);
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.4s ease, transform 0.45s ease;
    pointer-events: none;
}

.result-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 208, 90, 0.4);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.08),
        0 18px 35px rgba(0,0,0,0.36),
        0 0 28px rgba(0, 208, 90, 0.18);
}

.result-card:hover::before {
    opacity: 1;
    transform: scale(1);
}

.result-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    font-size: 1.05rem;
    font-weight: 800;
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(3px);
}

.icon-blue {
    color: #6fb4ff;
    background: rgba(75, 126, 255, 0.2);
}

.icon-rose {
    color: #ff6f9f;
    background: rgba(217, 76, 124, 0.18);
}

.icon-emerald {
    color: #66e3a9;
    background: rgba(70, 184, 127, 0.18);
}

.icon-amber {
    color: #ffbd66;
    background: rgba(206, 145, 61, 0.18);
}

.result-value {
    font-size: clamp(2.1rem, 4.2vw, 3rem);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, #ffffff 0%, #9cd7b5 85%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.result-copy {
    color: #c6d0e1;
    max-width: 24ch;
    font-size: 1rem;
}

/* Scroll reveal base */
.reveal-section .reveal-item {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-section .reveal-item.reveal-active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ================= RESULTS: REALISTIC HANGING WIRES (FIXED) ================= */

/* ألوان الأرقام */
.text-orange { background: linear-gradient(90deg, #ff8c00, #ffb347) !important; -webkit-background-clip: text !important; color: transparent !important; }
.text-purple { background: linear-gradient(90deg, #a855f7, #d946ef) !important; -webkit-background-clip: text !important; color: transparent !important; }
.text-green { background: linear-gradient(90deg, #10b981, #34d399) !important; -webkit-background-clip: text !important; color: transparent !important; }
.text-blue { background: linear-gradient(90deg, #3b82f6, #60a5fa) !important; -webkit-background-clip: text !important; color: transparent !important; }

/* 1. تظبيط السكشن عشان يلزق في الـ Marquee والحبل ميتطقعش */
.results-section {
    padding-top: 0 !important;
    overflow: visible !important;
}

.results-section .results-grid {
    padding-top: 100px; /* دي مسافة نزول الحبل من الماركي للكارت */
}

/* 2. تجهيز الكارت للمرجيحة وإعطاءه Z-index عشان ميستخباش */
/* 2. تجهيز الكارت للمرجيحة وإعطاءه Z-index عشان ميستخباش */
.results-section .results-grid .reveal-item {
    opacity: 0;
    margin-top: 0 !important;
    transform-origin: center -100px !important;
    transform: perspective(1000px) rotateX(-90deg);
    will-change: transform, opacity;
    position: relative;
    z-index: 10; 
    overflow: visible !important; /* 🪄 السطر السحري اللي هيظهر الحبل */
}

/* 3. رسم الحبل المربوط (استخدمنا ::after عشان ::before مشغول باللمعة) */
.results-section .results-grid .reveal-item::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 2px; /* سمك الحبل */
    height: 100px !important; /* طول الحبل بيساوي مسافة الـ Grid بالظبط */
    /* لون الحبل فضي مضيء من تحت وبيختفي من فوق */
    background: linear-gradient(to top, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.05)); 
    z-index: -1; /* عشان يبقى ورا الكارت نفسه */
    /* شكل مسمار أو حلقة ربط في أول الكارت */
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

/* 4. تشغيل المرجيحة */
.results-section .results-grid .reveal-item.reveal-active {
    animation: cardSwing 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards !important;
}

/* 5. التتابع (Stagger) */
.results-section .results-grid .result-card:nth-child(1) { animation-delay: 0.1s !important; }
.results-section .results-grid .result-card:nth-child(2) { animation-delay: 0.25s !important; }
.results-section .results-grid .result-card:nth-child(3) { animation-delay: 0.4s !important; }
.results-section .results-grid .result-card:nth-child(4) { animation-delay: 0.55s !important; }

/* 6. تفاصيل حركة المرجيحة */
@keyframes cardSwing {
    0% { opacity: 0; transform: perspective(1000px) rotateX(-90deg); }
    40% { opacity: 1; transform: perspective(1000px) rotateX(25deg); }
    60% { transform: perspective(1000px) rotateX(-15deg); }
    80% { transform: perspective(1000px) rotateX(5deg); }
    100% { opacity: 1; transform: perspective(1000px) rotateX(0deg); }
}




/* 4. تفاصيل الهبدة (The Magic) */
@keyframes cardHeavyThud {
    0% {
        opacity: 0;
        /* نازلة من فوق (-150px) ومايلة لقدام كأنها بتقع */
        transform: perspective(1000px) translateY(-150px) rotateX(25deg);
    }
    60% {
        opacity: 1;
        /* الخبطة: بتنزل تحت المستوى الطبيعي وتغرز (15px) وتميل لورا من قوة الخبطة */
        transform: perspective(1000px) translateY(15px) rotateX(-5deg);
    }
    80% {
        /* الردة: بترد لفوق سنة صغيرة */
        transform: perspective(1000px) translateY(-6px) rotateX(2deg);
    }
    100% {
        opacity: 1;
        /* الاستقرار التام */
        transform: perspective(1000px) translateY(0) rotateX(0);
    }
}
@media (max-width: 1100px) {
    .results-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .results-section {
        padding: 78px 0;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .result-card {
        min-height: unset;
    }
}


/* ================= CONTACT ================= */
.contact-wrap {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 26px;
    align-items: start;
}

.contact-form {
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
}

.contact-form label {
    display: block;
    font-size: 0.92rem;
    margin-bottom: 12px;
    color: #d7deea;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-top: 6px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: #0a0f14;
    color: #f2f6fa;
    padding: 11px 12px;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(0, 208, 90, 0.6);
    box-shadow: 0 0 0 3px rgba(0, 208, 90, 0.15);
}

.contact-form button {
    margin-top: 10px;
}

.mobile-sticky-cta {
    display: none;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 14px;
    z-index: 1100;
    text-align: center;
    padding: 14px;
    border-radius: 999px;
}

/* ================= FOCUS STATES ================= */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--brand-green);
    outline-offset: 2px;
}

/* ================= MOBILE ================= */
@media (max-width: 1024px) {
    .about-pro-grid {
        grid-template-columns: 1fr;
    }

    .about-title {
        max-width: 100%;
    }
}

@media (max-width: 980px) {
    .cards-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-wrap {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        width: 95%;
        top: 10px;
        padding: 10px 16px;
        border-radius: 18px;
    }

    .logo-img {
        height: 45px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
    }

    .nav-links.nav-links--open {
        display: flex;
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        width: 100%;
        background: #050507;
        flex-direction: column;
        padding: 18px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        gap: 14px;
    }


    /* السطر ده اللي هيخلي المنيو يظهر لما تدوس على الزرار */
.nav-links.nav-links--open {
    display: flex !important; /* إجبار الظهور */
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #050507;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

    .hero {
        padding-top: 120px;
        padding-bottom: 0;
    }

    .hero-content {
        padding: 0 15px;
        margin-bottom: 30px;
    }

    .hero-center-logo {
        height: 140px;
        margin-bottom: 10px;
    }

    .logo-glow {
        width: 120px;
        height: 120px;
        filter: blur(44px);
        opacity: 0.18;
    }

    .hero-title {
        font-size: 2.2rem !important;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
        line-height: 1.5;
        padding: 0 10px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
        padding: 0 10px;
    }

    .hero-buttons a {
        width: 100%;
        justify-content: center;
    }

    .bg-text-col,
    .mega-glow-left,
    .mega-glow-right {
        display: none !important;
    }

    .marquee-group span {
        font-size: 0.85rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .about-pro {
        padding: 80px 0;
    }

    .about-pro-right {
        padding: 14px;
        border-radius: 20px;
    }

    .about-step-card {
        border-radius: 14px;
    }

    .about-highlights li {
        letter-spacing: 0.08em;
        font-size: 0.76rem;
    }

    .mobile-sticky-cta {
        display: inline-flex;
        justify-content: center;
    }
}

/* ================= FUNNEL: BOTTLENECK / SOLUTION / PROCESS ================= */
.glass-effect {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(255, 255, 255, 0.11);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.funnel-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(180deg, #050507 0%, #0a0e14 50%, #050507 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.bottleneck-section::before,
.solution-section::before,
.process-section::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    filter: blur(85px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.58;
}

.bottleneck-section::before {
    left: -70px;
    top: -70px;
    background: rgba(255, 88, 80, 0.84);
}

.solution-section::before {
    right: -70px;
    top: -70px;
    background: rgba(98, 245, 186, 0.9);
}

.process-section::before {
    left: 50%;
    bottom: -95px;
    transform: translateX(-50%);
    background: rgba(76, 141, 255, 0.9);
}

.funnel-section .noise-bg {
    z-index: 0;
    opacity: 0.035;
}

.funnel-glow-left,
.funnel-glow-right {
    width: 620px;
    height: 620px;
    background: rgba(0, 208, 90, 0.45);
    filter: blur(170px);
    opacity: 0.28;
    z-index: 0;
}

.funnel-glow-left {
    left: -220px;
    top: 8%;
}

.funnel-glow-right {
    right: -220px;
    bottom: 8%;
}

.funnel-side-slogan {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    font-size: clamp(2rem, 3.8vw, 3.8rem);
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}

.funnel-side-left {
    left: -170px;
}

.funnel-side-right {
    right: -180px;
    transform: translateY(-50%) rotate(90deg);
}

.funnel-head {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto 30px;
    text-align: center;
}

.funnel-head .sp-kicker,
.funnel-head .sp-title,
.funnel-head .sp-text {
    margin-left: auto;
    margin-right: auto;
}

.bottleneck-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.bottleneck-card {
    border-radius: var(--radius);
    padding: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(255, 132, 78, 0.24);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.38), inset 0 0 0 1px rgba(255, 110, 90, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    will-change: transform;
}

.bottleneck-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 161, 115, 0.35);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45), 0 0 20px rgba(255, 123, 90, 0.1);
}

.bottleneck-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.bottleneck-card p {
    color: #b9c1d0;
}

.funnel-corner-arrow {
    position: absolute;
    width: 165px;
    height: 165px;
    bottom: 24px;
    z-index: 1;
    opacity: 0.7;
    pointer-events: none;
    display: none;
}

.funnel-corner-arrow::before {
    content: "";
    position: absolute;
    inset: 20px 18px 22px 16px;
    border: 2px dashed rgba(0, 208, 90, 0.48);
    border-top: 0;
    border-left: 0;
    border-radius: 0 0 18px 0;
    animation: sketchFlow 6.5s linear infinite;
}

.funnel-corner-arrow::after {
    content: "";
    position: absolute;
    width: 13px;
    height: 13px;
    right: 22px;
    bottom: 16px;
    border-right: 3px solid rgba(0, 208, 90, 0.8);
    border-bottom: 3px solid rgba(0, 208, 90, 0.8);
    transform: rotate(-45deg);
}

.corner-right {
    right: 24px;
}

.corner-left {
    left: 24px;
    transform: scaleX(-1);
}

@keyframes sketchFlow {
    to {
        border-color: rgba(0, 208, 90, 0.2);
        border-style: dashed;
    }
}

.sp-block {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.12fr 1fr;
    gap: 28px;
    align-items: stretch;
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.45);
    transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
    will-change: transform;
}

.solution-section .sp-block {
    border-color: rgba(98, 245, 186, 0.32);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.45), 0 0 26px rgba(98, 245, 186, 0.12);
}

.process-section .sp-block {
    border-color: rgba(76, 141, 255, 0.32);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.45), 0 0 26px rgba(76, 141, 255, 0.12);
}

.sp-block:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 208, 90, 0.28);
    box-shadow: 0 24px 46px rgba(0, 0, 0, 0.5), 0 0 28px rgba(0, 208, 90, 0.14);
}

.sp-block-reverse .sp-content {
    order: 2;
}

.sp-block-reverse .sp-media {
    order: 1;
}

.sp-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.03);
    color: #cfd5e2;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.72rem;
    font-weight: 700;
}

.sp-kicker::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #8aa0be;
    box-shadow: 0 0 10px rgba(138, 160, 190, 0.55);
}

.bottleneck-section .sp-kicker::before {
    background: #ff5f57;
    box-shadow: 0 0 16px rgba(255, 95, 87, 0.9);
}

.solution-section .sp-kicker::before {
    background: #67f5b6;
    box-shadow: 0 0 16px rgba(103, 245, 182, 0.9);
}

.process-section .sp-kicker::before {
    background: #4f8dff;
    box-shadow: 0 0 16px rgba(79, 141, 255, 0.9);
}

.sp-title {
    font-size: clamp(1.9rem, 3.4vw, 3rem);
    line-height: 1.06;
    margin-bottom: 14px;
    max-width: 20ch;
}

.sp-text {
    color: #b6becf;
    max-width: 68ch;
    margin-bottom: 20px;
}

.sp-mini-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.sp-mini-card {
    border-radius: 999px;
    padding: 9px 15px;
    font-size: 0.84rem;
    color: #e1e7f3;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.sp-checks {
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sp-checks li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #c2ccde;
    line-height: 1.5;
}

.sp-check-icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: #00d05a;
    background: rgba(0, 208, 90, 0.12);
    border: 1px solid rgba(0, 208, 90, 0.35);
    margin-top: 1px;
}

.sp-cta-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.sp-trust {
    color: #9ea7ba;
    font-size: 0.92rem;
}

.sp-media {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    min-height: 340px;
    position: relative;
    background: rgba(255, 255, 255, 0.04);
}

.sp-media::before {
    content: "";
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle, rgba(0, 208, 90, 0.23), transparent 60%);
    filter: blur(46px);
    opacity: 0.35;
    z-index: 0;
    pointer-events: none;
}

.sp-media img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.01) translateZ(0);
    filter: saturate(0.92) contrast(1.04);
    transition: transform 0.45s ease, filter 0.45s ease;
    will-change: transform;
}

.sp-block:hover .sp-media img {
    transform: scale(1.05) translateZ(0);
    filter: saturate(1) contrast(1.06);
}

.sp-steps {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sp-step {
    display: flex;
    gap: 14px;
    padding: 18px;
    border-radius: var(--radius);
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
    will-change: transform;
}

.sp-step:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 208, 90, 0.28);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35), 0 0 18px rgba(0, 208, 90, 0.11);
}

.sp-step-num {
    min-width: 62px;
    line-height: 1;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    background: linear-gradient(180deg, #aef4c9 0%, #00d05a 58%, #038f3f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 24px rgba(0, 208, 90, 0.14);
}

.sp-step h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.sp-step p {
    color: #bcc7d9;
    font-size: 0.95rem;
}

.sp-launch-cta {
    margin-top: 20px;
    text-align: center;
}

.sp-launch-cta p {
    margin-top: 10px;
    font-size: 0.9rem;
}

/* ================= WHO WE HELP ================= */
.who-help-section {
    background: linear-gradient(180deg, #0a101a, #080d15);
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.who-card {
    border-radius: var(--radius);
    padding: 20px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02));
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.who-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 208, 90, 0.32);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.34), 0 0 18px rgba(0, 208, 90, 0.1);
}

.who-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #eaf4ff;
}

.who-icon-svg {
    width: 22px;
    height: 22px;
}

.who-icon-purple { background: rgba(108, 168, 255, 0.2); box-shadow: 0 0 14px rgba(108, 168, 255, 0.2); }
.who-icon-rose { background: rgba(103, 245, 182, 0.18); box-shadow: 0 0 14px rgba(103, 245, 182, 0.2); }
.who-icon-green { background: rgba(0, 208, 90, 0.2); box-shadow: 0 0 14px rgba(0, 208, 90, 0.22); }
.who-icon-amber { background: rgba(255, 180, 84, 0.18); box-shadow: 0 0 14px rgba(255, 180, 84, 0.2); }
.who-icon-blue { background: rgba(76, 141, 255, 0.2); box-shadow: 0 0 14px rgba(76, 141, 255, 0.2); }
.who-icon-gold { background: rgba(255, 205, 108, 0.2); box-shadow: 0 0 14px rgba(255, 205, 108, 0.2); }

.who-card h3 {
    margin-bottom: 10px;
}

.who-card p {
    color: var(--text-secondary);
    margin-bottom: 14px;
}

.who-link {
    color: #9fd1ff;
    font-weight: 700;
}

.who-footer {
    margin-top: 22px;
    text-align: center;
}

/* ================= AUDIO PROOF ================= */
.audio-proof-section {
    background:
        radial-gradient(circle at 18% 10%, rgba(79, 141, 255, 0.26), transparent 42%),
        radial-gradient(circle at 82% 5%, rgba(0, 208, 90, 0.2), transparent 40%),
        linear-gradient(180deg, #122547, #122235);
}

.audio-proof-section .sp-kicker::before {
    background: #4f8dff;
    box-shadow: 0 0 10px rgba(79, 141, 255, 0.65);
}

.audio-pills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.audio-feature-card {
    border-radius: 22px;
    padding: 24px;
    margin-bottom: 16px;
    background: linear-gradient(165deg, rgba(255,255,255,0.09), rgba(255,255,255,0.03));
    border-color: rgba(79, 141, 255, 0.25);
}

.audio-label {
    color: #90a7cb;
    letter-spacing: 0.16em;
    font-size: 0.72rem;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.audio-feature-card h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 8px;
}

.audio-agent {
    color: #d2dcf0;
    margin-bottom: 10px;
}

.audio-target {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 10px 12px;
    display: flex;
    justify-content: space-between;
    gap: 8px;
    color: #c3d0e7;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.audio-target span {
    color: #7add9c;
    font-weight: 700;
}

.audio-bar {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
    background: linear-gradient(180deg, rgba(76, 141, 255, 0.12), rgba(0, 208, 90, 0.07));
}

.audio-play {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4fa3ff, #3676ff);
    position: relative;
}

.audio-play::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 10px solid white;
}

.audio-wave {
    flex: 1;
    height: 46px;
    border-radius: 10px;
    background:
        linear-gradient(90deg, transparent, rgba(79, 141, 255, 0.45), transparent),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.2) 0 2px, transparent 2px 8px);
    opacity: 0.7;
}

.audio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.audio-tags span {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #d2dcef;
}

.audio-desc {
    color: var(--text-secondary);
}

.audio-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.audio-mini-card {
    border-radius: var(--radius);
    padding: 16px;
    background: linear-gradient(160deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.audio-mini-card:hover {
    transform: translateY(-4px);
    border-color: rgba(79, 141, 255, 0.32);
    box-shadow: 0 12px 24px rgba(0,0,0,0.34), 0 0 16px rgba(79, 141, 255, 0.14);
}

.audio-mini-card h4 {
    margin-bottom: 8px;
}

.audio-mini-card p {
    color: var(--text-secondary);
}

/* ================= TESTIMONIALS ================= */
.testimonials-section {
    background:
        radial-gradient(circle at 12% 10%, rgba(0, 208, 90, 0.2), transparent 38%),
        radial-gradient(circle at 90% 0%, rgba(76, 141, 255, 0.18), transparent 40%),
        linear-gradient(180deg, #162a4b, #13253f);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.testimonial-card {
    border-radius: var(--radius);
    padding: 22px;
    background: linear-gradient(155deg, rgba(255,255,255,0.09), rgba(255,255,255,0.02));
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:nth-child(1) { border-color: rgba(0, 208, 90, 0.28); }
.testimonial-card:nth-child(2) { border-color: rgba(76, 141, 255, 0.28); }
.testimonial-card:nth-child(3) { border-color: rgba(255, 186, 92, 0.28); }

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.38);
}

.testimonial-card:nth-child(1):hover { box-shadow: 0 14px 30px rgba(0,0,0,0.38), 0 0 20px rgba(0, 208, 90, 0.16); }
.testimonial-card:nth-child(2):hover { box-shadow: 0 14px 30px rgba(0,0,0,0.38), 0 0 20px rgba(76, 141, 255, 0.16); }
.testimonial-card:nth-child(3):hover { box-shadow: 0 14px 30px rgba(0,0,0,0.38), 0 0 20px rgba(255, 186, 92, 0.16); }

.testimonial-card .stars {
    background: linear-gradient(90deg, #ffd88f, #ffb84d);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stars {
    color: #ffbf52;
    letter-spacing: 0.3em;
    margin-bottom: 10px;
}

.testimonial-card p {
    color: #d0dbef;
    margin-bottom: 16px;
}

.testimonial-card h4 {
    margin-bottom: 4px;
}

.testimonial-card span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Angled transitions between major sections */
.angled-cut {
    position: relative;
}

.angled-cut::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -38px;
    height: 76px;
    background: linear-gradient(180deg, transparent, rgba(8, 14, 24, 0.9));
    transform: skewY(-2.2deg);
    transform-origin: 100% 0;
    z-index: 1;
    pointer-events: none;
}

/* Reveal animation support */
.reveal-item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-item.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1280px) {
    .funnel-side-slogan {
        font-size: clamp(1.6rem, 2.8vw, 2.6rem);
    }

    .funnel-side-left {
        left: -130px;
    }

    .funnel-side-right {
        right: -140px;
    }
}

@media (max-width: 1024px) {
    .bottleneck-grid {
        grid-template-columns: 1fr 1fr;
    }

    .sp-block {
        grid-template-columns: 1fr;
    }

    .sp-block-reverse .sp-content,
    .sp-block-reverse .sp-media {
        order: unset;
    }

    .sp-media {
        min-height: 260px;
    }

    .who-grid,
    .audio-mini-grid,
    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .funnel-section {
        padding: 76px 0;
    }

    .funnel-side-slogan,
    .funnel-corner-arrow {
        display: none;
    }

    .bottleneck-grid {
        grid-template-columns: 1fr;
    }

    .who-grid,
    .audio-mini-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .sp-block {
        padding: 16px;
        border-radius: 16px;
    }

    .sp-title {
        max-width: 100%;
    }

    .sp-step {
        padding: 14px;
    }

    .angled-cut::after {
        bottom: -20px;
        height: 40px;
        transform: skewY(-1.2deg);
    }
}

/* ================= REDUCED MOTION ================= */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition-duration: 0.01ms !important;
        transition-delay: 0ms !important;
    }

    .marquee-track {
        transform: none !important;
    }

    .text-animated-gradient {
        background-position: 0 0;
    }
}


/* ================= PRICING SECTION ================= */
.pricing-section {
    background: linear-gradient(180deg, #050507 0%, #0a0e14 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.pricing-card {
    position: relative;
    padding: 34px 28px;
    border-radius: 24px;
    background: linear-gradient(165deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: rgba(0, 208, 90, 0.4);
    background: linear-gradient(165deg, rgba(0, 208, 90, 0.05), rgba(255,255,255,0.01));
    box-shadow: 0 0 0 1px rgba(0, 208, 90, 0.15) inset, 0 15px 35px rgba(0,0,0,0.4), 0 0 30px rgba(0, 208, 90, 0.08);
}

.most-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00d05a, #009940);
    color: #000;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 16px;
    border-radius: 999px;
    box-shadow: 0 4px 15px rgba(0, 208, 90, 0.3);
}

.pricing-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-icon.icon-green { color: #00d05a; background: rgba(0, 208, 90, 0.1); border-color: rgba(0, 208, 90, 0.2); }
.pricing-icon.icon-gold { color: #eab308; background: rgba(234, 179, 8, 0.1); border-color: rgba(234, 179, 8, 0.2); }

.pricing-name {
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.pricing-ideal {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 12px;
    font-weight: 700;
}

.pricing-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 24px;
    min-height: 45px;
}

.pricing-price {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 24px;
    display: flex;
    align-items: flex-end;
    gap: 4px;
}

.pricing-price .currency {
    font-size: 1.5rem;
    color: #94a3b8;
    margin-bottom: 8px;
}

.pricing-price .period {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 8px;
}

.pricing-btn {
    width: 100%;
    margin-bottom: 30px;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: #cbd5e1;
    line-height: 1.4;
}

.pricing-features .check {
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2px;
    position: relative;
}

.featured .pricing-features .check {
    border-color: rgba(0, 208, 90, 0.5);
    background: rgba(0, 208, 90, 0.1);
}

.featured .pricing-features .check::after {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 8px; height: 8px;
    background: var(--brand-green);
    border-radius: 50%;
}

.pricing-footer-note {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.75rem;
    color: #64748b;
    text-align: center;
}

.pricing-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.trust-icon {
    color: #64748b;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.trust-item h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.trust-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .pricing-grid, .pricing-trust-grid { grid-template-columns: 1fr; }
    .pricing-desc { min-height: auto; }
}

/* ================= GIANT DOLLAR SIGN (PRICING) - ULTRA OPTIMIZED ================= */
.pricing-bg-dollar {
    position: absolute;
    top: 50%;
    left: -5vw;
    font-size: 65rem; 
    font-weight: 900;
    font-family: 'Inter', sans-serif;
    
    /* 1. حواف خضراء وإضاءة ثابتة (عشان الأداء) */
    color: transparent; 
    -webkit-text-stroke: 3px rgba(0, 208, 90, 0.4); 
    text-shadow: 0 0 60px rgba(0, 208, 90, 0.15); 
    
    line-height: 1;
    z-index: 0;
    pointer-events: none; 
    user-select: none;
    
    /* 2. الأداء العالي: بنحدد الخواص اللي هتتحرك بس */
    will-change: transform, opacity;
    
    /* 3. الأنيميشن: الميل (Angle) مع النبض */
    animation: dollarPulse 5s ease-in-out infinite alternate;
}

@keyframes dollarPulse {
    0% { 
        /* واخد زاوية -15 درجة وحجمه الطبيعي وإضاءته هادية */
        transform: translateY(-50%) rotate(-15deg) scale(1) translateZ(0); 
        opacity: 0.4; 
    }
    100% { 
        /* بيكبر شوية صغيرة وإضاءته بتعلى كأنه بينبض */
        transform: translateY(-50%) rotate(-15deg) scale(1.05) translateZ(0); 
        opacity: 1; 
    }
}

/* Mobile responsive for the Dollar sign */
@media (max-width: 768px) {
    .pricing-bg-dollar {
        font-size: 35rem; 
        left: -15vw;
        top: 30%;
    }
}


/* ================= HTML LOGO STYLES (NAVBAR & HERO) ================= */
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-wrapper:hover {
    transform: scale(1.02);
}

.logo-icon {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1;
}

/* التدرج المتحرك اللي عجب العميل */
.logo-text-gradient {
    background: linear-gradient(110deg, #00d05a 10%, #80ffb0 30%, #00d05a 50%, #00d05a 100%);
    background-size: 200% auto;
    color: #fff;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
    filter: drop-shadow(0 0 10px rgba(0, 208, 90, 0.4));
}

/* ================= HERO CENTER HTML LOGO ================= */
.hero-center-logo-html {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: logoFloat 6.5s ease-in-out infinite;
}

/* ================= HERO CENTER ICON & GLOW ================= */

.hero-center-logo-html {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px; /* كبرنا المسافة بين اللوجو والكلمة */
    animation: logoFloat 6.5s ease-in-out infinite;
}

.hero-icon-large {
    width: 320px; /* كبرنا اللوجو جداً (ممكن تزودها لو حابب) */
    height: auto;
    object-fit: contain;
    /* نفس الإضاءة الفخمة */
    filter: drop-shadow(0 0 25px rgba(0, 208, 90, 0.4)) drop-shadow(0 0 10px rgba(128, 255, 176, 0.2));
}

.hero-logo-sub {
    font-size: 1.3rem; /* كبرنا خط كلمة CALL CENTER */
    letter-spacing: 0.4em; /* وسعنا المسافة بين الحروف للفخامة */
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 800;
}


/* ================= HERO CONTENT & TITLE (توسيط الكلام اللي باظ) ================= */
.hero-content {
    flex-grow: 1;
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1000px; /* وسعنا الكونتينر شوية عشان الجملة الطويلة تاخد راحتها */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center !important; /* إجبار التوسيط */
    margin-bottom: 50px;
    animation: heroFadeUp 680ms ease-out both;
}

.hero-title {
    width: 100%;
    display: block;
    text-align: center !important; /* إجبار التوسيط للعناوين */
    margin: 0 auto 25px auto !important;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin: 0 auto 40px auto !important; /* إجبار التوسيط */
    max-width: 750px;
    text-align: center !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    animation: heroFadeUp 820ms ease-out both;
}

/* Mobile responsive for the center logo */
@media (max-width: 768px) {
    .hero-icon-large { height: 80px; }
    .hero-logo-text-large { font-size: 2.5rem; }
    .hero-logo-sub { font-size: 0.75rem; }
}

/* ================= FOOTER ================= */
.site-footer {
    background: linear-gradient(180deg, #05070a 0%, #030406 100%);
    padding: 100px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 5;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.footer-col h4 {
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Brand Column */
.brand-col .footer-tagline {
    font-size: 1.1rem;
    font-weight: 700;
    color: #00d05a;
    margin-bottom: 12px;
}

.brand-col .footer-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 90%;
}

.mt-15 { margin-top: 15px; display: inline-block; }

/* Links Columns */
.links-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.links-col a {
    color: #94a3b8;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-block;
}

.links-col a:hover {
    color: #00d05a;
    transform: translateX(5px);
}

/* Info Column */
.info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.info-list strong { color: #cbd5e1; }
.info-list a { color: #cbd5e1; transition: color 0.3s ease; }
.info-list a:hover { color: #00d05a; }

.contact-highlight a {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.05em;
}

.support-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 16px;
    border-radius: 12px;
    font-size: 0.85rem;
    color: #94a3b8;
}

.support-title {
    color: #fff;
    font-weight: 700;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
}

.support-alert {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    color: #64748b;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
    color: #64748b;
    position: relative;
    z-index: 2;
}

.footer-legal a {
    color: #64748b;
    transition: color 0.3s ease;
}

.footer-legal a:hover { color: #cbd5e1; }
.separator { margin: 0 10px; opacity: 0.5; }

/* ================= PREMIUM SITE FOOTER ================= */
.site-footer {
    background: linear-gradient(180deg, #05070a 0%, #020305 100%);
    padding: 110px 0 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 0.8fr 0.8fr 1.2fr;
    gap: 50px;
    margin-bottom: 80px;
}

/* تدليع الـ Headers */
.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-transform: uppercase;
    /* خط صغير تحت الـ Header يدي شياكة */
    position: relative;
    width: fit-content;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 20px;
    height: 2px;
    background: var(--brand-green);
}

/* تدليع الـ Links */
.links-col ul { display: flex; flex-direction: column; gap: 15px; }
.links-col a {
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.links-col a:hover {
    color: #fff;
    transform: translateX(8px);
    text-shadow: 0 0 10px rgba(0, 208, 90, 0.3);
}

/* ظبط الزراير بـ Gradient فخم */
.footer-btn-gradient {
    background: linear-gradient(135deg, #00d05a 0%, #00f3ff 100%) !important;
    border: none !important;
    color: #000 !important;
    box-shadow: 0 10px 20px rgba(0, 243, 255, 0.15) !important;
}

.footer-btn-gradient:hover {
    box-shadow: 0 15px 30px rgba(0, 243, 255, 0.3) !important;
    transform: translateY(-3px) scale(1.02);
}

/* ================= THE ALPHA SIGNATURE (RGB STYLE) ================= */
.designer-signature {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
}

.muted-text {
    color: #475569;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
}

@keyframes rgbShine {
    0% { background-position: 0% center; }
    100% { background-position: 300% center; }
}

.designer-link-pro {
    font-weight: 900;
    background: linear-gradient(90deg, #ff003c, #d946ef, #00f3ff, #ff7300, #ff003c);
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rgbShine 4s linear infinite;
    text-decoration: none;
    position: relative;
    padding: 0 2px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.95rem;
}

.designer-link-pro svg {
    fill: #00f3ff; /* لون البرق */
    filter: drop-shadow(0 0 5px rgba(0, 243, 255, 0.8));
}

.designer-link-pro::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #00f3ff, #ff003c);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.6);
}

.designer-link-pro:hover::after { width: 100%; }
.designer-link-pro:hover {
    filter: drop-shadow(0 0 10px rgba(217, 70, 239, 0.8));
}

/* Mobile responsive */
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .footer-col h4::after { left: 50%; transform: translateX(-50%); }
    .links-col a:hover { transform: translateY(-3px); }
}


.contact-main-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: start; }
.calendly-inline-widget-wrapper { border-radius: 24px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); }
.contact-form-pro { padding: 30px; border-radius: 24px; display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.contact-form-pro input, .contact-form-pro textarea, .contact-form-pro select { 
    width: 100%; background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.1); 
    padding: 12px; border-radius: 10px; color: #fff; outline: none;
}
.consent-box { display: flex; gap: 10px; font-size: 0.8rem; color: #94a3b8; line-height: 1.4; }
.contact-info-footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; }
.c-info-card strong { display: block; font-size: 0.7rem; color: #00d05a; letter-spacing: 1px; margin-bottom: 5px; }
.c-info-card a, .c-info-card p { font-size: 0.9rem; color: #fff; }
.w-full { width: 100%; }

@media (max-width: 1024px) { .contact-main-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }



/* ================= GIANT BACKGROUND NUMBERS (01, 02, 03) ================= */
.bg-giant-number {
    position: absolute;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 38rem; /* حجم عملاق */
    line-height: 1;
    color: transparent; /* الرقم نفسه شفاف */
    z-index: 0;
    pointer-events: none; /* عشان ميأثرش على الكليكات */
    user-select: none;
    will-change: transform, opacity;
}

/* 01 - The Bottleneck (لون أحمر خفيف يتماشى مع السكشن) */
.number-01 {
    top: -5%;
    right: -5vw; 
    -webkit-text-stroke: 3px rgba(255, 88, 80, 0.15); 
    text-shadow: 0 0 60px rgba(255, 88, 80, 0.05);
    animation: numberPulseRight 7s ease-in-out infinite alternate;
}

/* 02 - The Solution (لون أخضر يتماشى مع السكشن) */
.number-02 {
    bottom: -5%;
    left: -8vw; 
    -webkit-text-stroke: 3px rgba(98, 245, 186, 0.15); 
    text-shadow: 0 0 60px rgba(98, 245, 186, 0.05);
    animation: numberPulseLeft 8s ease-in-out infinite alternate;
}

/* 03 - The Process (لون أزرق يتماشى مع السكشن) */
.number-03 {
    top: 5%;
    right: -5vw; 
    -webkit-text-stroke: 3px rgba(76, 141, 255, 0.15); 
    text-shadow: 0 0 60px rgba(76, 141, 255, 0.05);
    animation: numberPulseRight 6s ease-in-out infinite alternate;
}

/* أنيميشن الطفو والميلان الخفيف (كأنه بيتنفس في الخلفية) */
@keyframes numberPulseRight {
    0% { transform: translateY(0) rotate(-4deg) scale(1); opacity: 0.6; }
    100% { transform: translateY(-40px) rotate(-4deg) scale(1.05); opacity: 1; }
}

@keyframes numberPulseLeft {
    0% { transform: translateY(0) rotate(4deg) scale(1); opacity: 0.6; }
    100% { transform: translateY(-40px) rotate(4deg) scale(1.05); opacity: 1; }
}

/* ================= MOBILE OPTIMIZATION 100% ================= */
@media (max-width: 768px) {
    .bg-giant-number {
        font-size: 22rem; /* تصغير الحجم للموبايل */
        /* تقليل الشفافية على الموبايل عشان ميشوشرش على الكلام الصغير */
        opacity: 0.3 !important; 
    }
    
    .number-01 { top: 2%; right: -15vw; }
    .number-02 { bottom: 5%; left: -15vw; }
    .number-03 { top: 2%; right: -15vw; }
}


/* ================= GIANT SHAPES (WHO WE HELP) ================= */

/* تأمين السكشن عشان الأشكال متطلعش براه وتبوظ الشاشة */
.who-help-section {
    position: relative;
    overflow: hidden; 
}

.bg-giant-shape {
    position: absolute;
    font-family: 'Inter', sans-serif;
    color: transparent;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    will-change: transform, opacity;
}

/* علامة الشراكة (&) - لون أزرق/لبني خفيف */
.shape-amp {
    font-size: 65rem;
    font-weight: 900;
    font-style: italic; /* المايل بيديها فخامة */
    line-height: 1;
    bottom: -15%;
    right: -5vw;
    -webkit-text-stroke: 3px rgba(76, 141, 255, 0.15);
    text-shadow: 0 0 60px rgba(76, 141, 255, 0.05);
    animation: shapePulseRight 9s ease-in-out infinite alternate;
}

/* علامة النجمة (✱) - لون أخضر خفيف */
.shape-asterisk {
    font-size: 45rem;
    line-height: 1;
    top: -5%;
    left: -10vw;
    -webkit-text-stroke: 3px rgba(0, 208, 90, 0.12);
    text-shadow: 0 0 60px rgba(0, 208, 90, 0.05);
    animation: shapePulseLeft 7s ease-in-out infinite alternate;
}

/* أنيميشن الطفو واللف البطيء جداً */
@keyframes shapePulseRight {
    0% { transform: translateY(0) rotate(-5deg) scale(1); opacity: 0.5; }
    100% { transform: translateY(-30px) rotate(0deg) scale(1.05); opacity: 1; }
}

@keyframes shapePulseLeft {
    0% { transform: translateY(0) rotate(15deg) scale(1); opacity: 0.5; }
    100% { transform: translateY(30px) rotate(25deg) scale(1.05); opacity: 1; }
}

/* ================= MOBILE OPTIMIZATION FOR GIANT SHAPES ================= */
@media (max-width: 768px) {
    .shape-amp {
        font-size: 35rem; /* تصغير للموبايل */
        bottom: 5%;
        right: -20vw;
        opacity: 0.25 !important; /* تقليل الشفافية عشان التيكست يبقى مقري */
    }
    
    .shape-asterisk {
        font-size: 25rem;
        top: 2%;
        left: -20vw;
        opacity: 0.2 !important;
    }
}


/* ================= CONTACT SECTION POLISH ================= */

/* 1. الظرف العملاق في الخلفية */
.shape-envelope {
    font-size: 50rem;
    line-height: 1;
    bottom: -10%;
    left: -10vw;
    -webkit-text-stroke: 3px rgba(0, 208, 90, 0.12);
    text-shadow: 0 0 60px rgba(0, 208, 90, 0.05);
    animation: shapePulseLeft 8s ease-in-out infinite alternate;
}

/* 2. تظبيط اللوجو فوق الكاليندلي */
.calendly-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* 3. حل مشكلة الـ Checkbox العملاق */
.normal-checkbox {
    appearance: auto !important; /* بيلغي أي تأثيرات بوظته */
    width: 18px !important;
    height: 18px !important;
    min-width: 18px;
    margin-top: 3px;
    cursor: pointer;
    accent-color: #00d05a; /* بيخلي لونه أخضر لما تدوس عليه */
}

/* 4. تظبيط الـ Select Menu (الدارك مود والـ Hover الأخضر) */
.dark-select {
    width: 100%;
    background-color: #0a0e14 !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    padding: 12px;
    border-radius: 10px;
    outline: none;
    cursor: pointer;
    appearance: none; /* بيلغي شكل السهم القديم */
    /* بنرسم سهم جديد أنضف */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: calc(100% - 15px) center !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.dark-select:focus, .dark-select:hover {
    border-color: #00d05a !important;
    box-shadow: 0 0 0 3px rgba(0, 208, 90, 0.15) !important;
}

.dark-select option {
    background-color: #0a0e14;
    color: #fff;
    padding: 10px;
}

/* Mobile Fixes for Envelope */
@media (max-width: 768px) {
    .shape-envelope {
        font-size: 25rem;
        left: -15vw;
        bottom: 5%;
        opacity: 0.2 !important;
    }
}


/* ================= CALENDLY (ULTRA FAST & CLEAN) ================= */

/* تظبيط الحواف بس من غير أي فلاتر عشان الأداء يبقى 100% */
.calendly-inline-widget iframe {
    border-radius: 16px !important;
    background-color: transparent !important;
}

/* تظبيط الحاوية اللي شايلة الكاليندلي */
.calendly-inline-widget-wrapper {
    background-color: #0a0e14;
    border-radius: 16px;
    overflow: hidden;
    /* السطر ده بيعزل الكاليندلي في طبقة لوحده عشان السكرول يفضل ناعم وميهنجش الصفحة */
    transform: translateZ(0); 
}



/* ================= SERVICES PAGE ================= */


/* ================= SERVICES PAGE STYLES ================= */

.service-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.service-card-pro {
    background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 34px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.service-card-pro:hover {
    border-color: rgba(0, 208, 90, 0.35);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4), 0 0 20px rgba(0, 208, 90, 0.08);
}

.card-kicker {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 14px;
    border: 1px solid rgba(255,255,255,0.1);
}

.service-card-pro h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #fff;
}

.service-card-pro p {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Glass Benefits Box */
.benefits-glass-box {
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 28px;
    padding: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.benefits-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.5;
    background: rgba(255,255,255,0.02);
    padding: 16px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.03);
}

.benefits-list strong {
    color: #fff;
    font-weight: 700;
}

.benefit-check {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(0, 208, 90, 0.15);
    border: 1px solid rgba(0, 208, 90, 0.4);
    color: #00d05a;
    display: grid;
    place-items: center;
    font-size: 0.85rem;
    margin-top: 2px;
    font-weight: 900;
    box-shadow: 0 0 10px rgba(0, 208, 90, 0.2);
}

/* ================= MOBILE OPTIMIZATION ================= */
@media (max-width: 1024px) {
    .contact-main-grid { grid-template-columns: 1fr; } 
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .footer-col h4::after { left: 50%; transform: translateX(-50%); }
    .links-col a:hover { transform: translateY(-3px); }
    .shape-envelope { font-size: 25rem; left: -15vw; bottom: 5%; opacity: 0.2 !important; }
    
    .service-cards-grid, .benefits-list { grid-template-columns: 1fr; }
    .benefits-glass-box { padding: 30px 20px; }
}


/* ================= SERVICE SECTION CUTS ================= */
.service-divider-cut {
    position: relative;
    padding-bottom: 160px !important; /* بنزود مساحة تحت عشان القطعية تاخد راحتها */
    z-index: 1;
}

.service-divider-cut::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: #030406; /* اللون بتاع السكشن اللي تحتها عشان يندمجوا */
    transform-origin: 0 100%; /* نقطة الارتكاز من الشمال تحت */
    transform: skewY(2.5deg); /* زاوية الميلان */
    z-index: 5;
    border-top: 1px solid rgba(255, 255, 255, 0.08); /* الخط المضيء الفاصل */
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.3); /* ضل ناعم للعمق */
    pointer-events: none;
}

/* تظبيط القطعية على الموبايل */
@media (max-width: 768px) {
    .service-divider-cut { padding-bottom: 100px !important; }
    .service-divider-cut::after { height: 60px; transform: skewY(1.5deg); }
}


/* ================= TOP GREEN SPOTLIGHT ================= */
.top-spotlight {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150vw; /* بنخليها أعرض من الشاشة عشان الأطراف تبقى ناعمة */
    height: 450px; /* طول مسافة الإضاءة لتحت */
    /* التدرج اللوني: بيبدأ أخضر من النص فوق وبيسحب لشفاف لتحت */
    background: radial-gradient(50% 100% at 50% 0%, rgba(0, 208, 90, 0.12) 0%, rgba(0, 208, 90, 0.03) 50%, transparent 100%);
    z-index: 0;
    pointer-events: none;
    mix-blend-mode: screen; /* السطر ده بيخليها تنور كأنها لمبة حقيقية */
}

/* ================= SERVICES SPACING & BACKDROP COLORS ================= */

/* 1. زيادة المسافة بين شبكة الكروت والبوكس الإزاز اللي تحتها */
.service-cards-grid {
    margin-bottom: 80px !important; /* مسافة واضحة عشان ميبقوش لازقين */
}

/* 2. تلوين الأرقام العملاقة في الخلفية (Backdrop Numbers) */

/* ================= NEON OUTLINED BACKDROP NUMBERS ================= */

/* القاعدة العامة للأرقام العملاقة في صفحة الخدمات */
.service-divider-cut .bg-giant-shape {
    color: transparent !important; /* الرقم من جوه شفاف */
    -webkit-text-fill-color: transparent !important;
    font-size: 40rem !important;
    font-weight: 900;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.05));
    transition: all 0.5s ease;
}

/* رقم 01 - سكشن Cold Calling (أزرق نيون) */
#cold-calling .bg-giant-shape {
    -webkit-text-stroke: 1.5px rgba(79, 141, 255, 0.4) !important;
    /* تأثير توهج النيون */
    filter: drop-shadow(0 0 20px rgba(79, 141, 255, 0.2));
}

/* رقم 02 - سكشن Data Generation (أخضر نيون) */
#data-generation .bg-giant-shape {
    -webkit-text-stroke: 1.5px rgba(0, 208, 90, 0.4) !important;
    /* تأثير توهج النيون */
    filter: drop-shadow(0 0 20px rgba(0, 208, 90, 0.2));
}

/* لو ضفت سكشن تالت - (بنفسجي نيون مثلاً) */
#skip-tracing .bg-giant-shape {
    -webkit-text-stroke: 1.5px rgba(168, 85, 247, 0.4) !important;
    filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.2));
}

/* التأكد من مسافة الـ mt-120 */
.mt-120 { 
    margin-top: 140px !important; /* زودتها سنة كمان عشان الصورة اللي بعتها */
}

.service-cards-grid {
    margin-bottom: 60px !important;
}


/* ================= MANAGERS ADD-ON GLOW BOX ================= */
.managers-addon-container {
    margin-top: 60px;
    margin-bottom: 40px;
    position: relative;
    z-index: 5;
}

.waves-glow-box {
    position: relative;
    background: #0a0e14;
    border: 1px solid rgba(0, 208, 90, 0.3);
    border-radius: 24px;
    padding: 30px 45px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 208, 90, 0.1);
}

.addon-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.addon-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 208, 90, 0.1);
    border-radius: 15px;
    display: grid;
    place-items: center;
    color: #00d05a;
}

.addon-icon svg { width: 32px; }

.addon-text h3 { font-size: 1.4rem; margin-bottom: 5px; color: #fff; }
.addon-text p { color: #94a3b8; font-size: 1rem; }
.addon-text strong { color: #00d05a; }

/* تأثير الـ Waves الملونة */
.wave-layer {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 208, 90, 0.08) 0%, rgba(79, 141, 255, 0.05) 30%, transparent 70%);
    animation: waveRotate 12s linear infinite;
    z-index: 1;
    pointer-events: none;
}

.wave-layer:nth-child(2) {
    animation-duration: 8s;
    animation-direction: reverse;
    opacity: 0.6;
}

@keyframes waveRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .addon-content { flex-direction: column; text-align: center; }
    .waves-glow-box { padding: 30px 20px; }
}


/* ================= MANAGERS ADD-ON BUTTON FIX ================= */
.addon-action .btn-primary {
    white-space: nowrap; /* السطر السحري اللي بيمنع الكلام ينزل على سطرين */
    padding: 16px 36px; /* بندي مساحة للزرار يتنفس من الجناب */
    font-size: 1rem;
    text-align: center;
}

/* تظبيط الزرار على شاشات الموبايل عشان ميبوظش الدنيا */
@media (max-width: 768px) {
    .addon-action {
        width: 100%;
        margin-top: 15px;
    }
    
    .addon-action .btn-primary {
        width: 100%; /* بنخلي الزرار بعرض الشاشة على الموبايل لشكل أشيك */
        white-space: normal; /* بنسمحله يتكسر على الموبايل بس لو الشاشة صغيرة أوي */
    }
}



/* ================= 3D HEADSET SCROLL PARALLAX ================= */
.neon-headset {
    position: absolute;
    width: 700px;
    height: 700px;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
    will-change: transform; /* بنقول للمتصفح يجهز نفسه لحركة سريعة مع الـ Scroll */
    /* البداية مخفية في الشمال لحد ما السكريبت يشتغل */
    transform: translate(-50vw, -100px) rotate(-20deg); 
}

/* حركة التنفس المستمرة للسماعة بغض النظر عن السكرول */
.neon-headset model-viewer {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 35px rgba(0, 208, 90, 0.4)) contrast(1.2);
    opacity: 0.85;
    animation: headsetBreathe 6s ease-in-out infinite alternate;
}

@keyframes headsetBreathe {
    0% { transform: translateY(-15px) scale(0.98); }
    100% { transform: translateY(15px) scale(1.02); }
}

@media (max-width: 768px) {
    .neon-headset {
        width: 350px;
        height: 350px;
    }
}

/* ================= PARALLAX LAYERS & Z-INDEX FIX ================= */

#audio-proof {
    position: relative;
    z-index: 20 !important; 
}

/* بنجبر السماعة تبقى في الخلفية دايماً تحت كل الكروت */
.neon-headset {
    z-index: -1 !important; 
    pointer-events: none; /* عشان الماوس ميقفش عليها */
}

#testimonials, .testimonials-section {
    position: relative;
    z-index: 10 !important; 
}

/* لو كروت الأوديو والتقييمات مش واخدين z-index، بنديهم عشان يبقوا فوق السماعة */
.audio-feature-card, .audio-mini-card, .testimonial-card {
    position: relative;
    z-index: 5 !important;
}

/* ================= CUSTOM PRO AUDIO PLAYER (MATCHING SCREENSHOT) ================= */
.pro-audio-player {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #111418; /* اللون الداكن الفخم */
    border-radius: 50px;
    padding: 12px 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.5), 0 5px 15px rgba(0,0,0,0.3);
}

.pro-audio-player.compact-player {
    padding: 10px 15px;
    gap: 10px;
    margin-top: 15px;
}

.pro-audio-player audio { display: none; /* إخفاء المشغل العادي تماماً */ }

.play-pause-btn {
    background: none;
    border: none;
    color: #c4b087; /* اللون الدهبي/الرملي اللي في الصورة */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}
.play-pause-btn svg { width: 22px; height: 22px; }
.play-pause-btn:hover { transform: scale(1.1); color: #e6d3a8; }

.time-display {
    color: #a0aab8;
    font-size: 0.85rem;
    font-family: monospace;
    white-space: nowrap;
}

.progress-bar {
    flex-grow: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0%; /* الجافاسكريبت هيحرك دي */
    background: #c4b087; /* لون الشريط الدهبي */
    border-radius: 10px;
    transition: width 0.1s linear;
}

.volume-btn {
    background: none;
    border: none;
    color: #8893a3;
    cursor: pointer;
}
.volume-btn svg { width: 18px; height: 18px; }



/* ================= FIX AVATAR SIZES (SMALL & CIRCULAR) ================= */

.caller-profile-header { 
    display: flex; 
    justify-content: space-between; 
    align-items: flex-start; 
}

.caller-profile { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    margin-bottom: 15px;
}

.caller-avatar { 
    position: relative; 
    width: 45px !important; /* إجبار الحجم الصغير */
    height: 45px !important; 
    border-radius: 50% !important; 
    flex-shrink: 0; /* عشان الصورة متتمطش */
}

.caller-avatar img { 
    width: 100% !important; 
    height: 100% !important; 
    border-radius: 50% !important; /* شكل دائري */
    object-fit: cover !important; 
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: block;
}

.online-dot { 
    position: absolute; 
    bottom: 0px; 
    right: 0px; 
    width: 12px !important; 
    height: 12px !important; 
    background: #00d05a; 
    border: 2px solid #0a0e14; 
    border-radius: 50%; 
    box-shadow: 0 0 8px rgba(0, 208, 90, 0.6); 
    z-index: 2;
}

.caller-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.caller-info h4 { 
    font-size: 1rem !important; 
    margin: 0 0 2px 0 !important; 
    color: #fff; 
    font-weight: 700; 
}

.caller-info span { 
    font-size: 0.75rem !important; 
    color: #94a3b8; 
}


/* ================= LIVE GRADIENT GIANT NUMBER (FIXED POSITION & TRANSPARENCY) ================= */
.live-gradient-number {
    position: absolute;
    /* طلعناه فوق عشان يبقى قصاد البوكس الأولاني بالظبط */
    top: 5%; 
    left: 2vw; 
    
    font-size: 20rem; 
    font-weight: 900;
    line-height: 0.8;
    z-index: 0;
    
    background: linear-gradient(135deg, #4f8dff, #00f3ff, #00d05a, #4f8dff);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* حركة الألوان والطفو */
    animation: liveGradientFlow 8s ease infinite, floatNumber 6s ease-in-out infinite alternate;
    
    filter: drop-shadow(0 0 20px rgba(79, 141, 255, 0.15));
    
    /* هنا التركة: خلينا الشفافية 0.3 بدل 0.85 عشان يبقى هادي ورايق */
    opacity: 0.3; 
    pointer-events: none;
}

/* حركة الألوان جوه الرقم */
@keyframes liveGradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* حركة طفو خفيفة للرقم (عدلناها عشان تناسب مكانه فوق) */
@keyframes floatNumber {
    0% { transform: translateY(0); }
    100% { transform: translateY(15px); }
}

/* تظبيط الموبايل والتابلت */
@media (max-width: 1200px) {
    .live-gradient-number {
        font-size: 16rem;
        left: 0;
    }
}

@media (max-width: 768px) {
    .live-gradient-number {
        font-size: 12rem;
        left: 50%;
        top: -2%;
        transform: translateX(-50%); 
        animation: liveGradientFlow 8s ease infinite; 
        opacity: 0.15; /* أشف كمان على الموبايل عشان الكلام يتقرأ براحته */
    }
}


/* ================= GIANT NUMBERS COLOR VARIATIONS ================= */

/* رقم 02: تدرج بنفسجي في أزرق */
.live-gradient-number.color-2 {
    background: linear-gradient(135deg, #a855f7, #4f8dff, #00f3ff, #a855f7);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.15));
}

/* رقم 03: تدرج أخضر نيون في سماوي */
.live-gradient-number.color-3 {
    background: linear-gradient(135deg, #00f3ff, #00d05a, #4f8dff, #00f3ff);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    filter: drop-shadow(0 0 20px rgba(0, 208, 90, 0.15));
}

/* رقم 04: تدرج أزرق غامق في سيان */
.live-gradient-number.color-4 {
    background: linear-gradient(135deg, #4f8dff, #00f3ff, #a855f7, #4f8dff);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    filter: drop-shadow(0 0 20px rgba(79, 141, 255, 0.15));
}


/* ================= SERVICES PAGE: NEW LAYOUTS ================= */

/* شبكة كروت الـ 2x2 للسكيب تريسينج والريسرش */
.features-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* كارت الـ Skip Tracing اللي بينور من الجناب */
.glow-border-card {
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(145deg, rgba(20, 25, 35, 0.6), rgba(10, 15, 25, 0.8));
    transition: all 0.3s ease;
    border-radius: 16px;
}
.glow-border-card:hover {
    border-color: rgba(0, 208, 90, 0.4);
    box-shadow: 0 10px 30px rgba(0, 208, 90, 0.1);
    transform: translateY(-5px);
}
.glow-border-card h4 { color: #fff; font-size: 1.1rem; margin-bottom: 10px; }
.glow-border-card p { color: #94a3b8; font-size: 0.85rem; margin: 0; }

/* سكشن الـ Acquisitions (مقسوم نصين) */
.acq-disp-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.split-col {
    border-radius: 20px;
    border: 1px solid rgba(79, 141, 255, 0.3); /* العمود الأول أزرق */
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.4));
}

/* ليستة مميزات فخمة */
.premium-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.premium-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: #a0aab8;
    font-size: 0.95rem;
    line-height: 1.6;
}
.premium-list li strong { color: #fff; }
.premium-list .icon { font-size: 1.5rem; line-height: 1; }

/* هوامش مساعدة */
.p-25 { padding: 25px; }
.p-40 { padding: 40px; }
.p-50 { padding: 50px; }
.mt-40 { margin-top: 40px; }
.pt-40 { padding-top: 40px; }

/* تظبيط الموبايل */
@media (max-width: 992px) {
    .acq-disp-split { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .features-grid-2x2 { grid-template-columns: 1fr; }
    .p-40, .p-50 { padding: 30px; }
}



/* ================= SERVICES PAGE MASTER LAYOUTS ================= */

/* 1. التقسيمة النصين لسكشن 03 (يمين وشمال) */
.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.service-text.pr-50 { padding-right: 50px; }

/* 2. شبكة الكروت (2x2) لسكشن 03 و 05 */
.features-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* 3. التقسيمة النصين لسكشن 04 (Acquisitions) */
.acq-disp-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.split-col {
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.4));
}

/* 4. إطار الصور الفخم (Premium Image) */
.premium-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 20px;
    padding: 8px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.4));
    border: 1px solid rgba(0, 208, 90, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.premium-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 208, 90, 0.15);
}
.premium-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    display: block;
    position: relative;
    z-index: 2;
}

/* 5. الإضاءة اللي ضاربة من ورا الصورة */
.image-glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 0;
    filter: blur(30px);
    opacity: 0.5;
}
.image-glow-bg.color-3 { background: radial-gradient(circle, #00d05a 0%, transparent 70%); }
.image-glow-bg.color-4 { background: radial-gradient(circle, #4f8dff 0%, transparent 70%); }
.image-glow-bg.color-2 { background: radial-gradient(circle, #a855f7 0%, transparent 70%); }

/* 6. كروت بتنور من الجناب (Skip Tracing) */
.glow-border-card {
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(145deg, rgba(20, 25, 35, 0.6), rgba(10, 15, 25, 0.8));
    transition: all 0.3s ease;
    border-radius: 16px;
}
.glow-border-card:hover {
    border-color: rgba(0, 208, 90, 0.4);
    box-shadow: 0 10px 30px rgba(0, 208, 90, 0.1);
    transform: translateY(-5px);
}
.glow-border-card h4 { color: #fff; font-size: 1.1rem; margin-bottom: 10px; }
.glow-border-card p { color: #94a3b8; font-size: 0.85rem; margin: 0; }

/* ================= الموبايل والتابلت (مهم جداً للتقسيمات) ================= */
@media (max-width: 992px) {
    .service-grid, .acq-disp-split { grid-template-columns: 1fr; gap: 40px; }
    .service-text.pr-50 { padding-right: 0; }
}
@media (max-width: 768px) {
    .features-grid-2x2 { grid-template-columns: 1fr; }
}



/* ================= SAFE GLOBAL SPOTLIGHT (بدون ما نضرب الهيرو) ================= */

/* 1. نأمن لون الموقع الأساسي إنه يفضل دارك دايماً */
body {
    background-color: #0a0f16 !important; 
}

/* 2. الكشاف العملاق اللي هينور الموقع من ورا */
.global-spotlight {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw; 
    height: 100vh;
    z-index: 0; /* نخليه ورا المحتوى بس مش ورا الـ Body نفسه */
    pointer-events: none;
    
    /* بقعة إضاءة خضراء عملاقة + بقعة زرقاء (خففناهم سنة عشان الهيرو) */
    background-image: 
        radial-gradient(circle at 15% 30%, rgba(0, 208, 90, 0.12) 0%, transparent 65%),
        radial-gradient(circle at 85% 70%, rgba(79, 141, 255, 0.08) 0%, transparent 65%);
        
    transform: translateZ(0);
    will-change: transform;
}

/* 3. السحر هنا: نخلي سكاشن الخدمات (بـــس) هي اللي شفافة من غير ما نلمس الهيرو! */
.content-section, .section-alt {
    background-color: transparent !important;
    /* شيلنا سطر مسح الصور عشان الهيرو يفضل محتفظ بصورته */
}

/* 4. الحفاظ على لون الكروت الزجاجية (Glass Effect) وتفتيحها سنة */
.glass-effect, .premium-card, .glow-border-card {
    background-color: transparent !important;
    background-image: linear-gradient(145deg, rgba(35, 45, 60, 0.6), rgba(15, 20, 30, 0.8)) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* 5. تفتيح الكلام نفسه عشان يبان واضح ومريح في سكاشن الخدمات */
.content-section .sp-text, .content-section p {
    color: #b0bbc9 !important; 
}

/* ================= تخفيف الأحمال على الموبايل ================= */
@media (max-width: 768px) {
    .global-spotlight {
        background-image: radial-gradient(circle at 50% 30%, rgba(0, 208, 90, 0.10) 0%, transparent 80%);
    }
    .glass-effect, .premium-card, .glow-border-card {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15) !important;
    }
}


/* ================= 3D FOLDED PAPER CUTS (تأثير الورقة المتنية) ================= */

/* 1. إعدام اللون الأسود القديم من كل الفواصل */
.service-divider-cut::before, .service-divider-cut::after,
.angled-cut::before, .angled-cut::after {
    background-color: transparent !important;
    background: none !important;
    box-shadow: none !important;
}

/* 2. تظبيط السكاشن عشان تركب على بعض سنة (Overlap) */
.service-divider-cut, .angled-cut {
    position: relative;
    /* بنسحب السكشن لفوق شوية عشان يركب على اللي قبله */
    margin-top: -40px; 
    padding-top: 80px; 
    z-index: 2;
    background: transparent !important;
}

/* 3. تأثير الورقة المتنية (اللمعة والضل) - إصلاح البكسلة وتنعيم الحواف */
.service-divider-cut::before, .angled-cut::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px; 
    
    /* تريكات القضاء على البكسلة (Hardware Acceleration):
      1. translateZ(0): بتجبر كارت الشاشة إنه يعالج العنصر فبينعمه.
      2. backface-visibility: بتمنع تقطيع الحواف.
      3. outline: حيلة سحرية بتخلي المتصفح يسيح الحرف المشرشر.
    */
    transform: skewY(-2deg) translateZ(0);
    transform-origin: top left;
    backface-visibility: hidden;
    outline: 1px solid transparent; 
    
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%) !important;
    
    /* ضفنا 0 0 1px transparent عشان نسيّح أي بكسلة في الضل نفسه */
    box-shadow: 0 0 1px transparent, 0 -15px 30px rgba(0, 0, 0, 0.4) !important;
    
    z-index: -1;
    pointer-events: none;
}

/* تظبيط زاوية الورقة في الموبايل (لازم نحط فيها الـ translateZ برضه) */
@media (max-width: 768px) {
    .service-divider-cut::before, .angled-cut::before {
        transform: skewY(-3deg) translateZ(0);
    }
}

/* ================= تنظيف الفوتر نهائياً من النغمشة (FOOTER NOISE KILLER) ================= */

/* 1. استهداف الفوتر وكل الحاويات الأساسية اللي جواه */
footer, 
#footer, 
.site-footer, 
.footer, 
.footer-area, 
.footer-wrapper,
.footer-inner {
    background-image: none !important;
    /* بنجبر الفوتر ياخد لون كحلي غامق ونظيف سادة بدل كود الـ background المجمع بتاع القالب */
    background: #0a0f16 !important; 
}

/* 2. إعدام أي طبقة وهمية (Before/After) القالب راميها فوق الفوتر عشان تعمل نغمشة */
footer::before, 
footer::after,
.site-footer::before, 
.site-footer::after,
.footer::before, 
.footer::after {
    background-image: none !important;
    background: none !important;
    opacity: 0 !important;
    display: none !important;
}

/* 3. استهداف ذكي: لو القالب عامل Div مخصوص للنغمشة جوه الفوتر (أي كلاس فيه كلمة noise أو grain) */
footer div[class*="noise"], 
footer div[class*="grain"], 
footer div[class*="texture"],
.site-footer div[class*="noise"],
.site-footer div[class*="grain"] {
    display: none !important;
    opacity: 0 !important;
    background-image: none !important;
}

/* ================= إعدام النغمشة من الموقع بالكامل (THE ULTIMATE NOISE KILLER) ================= */

/* 1. إخفاء كلاس الـ SVG المزعج اللي مبوظ الـ Home Page والـ Funnel */
.noise-bg {
    background-image: none !important;
    opacity: 0 !important;
    display: none !important;
}

/* 2. تأكيد الإعدام على أي كلاس مشابه في القالب بيعمل Grain أو Texture */
[class*="noise"], 
[class*="grain"],
.bg-noise {
    background-image: none !important;
    opacity: 0 !important;
}

/* 3. تنظيف الهيرو تحديداً لو القالب رامي عليه طبقة خفية */
.hero::before,
.hero::after {
    background-image: none !important;
}

/* ================= REMOVE MOBILE STICKY BUTTON ================= */
.mobile-sticky-cta {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
    z-index: -999 !important;
}

/* ================= 🚨 CONTACT SECTION MOBILE CRASH FIX (OOM KILLER) 🚨 ================= */

@media (max-width: 768px) {
    /* 1. إعدام الفلاتر المعقدة من على الكاليندلي (هيرجع لونه الفاتح الأصلي على الموبايل بس الموقع مش هيقع) */
    .calendly-inline-widget,
    .calendly-inline-widget iframe,
    .calendly-inline-widget-wrapper {
        filter: none !important;
        -webkit-filter: none !important;
        transform: translateZ(0) !important; /* بيعزل الكاليندلي في طبقة لوحده عشان ميهنجش الصفحة */
        box-shadow: none !important;
        background: transparent !important;
    }

    /* 2. إعدام الظرف العملاق اللي في الخلفية (لأنه بيسحب رامات ضخمة في الريندر) */
    .shape-envelope {
        display: none !important;
        opacity: 0 !important;
        animation: none !important;
        content-visibility: hidden !important; /* السطر ده بيشيله من حسابات المعالج تماماً */
    }

    /* 3. تخفيف أي ظلال (Box Shadows) تقيلة في سكشن الفورم */
    .contact-form-pro {
        box-shadow: none !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        background: #0a0e14 !important; /* لون سادة مريح للعين والرامات */
    }

    /* ================= 🚨 MOBILE MENU VISIBILITY FIX 🚨 ================= */

@media (max-width: 768px) {
    /* 1. السطر ده هو اللي هيحرر الهيدر ويمنعه يقص المنيو وهو نازل */
    header, .navbar {
        overflow: visible !important;
        overflow-x: visible !important;
        overflow-y: visible !important;
    }

    /* 2. تكبير مساحة الضغط لزرار الهامبرجر عشان يلقط اللمس بسرعة */
    .mobile-menu-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 46px;
        height: 46px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1001; /* نأمن إنه فوق أي حاجة */
    }

    /* 3. تظبيط شكل المنيو لما يفتح عشان ميتوهش ورا السكاشن */
    .nav-links.nav-links--open {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: calc(100% + 15px); /* ينزل تحت الناف بار بمسافة شيك */
        left: 0;
        width: 100%;
        background: rgba(8, 12, 18, 0.98); /* دارك مود فخم جداً */
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 30px 20px;
        border: 1px solid rgba(0, 208, 90, 0.15); /* إطار أخضر خفيف */
        border-radius: 22px;
        z-index: 9999 !important; /* أعلى طبقة في الموقع */
        box-shadow: 0 20px 50px rgba(0,0,0,0.9);
        gap: 18px;
    }

    /* 4. تكبير اللينكات جوه الموبايل عشان تبقى Touch-friendly */
    .nav-links.nav-links--open a {
        font-size: 1.1rem;
        padding: 10px;
        width: 100%;
        text-align: center;
    }
 }

}


/* ================= 🚨 100% GUARANTEED HORIZONTAL SCROLL FIX (CLIENT BUG FIX) 🚨 ================= */

/* 1. القفل الحديدي على مستوى الصفحة بالكامل */
html, body {
    width: 100% !important;
    max-width: 100vw !important;
    /* خاصية clip السحرية: بتقص العرض بس ومبتعملش مشكلة الـ 2 سكرول نهائياً */
    overflow-x: clip !important; 
}

/* 2. إجبار كل السكاشن إنها تقص أي شكل، رقم، أو كشاف بيحاول يزق الشاشة لليمين */
main, section, footer, .content-section, .hero, .funnel-section {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: clip !important; 
}

/* 3. تحجيم الإضاءات والكشافات اللي واخدة 150vw عشان متعملش مساحة وهمية */
.global-spotlight, 
.top-spotlight,
.image-glow-bg {
    width: 100% !important;
    max-width: 100vw !important;
}

/* 4. تأمين إضافي لشبكات الكروت على الموبايل عشان مفيش كارت يفرش بره */
@media (max-width: 768px) {
    .container {
        max-width: 100vw !important;
        overflow-x: clip !important;
    }
}
/* ====================================================================================== */



/* ================= PEACH ORANGE THEME (TEXT BLASTING BANNER) ================= */
.text-blasting-announcement {
    position: relative;
    z-index: 10;
    width: 100%;
}

/* تلوين البوكس والإضاءة بتاعته */
.waves-glow-box.peach-theme {
    border-color: rgba(255, 153, 0, 0.3);
    box-shadow: 0 0 40px rgba(255, 153, 0, 0.1);
}

/* تلوين الأيقونة */
.addon-icon.peach-icon {
    color: #ff9900;
    background: rgba(255, 153, 0, 0.1);
    box-shadow: inset 0 0 15px rgba(255, 153, 0, 0.05);
}

/* تلوين أمواج الخلفية */
.peach-wave {
    background: radial-gradient(circle at center, rgba(255, 153, 0, 0.12) 0%, rgba(255, 123, 0, 0.05) 30%, transparent 70%) !important;
}

/* تلوين الزرار بجريديانت خوخي فخم */
.peach-btn {
    background: linear-gradient(135deg, #ffb347, #ff7b00) !important;
    box-shadow: 0 8px 20px rgba(255, 153, 0, 0.25) !important;
    border: none !important;
    white-space: nowrap;
}

.peach-btn:hover {
    box-shadow: 0 12px 30px rgba(255, 153, 0, 0.4) !important;
    transform: translateY(-3px);
}


/* ================= PEACH NEW BADGE (TEXT BLASTING BANNER) ================= */
.peach-new-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 153, 0, 0.15);
    color: #ff9900;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 153, 0, 0.3);
}

.peach-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff9900;
    box-shadow: 0 0 10px rgba(255, 153, 0, 0.8);
    animation: peachPulseAnim 2s infinite;
}

@keyframes peachPulseAnim {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

/* ================= FULL WIDTH MARQUEE ================= */
.full-width-marquee {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: rgba(0, 208, 90, 0.05);
    border-top: 1px solid rgba(0, 208, 90, 0.1);
    border-bottom: 1px solid rgba(0, 208, 90, 0.1);
    padding: 15px 0;
    overflow: hidden;
    display: flex;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
}

/* ================= FULL WIDTH MARQUEE ================= */
.full-width-marquee {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: rgba(0, 208, 90, 0.05);
    border-top: 1px solid rgba(0, 208, 90, 0.1);
    border-bottom: 1px solid rgba(0, 208, 90, 0.1);
    padding: 15px 0;
    overflow: hidden;
    display: flex;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: scroll-marquee 30s linear infinite;
}

.marquee-group {
    display: flex;
    justify-content: space-around;
    min-width: 100%;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: #cbd5e1;
    margin-right: 40px;
}

@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* ================= ROI CALCULATOR STYLES ================= */
.roi-select, .roi-input {
    width: 100%; 
    padding: 14px; 
    background: rgba(10, 14, 20, 0.8) !important; 
    border: 1px solid rgba(255, 255, 255, 0.15) !important; 
    color: #fff !important; 
    border-radius: 12px !important; 
    outline: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.roi-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2300d05a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.roi-select:focus, .roi-input:focus {
    border-color: #00d05a !important;
    box-shadow: 0 0 15px rgba(0, 208, 90, 0.2);
}

@media (max-width: 768px) {
    .roi-grid { grid-template-columns: 1fr !important; gap: 30px !important; }
}

/* ================= FAQ STYLES ================= */
.faq-item.active { border-color: rgba(0, 208, 90, 0.4) !important; background: rgba(0, 208, 90, 0.05) !important; }
.faq-item.active span { transform: rotate(45deg); display: inline-block; }
.faq-item.active .faq-answer-content { max-height: 500px !important; padding-bottom: 20px !important; opacity: 1; }