/* ==================== VARIABLES & RESET ==================== */
:root {
    --primary: #4CAF50; /* Green that represents fresh/groceries */
    --primary-dark: #388E3C;
    --primary-light: #C8E6C9;
    --secondary: #FF9800; /* Orange for offers/attention */
    --dark: #121212;
    --dark-surface: #1E1E1E;
    --dark-surface-2: #2C2C2C;
    --text-main: #FFFFFF;
    --text-muted: #B3B3B3;
    --danger: #FF5252;
    --success: #4CAF50;
    --info: #2196F3;
    
    --glow-primary: rgba(76, 175, 80, 0.4);
    --glow-secondary: rgba(255, 152, 0, 0.4);
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius: 16px;
    --glass-bg: rgba(30, 30, 30, 0.7);
    --glass-border: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', 'Tajawal', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

ul {
    list-style: none;
}

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

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

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

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), #8BC34A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.highlight-text {
    color: var(--secondary);
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--glow-secondary);
    z-index: -1;
    border-radius: 4px;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-glow {
    box-shadow: 0 0 20px var(--glow-primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--glow-primary);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--glass-border);
    color: white;
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(76, 175, 80, 0.1);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
}

.navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    padding: 12px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.nav-logo i {
    color: var(--primary);
    font-size: 1.8rem;
}

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

.nav-links a {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-muted);
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: white;
}

.nav-links a:not(.nav-cta-btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:not(.nav-cta-btn):hover::after,
.nav-links a.active:not(.nav-cta-btn):::after {
    width: 100%;
}

.nav-cta-btn {
    background: var(--primary);
    color: white !important;
    padding: 10px 24px;
    border-radius: 20px;
}

.nav-cta-btn:hover {
    background: var(--primary-dark);
    box-shadow: 0 4px 15px var(--glow-primary);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.nav-toggle span {
    position: absolute;
    width: 100%;
    height: 2px;
    background: white;
    left: 0;
    transition: var(--transition);
}

.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 11px; }
.nav-toggle span:nth-child(3) { top: 22px; }

.nav-toggle.active span:nth-child(1) {
    top: 11px;
    transform: rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    top: 11px;
    transform: rotate(-45deg);
}

/* ==================== HERO SECTION ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.5;
}

.hero-orb-1 {
    top: 10%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: rgba(76, 175, 80, 0.3);
}

.hero-orb-2 {
    bottom: -10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: rgba(33, 150, 243, 0.2);
}

.hero-orb-3 {
    top: 40%;
    left: 30%;
    width: 300px;
    height: 300px;
    background: rgba(255, 152, 0, 0.15);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 152, 0, 0.1);
    color: var(--secondary);
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 152, 0, 0.2);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.platform-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--dark-surface);
    border: 1px solid var(--glass-border);
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.platform-badge i {
    color: white;
}

.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Phone Mockup (CSS only) */
.phone-mockup {
    width: 280px;
    height: 580px;
    background: #000;
    border-radius: 40px;
    padding: 10px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), inset 0 0 0 2px #333;
    position: relative;
    z-index: 2;
    transform: rotate(-5deg);
    transition: var(--transition);
}

.phone-mockup:hover {
    transform: rotate(0) translateY(-10px);
}

.phone-frame {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #F5F7FA;
    display: flex;
    flex-direction: column;
    color: #333;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 25px;
    background: #000;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 10;
}

.phone-app-header {
    background: white;
    padding: 40px 20px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.phone-app-header i {
    color: var(--primary);
}

.phone-categories {
    display: flex;
    gap: 10px;
    padding: 15px;
    overflow-x: auto;
    scrollbar-width: none;
}

.phone-categories::-webkit-scrollbar {
    display: none;
}

.phone-cat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    min-width: 60px;
    padding: 10px;
    background: white;
    border-radius: 16px;
    font-size: 0.7rem;
    font-weight: 600;
}

.phone-cat i {
    font-size: 1.5rem;
    color: #888;
}

.phone-cat.active {
    background: var(--primary);
    color: white;
}

.phone-cat.active i {
    color: white;
}

.phone-products {
    flex: 1;
    padding: 0 15px 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.phone-product {
    display: flex;
    align-items: center;
    background: white;
    padding: 15px;
    border-radius: 16px;
    gap: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.phone-product-img {
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}

.phone-product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.phone-product-name {
    font-weight: 700;
    font-size: 0.9rem;
}

.phone-product-price {
    color: var(--primary);
    font-weight: 800;
    font-size: 0.8rem;
}

.phone-add-btn {
    width: 30px;
    height: 30px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.phone-cart-bar {
    background: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.05);
}

.phone-cart-bar span {
    font-weight: 700;
}

.phone-cart-bar button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 12px;
    font-weight: 700;
    display: flex;
    gap: 8px;
    align-items: center;
}

.floating-notification {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 12px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}

.floating-notification i {
    color: var(--primary);
    font-size: 1.2rem;
}

.notif-1 {
    top: 15%;
    right: -20px;
    animation-delay: 0s;
}

.notif-2 {
    bottom: 25%;
    right: -40px;
    animation-delay: 1.5s;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.notif-3 {
    top: 40%;
    left: -30px;
    animation-delay: 3s;
}

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

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.8rem;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 24px;
    height: 36px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ==================== PROBLEM SECTION ==================== */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.problem-card {
    background: var(--dark-surface);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 82, 82, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.problem-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 82, 82, 0.1);
    color: var(--danger);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.problem-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.problem-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.problem-conclusion {
    display: flex;
    justify-content: center;
}

.conclusion-box {
    background: linear-gradient(to right, rgba(255, 82, 82, 0.1), rgba(255, 152, 0, 0.1));
    border: 1px solid rgba(255, 82, 82, 0.2);
    padding: 20px 40px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.conclusion-box i {
    color: var(--danger);
    font-size: 1.5rem;
}

/* ==================== SOLUTION SECTION ==================== */
.solution-section {
    background: var(--dark-surface-2);
}

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

.solution-card {
    background: var(--dark-surface);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.solution-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.solution-card.featured {
    background: linear-gradient(145deg, var(--dark-surface), #2A3B2A);
    border-color: var(--primary);
    transform: scale(1.05);
}

.solution-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.solution-card-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--text-main);
    z-index: 2;
}

.solution-card.featured .solution-card-icon {
    color: var(--primary);
}

.solution-icon-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed var(--primary);
    animation: rotate 10s linear infinite;
    opacity: 0.3;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

.solution-card h3 {
    margin-bottom: 12px;
    font-size: 1.4rem;
}

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

.solution-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
    pointer-events: none;
}

.solution-card:hover .solution-card-glow {
    opacity: 1;
}

/* ==================== APP SHOWCASE SECTION ==================== */
.showcase-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.showcase-cat-card {
    background: var(--dark-surface);
    border: 1px solid var(--glass-border);
    padding: 30px 20px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.showcase-cat-card:hover {
    transform: translateY(-5px);
    background: var(--dark-surface-2);
}

.showcase-cat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--cat-color);
    box-shadow: 0 0 20px var(--cat-color);
}

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

.showcase-cat-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ==================== STEPS TIMELINE ==================== */
.steps-section {
    background: var(--dark-surface-2);
}

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

.step-item {
    background: var(--dark-surface);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
}

.step-number {
    position: absolute;
    top: -15px;
    right: -10px;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
}

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

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px var(--glow-primary);
}

.step-content h3 {
    margin-bottom: 10px;
}

.step-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==================== PILLARS SECTION ==================== */
.pillars-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.pillar-card {
    display: flex;
    align-items: center;
    background: var(--dark-surface);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.pillar-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    color: var(--primary);
}

.pillar-card h3 {
    width: 200px;
    font-size: 1.1rem;
    z-index: 2;
}

.pillar-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    position: relative;
}

.pillar-bar::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0; /* RTL alignment */
    height: 100%;
    width: var(--pillar-width);
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    border-radius: 4px;
    box-shadow: 0 0 10px var(--glow-primary);
    animation: fillBar 1.5s ease-out forwards;
}

@keyframes fillBar {
    from { width: 0; }
}

/* ==================== MARKETING IMPAC SECTION ==================== */
.marketing-section {
    background: var(--dark-surface-2);
}

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

.marketing-card {
    text-align: center;
    padding: 40px 20px;
}

.marketing-card-visual {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: var(--dark-surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--secondary);
    position: relative;
    border: 1px solid var(--glass-border);
}

.marketing-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--secondary);
    animation: ripple 2s infinite;
}

@keyframes ripple {
    0% { width: 100%; height: 100%; opacity: 1; }
    100% { width: 200%; height: 200%; opacity: 0; }
}

/* ==================== STATS SECTION ==================== */
.stats-hero-number {
    text-align: center;
    margin-bottom: 60px;
}

.stats-big-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 15px;
    font-weight: 900;
    margin-bottom: 10px;
    direction: ltr; /* Keeps numbers looking good */
}

.stats-prefix, .stats-to {
    font-size: 2rem;
    color: var(--text-muted);
}

.stats-number {
    font-size: clamp(4rem, 8vw, 6rem);
    background: linear-gradient(135deg, var(--primary), var(--info));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats-percent {
    font-size: 3rem;
    color: var(--primary);
}

.stats-big-desc {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-muted);
}

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

.stat-card {
    background: var(--dark-surface);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(33, 150, 243, 0.1);
    color: var(--info);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

/* ==================== DELIVERABLES SECTION ==================== */
.deliverables-section {
    background: var(--dark-surface-2);
}

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

.deliverable-card {
    background: var(--dark-surface);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

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

.featured-deliverable {
    border-color: var(--primary);
    background: linear-gradient(180deg, var(--dark-surface), #2A3B2A);
}

.deliverable-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    color: white;
}

.deliverable-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.deliverable-card h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.deliverable-card p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.deliverable-features {
    text-align: right;
}

.deliverable-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.deliverable-features i {
    color: var(--primary);
}

/* ==================== DASHBOARD SECTION ==================== */
.dashboard-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.dashboard-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.dashboard-features li {
    display: flex;
    gap: 20px;
}

.dash-feature-icon {
    width: 48px;
    height: 48px;
    background: var(--dark-surface-2);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.dash-feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.dash-feature-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.dashboard-visual {
    position: relative;
    padding-top: 40px; /* Space for the mockup top bar */
}

/* Dashboard Mockup */
.dashboard-mockup {
    background: var(--dark-surface);
    border-radius: 12px;
    border: 1px solid #444;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.dashboard-topbar {
    background: #333;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #444;
}

.dashboard-dots {
    display: flex;
    gap: 8px;
}

.dashboard-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff5f56;
}

.dashboard-dots span:nth-child(2) { background: #ffbd2e; }
.dashboard-dots span:nth-child(3) { background: #27c93f; }

.dashboard-url {
    background: #222;
    margin: 0 auto;
    padding: 4px 15px;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #888;
}

.dashboard-content {
    display: flex;
    height: 400px;
}

.dash-sidebar {
    width: 70px;
    background: #222;
    border-left: 1px solid #333; /* RTL */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 20px;
}

.dash-menu-item {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    cursor: pointer;
}

.dash-menu-item.active {
    background: var(--primary);
    color: white;
}

.dash-main {
    flex: 1;
    padding: 20px;
    background: #1a1a1a;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dash-stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.dash-stat-box {
    background: #222;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.dash-stat-label {
    font-size: 0.8rem;
    color: #888;
}

.dash-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.dash-orders-preview {
    background: #222;
    border-radius: 8px;
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dash-order-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #2a2a2a;
    border-radius: 6px;
    font-size: 0.9rem;
}

.dash-order-id { font-weight: 700; color: #aaa; }
.dash-order-name { color: white; }
.dash-order-status {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.dash-order-status.pending { background: rgba(255, 152, 0, 0.2); color: #FF9800; }
.dash-order-status.done { background: rgba(76, 175, 80, 0.2); color: #4CAF50; }


/* ==================== EXPANSION ROADMAP ==================== */
.expansion-section {
    background: var(--dark-surface-2);
}

.expansion-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.expansion-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    right: 30px; /* RTL */
    bottom: 0;
    width: 2px;
    background: var(--glass-border);
}

.expansion-stage {
    position: relative;
    padding-right: 80px; /* RTL */
    margin-bottom: 50px;
}

.expansion-stage:last-child {
    margin-bottom: 0;
}

.expansion-stage-marker {
    position: absolute;
    top: 0;
    right: 15px; /* RTL alignment with line */
    width: 32px;
    height: 32px;
    background: var(--dark-surface);
    border: 2px solid var(--text-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    z-index: 2;
}

.expansion-stage.current .expansion-stage-marker {
    border-color: var(--primary);
    background: var(--primary);
    color: white;
    box-shadow: 0 0 15px var(--glow-primary);
}

.expansion-stage-content {
    background: var(--dark-surface);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: var(--border-radius);
    position: relative;
}

.expansion-stage.current .expansion-stage-content {
    border-color: rgba(76, 175, 80, 0.3);
}

.expansion-label {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.expansion-stage-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.expansion-stage-content p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.expansion-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.active-status {
    background: rgba(76, 175, 80, 0.1);
    color: var(--success);
}

.coming-status {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}


/* ==================== FAQ SECTION ==================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--dark-surface);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: right; /* RTL */
    padding: 20px;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question i {
    transition: var(--transition);
    color: var(--primary);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: var(--text-muted);
}


/* ==================== CTA SECTION & CONTACT FORM ==================== */
.cta-section {
    background: linear-gradient(to bottom, var(--dark), var(--dark-surface-2));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.cta-orb-1 { width: 400px; height: 400px; background: var(--primary); top: -200px; left: -100px; }
.cta-orb-2 { width: 300px; height: 300px; background: var(--secondary); bottom: -150px; right: -50px; }

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 20px;
}

.cta-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.cta-benefit i {
    color: var(--primary);
}

.contact-form-wrapper {
    background: var(--dark-surface);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: var(--border-radius);
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: right;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    margin-bottom: 30px;
}

.form-group i {
    position: absolute;
    top: 15px;
    right: 15px;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: #111;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 15px 45px 15px 15px; /* RTL padding */
    color: white;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}

.form-group input:focus + i,
.form-group textarea:focus + i {
    color: var(--primary);
}

#form-submit {
    width: 100%;
}

.cta-note {
    margin-bottom: 15px;
    color: var(--text-muted);
}

/* ==================== FOOTER ==================== */
.footer {
    background: #0A0A0A;
    padding: 60px 0 30px;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.footer-brand i { color: var(--primary); }

.footer-desc {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.footer-links {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.footer-links a {
    width: 40px;
    height: 40px;
    background: var(--dark-surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-copy {
    color: #666;
    font-size: 0.9rem;
    border-top: 1px solid #222;
    padding-top: 20px;
    width: 100%;
}


/* ==================== FLOATING ELEMENTS ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px; /* RTL usually prefers interaction on right */
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    z-index: 100;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: white;
    color: #333;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px; /* Opposite side of whatsapp */
    width: 40px;
    height: 40px;
    background: var(--dark-surface);
    border: 1px solid var(--glass-border);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary);
    border-color: var(--primary);
}


/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 992px) {
    .dashboard-layout {
        grid-template-columns: 1fr;
    }
    
    .dashboard-visual {
        order: -1;
    }
}

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

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-badge {
        margin: 0 auto 20px;
    }

    .hero-cta-group, .hero-platforms {
        justify-content: center;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--dark-surface);
        flex-direction: column;
        justify-content: center;
        transition: 0.4s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .stats-big-number {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
}
