/* =====================================================
   مُيسر - الصفحة التسويقية الاحترافية
   Marketing Landing Page - Professional Design
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&family=Tajawal:wght@300;400;500;700;800&display=swap');

:root {
    --primary:       #0d6e5a;
    --primary-light: #17a882;
    --primary-dark:  #084d3e;
    --accent:        #f0a500;
    --accent-light:  #ffc845;
    --theme-primary-color: var(--primary);
    --theme-secondary-color: var(--accent);
    --bodysurface:   #c4e7da;
    --surface:       #ffffff;
    --surface-alt:   #f7fbfa;
    --text-dark:     #0f2119;
    --text-mid:      #2c5545;
    --text-soft:     #5a7a6e;
    --text-muted:    #8ea89e;
    --border:        rgba(13, 110, 90, 0.12);
    --shadow-sm:     0 2px 12px rgba(13, 110, 90, 0.08);
    --shadow-md:     0 8px 40px rgba(13, 110, 90, 0.14);
    --shadow-lg:     0 20px 80px rgba(13, 110, 90, 0.18);
    --radius-sm:     10px;
    --radius-md:     18px;
    --radius-lg:     28px;
    --radius-xl:     40px;
    --transition:    0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.marketing-home-layout,
.marketing-home-layout * {
    box-sizing: border-box;
}

.marketing-home-layout * {
    margin: 0;
    padding: 0;
}

html { scroll-behavior: smooth; }

body.marketing-page {
    direction: rtl;
    background: var(--bodysurface);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.7;
}

body.marketing-page.marketing-inner-page {
    padding-top: var(--marketing-nav-height, 82px);
}

/* ==============================
   NAVIGATION
   ============================== */
.mkt-nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    padding: 0;
    transition: all var(--transition);
}
.mkt-nav.scrolled,
.mkt-nav.mkt-nav-surface {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(13, 110, 90, 0.12);
}
.mkt-nav.mkt-nav-inner-page {
    background: rgba(255,255,255,0.98);
}
.mkt-nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.mkt-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.mkt-logo-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    box-shadow: 0 4px 16px rgba(13, 110, 90, 0.3);
}
.mkt-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.5px;
    transition: color var(--transition);
}
.mkt-logo-text span {
    color: rgba(255, 255, 255, 0.75);
    transition: color var(--transition);
}
/* When scrolled */
.mkt-nav.scrolled .mkt-logo-text,
.mkt-nav.mkt-nav-surface .mkt-logo-text {
    color: var(--primary-dark);
}
.mkt-nav.scrolled .mkt-logo-text span,
.mkt-nav.mkt-nav-surface .mkt-logo-text span {
    color: var(--primary-light);
}
.mkt-nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
}
.mkt-nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 30px;
    transition: all var(--transition);
}
.mkt-nav-links a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.15);
}
/* When scrolled: switch to dark colors */
.mkt-nav.scrolled .mkt-nav-links a,
.mkt-nav.mkt-nav-surface .mkt-nav-links a {
    color: var(--text-mid);
}
.mkt-nav.scrolled .mkt-nav-links a:hover,
.mkt-nav.mkt-nav-surface .mkt-nav-links a:hover {
    color: var(--primary);
    background: rgba(13, 110, 90, 0.08);
}
.mkt-nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}
.btn-nav-login {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 10px 22px;
    border-radius: 30px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    transition: all var(--transition);
}
.btn-nav-login:hover {
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.12);
    color: white;
}
/* When scrolled */
.mkt-nav.scrolled .btn-nav-login,
.mkt-nav.mkt-nav-surface .btn-nav-login {
    color: var(--primary);
    border-color: var(--border);
}
.mkt-nav.scrolled .btn-nav-login:hover,
.mkt-nav.mkt-nav-surface .btn-nav-login:hover {
    border-color: var(--primary);
    background: rgba(13, 110, 90, 0.05);
}
.btn-nav-primary {
    text-decoration: none;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 10px 26px;
    border-radius: 30px;
    transition: all var(--transition);
    box-shadow: 0 4px 20px rgba(13, 110, 90, 0.3);
}
.btn-nav-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(13, 110, 90, 0.4);
    color: white;
}

/* ==============================
   HERO SECTION
   ============================== */
.mkt-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #062d21 0%, #0d6e5a 45%, #17a882 100%);
}
.mkt-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 5 L95 27.5 L95 72.5 L50 95 L5 72.5 L5 27.5 Z' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3C/svg%3E") repeat;
    background-size: 80px 80px;
    opacity: 0.5;
}
.mkt-hero-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    pointer-events: none;
}
.mkt-hero-blob-1 {
    background: var(--accent);
    top: -200px;
    left: -200px;
    animation: blobFloat 8s ease-in-out infinite;
}
.mkt-hero-blob-2 {
    background: #17a882;
    bottom: -200px;
    right: -100px;
    animation: blobFloat 10s ease-in-out infinite reverse;
}
@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.05); }
}
.mkt-hero-inner {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 120px 32px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}
.mkt-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    color: #a8f0dc;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 30px;
    margin-bottom: 24px;
    width: fit-content;
}
.mkt-hero-badge i { color: var(--accent-light); }
.mkt-hero-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}
.mkt-hero-title .highlight {
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.mkt-hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 40px;
    max-width: 520px;
    line-height: 1.8;
}
.mkt-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #0f2119;
    font-weight: 800;
    font-size: 1.05rem;
    padding: 16px 36px;
    border-radius: var(--radius-xl);
    text-decoration: none;
    transition: all var(--transition);
    box-shadow: 0 8px 30px rgba(240, 165, 0, 0.4);
}
.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(240, 165, 0, 0.5);
    color: #0f2119;
}
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.25);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 30px;
    border-radius: var(--radius-xl);
    text-decoration: none;
    transition: all var(--transition);
    backdrop-filter: blur(10px);
}
.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-2px);
    color: white;
}
.mkt-hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}
.hero-stat {
    text-align: center;
}
.hero-stat-num {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    line-height: 1;
}
.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
}
.hero-stat-num .accent { color: var(--accent-light); }
.mkt-hero-visual {
    position: relative;
}
.mkt-hero-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.mkt-hero-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
}
.hero-floating-card {
    position: absolute;
    background: white;
    border-radius: var(--radius-md);
    padding: 14px 18px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatCard 4s ease-in-out infinite;
}
.hero-floating-card:nth-child(2) { animation-delay: 2s; }
.hero-floating-card-1 {
    bottom: 30px;
    right: -20px;
}
.hero-floating-card-2 {
    top: 30px;
    left: -20px;
}
@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.floating-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.floating-card-icon.green { background: #e6f7f0; color: var(--primary); }
.floating-card-icon.amber { background: #fff8e1; color: var(--accent); }
.floating-card-text-main {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-dark);
}
.floating-card-text-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ==============================
   TRUST BAR
   ============================== */
.mkt-trust {
    background: white;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 28px 32px;
    overflow: hidden;
}
.mkt-trust-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}
.trust-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    white-space: nowrap;
}
.trust-logos {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}
.trust-logo-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-soft);
    opacity: 0.6;
    transition: opacity var(--transition);
}
.trust-logo-item:hover { opacity: 1; }
.trust-logo-item i { font-size: 1.4rem; color: var(--primary); }

/* ==============================
   SECTION COMMONS
   ============================== */
.mkt-section {
    padding: 100px 32px;
}
.mkt-section-inner {
    max-width: 1280px;
    margin: 0 auto;
}
.marketing-home-layout .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(13, 110, 90, 0.08);
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.marketing-home-layout .section-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.25;
    letter-spacing: -0.5px;
}
.marketing-home-layout .section-subtitle {
    font-size: 1.05rem;
    color: var(--text-soft);
    max-width: 600px;
    line-height: 1.8;
}
.marketing-home-layout .text-center .section-subtitle { margin: 0 auto; }

/* ==============================
   FEATURES SECTION
   ============================== */
.mkt-features {
    background: var(--surface-alt);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}
.feature-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 36px 28px;
    transition: all var(--transition);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 0 var(--radius-md) 0 60px;
    opacity: 0.08;
    transition: all var(--transition);
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(13, 110, 90, 0.25);
}
.feature-card:hover::before { opacity: 0.15; }
.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(13, 110, 90, 0.1), rgba(23, 168, 130, 0.15));
    color: var(--primary);
    transition: all var(--transition);
}
.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    transform: scale(1.1);
}
.feature-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.feature-desc {
    font-size: 0.9rem;
    color: var(--text-soft);
    line-height: 1.7;
}

/* ==============================
   DASHBOARD SHOWCASE
   ============================== */
.mkt-showcase {
    background: white;
}
.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}
.showcase-img-wrap {
    position: relative;
}
.showcase-img-wrap img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.showcase-badge {
    position: absolute;
    background: white;
    border-radius: var(--radius-md);
    padding: 12px 18px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    animation: floatCard 5s ease-in-out infinite;
}
.showcase-badge i {
    color: var(--primary);
    font-size: 18px;
}
.showcase-badge-1 { top: -16px; left: 20px; }
.showcase-badge-2 { bottom: -16px; right: 20px; animation-delay: 2.5s; }
.showcase-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.showcase-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    transition: all var(--transition);
    cursor: default;
}
.showcase-feature:hover {
    background: var(--surface-alt);
    border-color: var(--border);
}
.showcase-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.showcase-feature-icon.c1 { background: #e6f7f0; color: #0d6e5a; }
.showcase-feature-icon.c2 { background: #fff8e1; color: #f0a500; }
.showcase-feature-icon.c3 { background: #e8f0fe; color: #3d6bde; }
.showcase-feature-icon.c4 { background: #fce4ec; color: #d81b60; }
.showcase-feature-text h4 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 4px;
}
.showcase-feature-text p {
    font-size: 0.875rem;
    color: var(--text-soft);
    line-height: 1.6;
}

/* ==============================
   STATS SECTION
   ============================== */
.mkt-stats {
    background: linear-gradient(135deg, #062d21 0%, #0d6e5a 100%);
    padding: 80px 32px;
    position: relative;
    overflow: hidden;
}
.mkt-stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 5 L95 27.5 L95 72.5 L50 95 L5 72.5 L5 27.5 Z' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3C/svg%3E") repeat;
    background-size: 80px;
}
.mkt-stats-inner {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.stat-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all var(--transition);
}
.stat-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
}
.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-number span { color: var(--accent-light); }
.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    font-weight: 600;
}
.stat-icon {
    font-size: 2rem;
    color: rgba(255,255,255,0.3);
    margin-bottom: 16px;
}

/* ==============================
   HOW IT WORKS
   ============================== */
.mkt-how {
    background: var(--surface-alt);
}
.how-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 60px;
    position: relative;
}
.how-steps::before {
    content: '';
    position: absolute;
    top: 38px;
    right: 10%;
    left: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-light), rgba(13,110,90,0.1));
    z-index: 0;
}
.how-step {
    text-align: center;
    position: relative;
    z-index: 1;
}
.how-step-num {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(13, 110, 90, 0.3);
    transition: all var(--transition);
}
.how-step:hover .how-step-num {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(13, 110, 90, 0.4);
}
.how-step-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.how-step-desc {
    font-size: 0.875rem;
    color: var(--text-soft);
    line-height: 1.7;
}

/* ==============================
   TESTIMONIALS
   ============================== */
.mkt-testimonials {
    background: white;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}
.testimonial-card {
    background: var(--surface-alt);
    border-radius: var(--radius-md);
    padding: 32px;
    border: 1px solid var(--border);
    transition: all var(--transition);
    position: relative;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(13, 110, 90, 0.2);
}
.testimonial-card::before {
    content: '\201C';
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.1;
    position: absolute;
    top: -10px;
    right: 20px;
    line-height: 1;
}
.testimonial-stars {
    display: flex;
    gap: 4px;
    color: var(--accent);
    margin-bottom: 16px;
    font-size: 1rem;
}
.testimonial-text {
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.testimonial-name {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--text-dark);
}
.testimonial-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==============================
   TEAM SECTION
   ============================== */
.mkt-team {
    background: var(--surface-alt);
}
.team-grid {
    display: grid;
    grid-template-columns: 55% 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}
.team-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}
.team-img-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: block;
}
.team-floating-card {
    position: absolute;
    z-index: 3;
    background: rgba(255, 255, 255, 0.96);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: 0 16px 44px rgba(8, 77, 62, 0.18);
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 245px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    animation: floatCard 4.4s ease-in-out infinite;
}
.team-floating-card-1 {
    top: 28px;
    left: 28px;
}
.team-floating-card-2 {
    right: 28px;
    bottom: 28px;
    animation-delay: 1.8s;
}
.team-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.team-point {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: white;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    transition: all var(--transition);
    min-width: 0;
}
.team-point:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-sm);
}
.team-point i {
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
    width: 22px;
    text-align: center;
}
.team-point span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-mid);
    line-height: 1.5;
    overflow: hidden;
    min-width: 0;
}

/* ==============================
   PRICING SECTION
   ============================== */
.mkt-pricing {
    background: white;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
    align-items: start;
}
.pricing-card {
    border-radius: var(--radius-md);
    padding: 40px 32px;
    border: 2px solid var(--border);
    transition: all var(--transition);
    position: relative;
    background: white;
}
.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.pricing-card.featured {
    background: linear-gradient(135deg, #062d21, #0d6e5a);
    border-color: transparent;
    transform: scale(1.04);
}
.pricing-card.featured:hover {
    transform: scale(1.04) translateY(-4px);
}
.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #0f2119;
    font-size: 0.78rem;
    font-weight: 800;
    padding: 6px 18px;
    border-radius: 20px;
    white-space: nowrap;
}
.pricing-plan {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.pricing-card.featured .pricing-plan { color: rgba(255,255,255,0.6); }
.pricing-price {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 6px;
}
.pricing-card.featured .pricing-price { color: white; }
.pricing-period {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}
.pricing-card.featured .pricing-period { color: rgba(255,255,255,0.5); }
.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}
.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-mid);
}
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.85); }
.pricing-features li i { color: var(--primary); font-size: 1rem; flex-shrink: 0; }
.pricing-card.featured .pricing-features li i { color: var(--accent-light); }
.btn-pricing {
    display: block;
    text-align: center;
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    padding: 14px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.btn-pricing-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}
.btn-pricing-outline:hover {
    background: var(--primary);
    color: white;
}
.btn-pricing-filled {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #0f2119;
    border: none;
    box-shadow: 0 4px 20px rgba(240, 165, 0, 0.3);
}
.btn-pricing-filled:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(240, 165, 0, 0.4);
    color: #0f2119;
}

/* ==============================
   CTA SECTION
   ============================== */
.mkt-cta {
    background: linear-gradient(135deg, #062d21 0%, #0d6e5a 60%, #17a882 100%);
    padding: 100px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.mkt-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 5 L95 27.5 L95 72.5 L50 95 L5 72.5 L5 27.5 Z' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3C/svg%3E") repeat;
    background-size: 80px;
}
.mkt-cta-inner {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.mkt-cta .section-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    color: #a8f0dc;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 14px;
    padding: 12px 22px;
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.4;
}
.mkt-cta h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    line-height: 1.25;
}
.mkt-cta p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 40px;
    line-height: 1.8;
}
.mkt-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #0f2119;
    font-weight: 800;
    font-size: 1.05rem;
    padding: 16px 40px;
    border-radius: var(--radius-xl);
    text-decoration: none;
    transition: all var(--transition);
    box-shadow: 0 8px 30px rgba(240, 165, 0, 0.4);
}
.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(240, 165, 0, 0.5);
    color: #0f2119;
}
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: var(--radius-xl);
    text-decoration: none;
    transition: all var(--transition);
}
.btn-cta-secondary:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
    color: white;
}
.cta-contact-info {
    margin-top: 40px;
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}
.cta-contact-item i { color: var(--accent-light); }
.cta-contact-item a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition);
}
.cta-contact-item a:hover { color: var(--accent-light); }

/* ==============================
   FOOTER
   ============================== */
.mkt-footer {
    --footer-primary: var(--primary-color, var(--primary));
    --footer-secondary: var(--secondary-color, var(--primary-light));
    background-color: var(--footer-primary);
    background-image: linear-gradient(
        135deg,
        color-mix(in srgb, var(--footer-primary) 66%, #061712 34%) 0%,
        color-mix(in srgb, var(--footer-secondary) 42%, #061712 58%) 52%,
        color-mix(in srgb, var(--footer-primary) 58%, #04110e 42%) 100%
    );
    color: rgba(255,255,255,0.75);
    padding: 70px 32px 30px;
}
.mkt-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
}
.mkt-footer-top {
    display: grid;
    grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(160px, 1fr));
    gap: clamp(32px, 4vw, 64px);
    align-items: start;
    padding-bottom: 50px;
    border-bottom: 1px solid color-mix(in srgb, var(--footer-secondary) 26%, transparent);
}
.mkt-footer-top > div {
    min-width: 0;
}
.mkt-footer .footer-brand {
    max-width: 280px;
}
.mkt-footer .footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}
.mkt-footer .footer-brand-logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--footer-primary), var(--footer-secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}
.mkt-footer .footer-brand-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: white;
}
.mkt-footer .footer-brand-desc {
    font-size: 0.875rem;
    line-height: 1.8;
    margin-bottom: 24px;
}
.mkt-footer .footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
}
.mkt-footer .footer-social a {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 10px;
    background: color-mix(in srgb, var(--footer-secondary) 16%, transparent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}
.mkt-footer .footer-social i {
    font-size: 1rem !important;
    line-height: 1;
}
.mkt-footer .footer-social a:hover {
    background: linear-gradient(135deg, var(--footer-primary), var(--footer-secondary));
    transform: translateY(-2px);
    opacity: 1;
}
.mkt-footer .footer-col-title {
    font-size: 0.9rem;
    font-weight: 800;
    color: white;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid color-mix(in srgb, var(--footer-secondary) 55%, transparent);
    display: inline-block;
}
.mkt-footer .footer-links {
    list-style: none !important;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 0;
}
.mkt-footer .footer-links li {
    list-style: none !important;
    display: flex;
    align-items: center;
    min-height: 28px;
    margin: 0;
    padding: 0;
}
.mkt-footer .footer-links li::marker {
    content: "";
}
.mkt-footer .footer-links a {
    width: 100%;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    line-height: 1.7;
    transition: opacity var(--transition);
}
.mkt-footer .footer-links a:hover {
    opacity: 0.8;
}
.mkt-footer .footer-contact-item {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    min-height: 30px;
    margin: 0 0 10px;
}
.mkt-footer .footer-contact-item i {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    font-size: 1.05rem !important;
    line-height: 1;
    flex-shrink: 0;
}
.mkt-footer .footer-contact-item a {
    transition: opacity var(--transition);
}
.mkt-footer .footer-contact-item a:hover {
    opacity: 0.8;
}
.mkt-footer a,
.mkt-footer a:visited {
    color: white !important;
    text-decoration: none !important;
}
.mkt-footer a:hover,
.mkt-footer a:focus {
    color: white !important;
    text-decoration: none !important;
}
.mkt-footer-bottom {
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.mkt-footer .footer-copyright {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.78);
}
.mkt-footer .footer-bottom-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}
.mkt-footer .footer-bottom-links a {
    font-size: 0.82rem;
    line-height: 1.6;
    transition: opacity var(--transition);
}
.mkt-footer .footer-bottom-links a:hover {
    opacity: 0.8;
}

/* ==============================
   SCROLL ANIMATIONS
   ============================== */
.marketing-home-layout .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.marketing-home-layout .reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.marketing-home-layout .reveal-delay-1 { transition-delay: 0.1s; }
.marketing-home-layout .reveal-delay-2 { transition-delay: 0.2s; }
.marketing-home-layout .reveal-delay-3 { transition-delay: 0.3s; }
.marketing-home-layout .reveal-delay-4 { transition-delay: 0.4s; }
.marketing-home-layout .reveal-delay-5 { transition-delay: 0.5s; }

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1100px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: none; }
    .mkt-footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
    .mkt-hero-inner { grid-template-columns: 1fr; gap: 50px; }
    .mkt-hero-visual { order: -1; max-width: 500px; margin: 0 auto; }
    .showcase-grid { grid-template-columns: 1fr; gap: 40px; }
    .team-grid { grid-template-columns: 1fr; gap: 40px; }
    .mkt-stats-inner { grid-template-columns: repeat(2, 1fr); }
    .how-steps { grid-template-columns: repeat(2, 1fr); }
    .how-steps::before { display: none; }
    .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
    body.marketing-page.marketing-inner-page { padding-top: var(--marketing-nav-height, 126px); }
    .mkt-nav-links { display: none; }
    .mkt-nav-inner { padding: 14px 20px; }
    .mkt-nav-cta { gap: 10px; }
    .btn-nav-login {
        width: 56px;
        min-width: 56px;
        height: 56px;
        padding: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 0;
        line-height: 1;
    }
    .btn-nav-login i,
    .btn-nav-login svg {
        display: none;
    }
    .btn-nav-login::before {
        content: "\f4e1";
        font-family: "bootstrap-icons";
        font-weight: 400;
        font-size: 1.45rem;
        line-height: 1;
    }
    .btn-nav-primary {
        padding-inline: 22px;
        font-size: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
    }
    .btn-nav-primary::before {
        content: "أطلب الآن";
        font-size: 1rem;
        line-height: 1.2;
    }
    .mkt-hero-inner { padding: 100px 20px 60px; }
    .mkt-section { padding: 70px 20px; }
    .features-grid { grid-template-columns: 1fr; }
    .mkt-stats-inner { grid-template-columns: 1fr 1fr; gap: 20px; }
    .how-steps { grid-template-columns: 1fr; }
    .mkt-footer-top { grid-template-columns: 1fr; gap: 30px; }
    .mkt-footer-bottom { flex-direction: column; text-align: center; }
    .hero-floating-card,
    .team-floating-card { display: none; }
}

/* Number counter animation */
@keyframes countUp {
    from { opacity: 0; }
    to { opacity: 1; }
}
.marketing-home-layout .counter { animation: countUp 0.5s ease-in; }
