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

:root {
    --primary-dark: #111827;
    --secondary-dark: #1F2937;
    --primary-orange: #FF6B35;
    --orange-light: #FF885B;
    --orange-soft: rgba(255, 107, 53, 0.1);
    --light-gray: #F9FAFB;
    --medium-gray: #E5E7EB;
    --text-dark: #1F2937;
    --text-light: #4B5563;
    --white: #FFFFFF;
    --accent-blue: #2563EB;
    --accent-green: #10B981;
    --accent-purple: #8B5CF6;
    --accent-pink: #EC4899;
    --accent-cyan: #06B6D4;
    --accent-amber: #F59E0B;
    --card-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.08);
    --hover-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
}

html[lang="en"] body {
    font-family: 'Inter', 'Cairo', -apple-system, sans-serif;
}

/* ==================== HEADER ==================== */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--medium-gray);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    position: relative;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    z-index: 1001;
}

.systm-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 18px;
    color: var(--primary-dark);
}

.systm-logo-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 4px 10px rgba(255, 107, 53, 0.25));
}

.systm-logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.systm-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.systm-logo-text-main {
    font-size: 17px;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: var(--primary-dark);
}

.systm-logo-text-sub {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 600;
}

.nav-center {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
}

.nav-center a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-center a:hover,
.nav-center a.active {
    color: var(--primary-orange);
}

.nav-center a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 0;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 3px;
    transition: width 0.3s ease;
    margin: 0 auto;
}

.nav-center a:hover::after,
.nav-center a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Language Toggle Button */
.lang-toggle-btn {
    padding: 10px 18px;
    background: #F3F4F6;
    color: var(--primary-dark);
    border: 1px solid var(--medium-gray);
    border-radius: 10px;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
}

.lang-toggle-btn:hover {
    background: var(--primary-orange);
    color: white;
    border-color: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 107, 53, 0.3);
}

.btn-header {
    padding: 12px 26px;
    background: linear-gradient(135deg, var(--primary-orange), var(--orange-light));
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(255, 107, 53, 0.4);
}

/* Mobile Hamburger Menu Toggle */
.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 24px;
    color: var(--primary-dark);
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    transition: color 0.3s ease;
}

.mobile-nav-toggle:hover {
    color: var(--primary-orange);
}

@media (max-width: 1024px) {
    nav {
        padding: 0 24px;
    }

    .nav-center {
        gap: 24px;
    }

    .nav-center a {
        font-size: 14px;
    }
}

@media (max-width: 880px) {
    .mobile-nav-toggle {
        display: block;
    }

    .nav-center {
        position: fixed;
        top: 80px;
        right: 0;
        left: 0;
        background: white;
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid var(--medium-gray);
        transform: translateY(-150%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-center.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-center a {
        font-size: 16px;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 0 16px;
        height: 70px;
    }

    .nav-center {
        top: 70px;
    }

    .systm-logo-icon {
        width: 36px;
        height: 36px;
    }

    .systm-logo-text-main {
        font-size: 15px;
    }

    .systm-logo-text-sub {
        font-size: 10px;
    }

    .btn-header span {
        display: none;
    }

    .btn-header {
        padding: 10px 14px;
    }
}

/* ==================== HERO SECTION ==================== */
.hero {
    background: linear-gradient(135deg, #FFF8F5 0%, #FFFFFF 50%, #F4F7FF 100%);
    padding: 90px 40px 110px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 53, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.2);
    color: var(--primary-orange);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 25px;
}

.hero-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 15px 30px rgba(255, 107, 53, 0.3));
}

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

.hero-logo-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    margin-bottom: 24px;
    color: var(--primary-dark);
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--primary-orange), var(--orange-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-light);
    margin: 0 auto 40px;
    line-height: 1.8;
    max-width: 750px;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 70px;
}

.btn-primary {
    padding: 16px 44px;
    background: linear-gradient(135deg, var(--primary-orange), var(--orange-light));
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 35px rgba(255, 107, 53, 0.45);
}

.btn-secondary {
    padding: 16px 44px;
    background: white;
    color: var(--primary-dark);
    border: 2px solid var(--medium-gray);
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.btn-secondary:hover {
    border-color: var(--primary-dark);
    background: var(--primary-dark);
    color: white;
    transform: translateY(-3px);
}

/* Mockup visual */
.hero-mockup {
    position: relative;
    margin: 0 auto;
    max-width: 950px;
    animation: slideUp 0.8s ease-out;
}

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

.mockup-container {
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(229, 231, 235, 0.8);
}

.mockup-screen {
    background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%);
    border-radius: 14px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

html[dir="rtl"] .mockup-screen {
    text-align: right;
}
html[dir="ltr"] .mockup-screen {
    text-align: left;
}

.mockup-text h3 {
    font-size: 1.7rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
    font-weight: 800;
}

.mockup-features {
    list-style: none;
}

.mockup-features li {
    padding: 10px 0;
    color: var(--text-light);
    font-size: 1rem;
    display: flex;
    gap: 12px;
    align-items: center;
    font-weight: 600;
}

.mockup-features li i {
    color: var(--accent-green);
    font-size: 1.1rem;
    background: rgba(16, 185, 129, 0.1);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mockup-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.mockup-card {
    background: white;
    padding: 20px 16px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--medium-gray);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

.mockup-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 12px;
}

.mockup-card-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-light);
}

.mockup-card-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-dark);
    margin-top: 4px;
}

@media (max-width: 880px) {
    .hero {
        padding: 60px 20px 80px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .mockup-screen {
        grid-template-columns: 1fr;
        padding: 24px 18px;
        text-align: center !important;
    }

    .mockup-features li {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .mockup-visual {
        grid-template-columns: 1fr;
    }
}

/* ==================== ABOUT SECTION ==================== */
.about {
    padding: 100px 40px;
    background: var(--white);
    max-width: 1400px;
    margin: 0 auto;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-left {
    display: flex;
    justify-content: center;
}

.about-left-image {
    width: 100%;
    max-width: 440px;
    height: 420px;
    background: linear-gradient(135deg, #FFF8F5 0%, #F3F4F6 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--medium-gray);
    padding: 40px;
}

.about-left-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(255, 107, 53, 0.2));
}

.about-right h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--primary-dark);
    line-height: 1.3;
}

.about-right p {
    font-size: 1.08rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 35px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about-feature-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary-orange), var(--orange-light));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.25);
}

.about-feature-text h4 {
    font-weight: 800;
    font-size: 1.05rem;
    margin-bottom: 4px;
    color: var(--primary-dark);
}

.about-feature-text p {
    font-size: 0.92rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .about {
        padding: 70px 20px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-left-image {
        height: 300px;
    }
}

@media (max-width: 550px) {
    .about-features {
        grid-template-columns: 1fr;
    }
}

/* ==================== FEATURES SECTION ==================== */
.features {
    padding: 100px 40px;
    background: linear-gradient(180deg, #F9FAFB 0%, #FFFFFF 100%);
    border-top: 1px solid var(--medium-gray);
    border-bottom: 1px solid var(--medium-gray);
}

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

.features-header .section-tag {
    display: inline-block;
    background: var(--orange-soft);
    color: var(--primary-orange);
    font-weight: 800;
    font-size: 13px;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.features-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.features-header p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto;
    font-weight: 500;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(229, 231, 235, 0.8);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: transparent;
    transition: background 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
    border-color: rgba(255, 107, 53, 0.2);
}

.feature-card:hover::before {
    background: linear-gradient(90deg, var(--primary-orange), var(--orange-light));
}

.feature-icon-wrapper {
    width: 76px;
    height: 76px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 24px;
    transition: all 0.4s ease;
    position: relative;
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(-3deg);
}

.icon-orange {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-orange);
}
.feature-card:hover .icon-orange {
    background: var(--primary-orange);
    color: white;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

.icon-blue {
    background: rgba(37, 99, 235, 0.1);
    color: var(--accent-blue);
}
.feature-card:hover .icon-blue {
    background: var(--accent-blue);
    color: white;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}

.icon-green {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-green);
}
.feature-card:hover .icon-green {
    background: var(--accent-green);
    color: white;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}

.icon-purple {
    background: rgba(139, 92, 246, 0.1);
    color: var(--accent-purple);
}
.feature-card:hover .icon-purple {
    background: var(--accent-purple);
    color: white;
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.4);
}

.icon-amber {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent-amber);
}
.feature-card:hover .icon-amber {
    background: var(--accent-amber);
    color: white;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
}

.icon-cyan {
    background: rgba(6, 182, 212, 0.1);
    color: var(--accent-cyan);
}
.feature-card:hover .icon-cyan {
    background: var(--accent-cyan);
    color: white;
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.4);
}

.icon-pink {
    background: rgba(236, 72, 153, 0.1);
    color: var(--accent-pink);
}
.feature-card:hover .icon-pink {
    background: var(--accent-pink);
    color: white;
    box-shadow: 0 10px 25px rgba(236, 72, 153, 0.4);
}

.feature-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--primary-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.98rem;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 650px) {
    .features {
        padding: 70px 20px;
    }

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

    .feature-card {
        padding: 30px 20px;
    }
}

/* ==================== HOW IT WORKS ==================== */
.how-it-works {
    padding: 100px 40px;
    background: var(--white);
}

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

.how-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.how-header p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.how-container {
    max-width: 1400px;
    margin: 0 auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.step {
    text-align: center;
    position: relative;
    background: white;
    padding: 30px 20px;
    border-radius: 16px;
    border: 1px solid var(--medium-gray);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-orange), var(--orange-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 900;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.35);
}

.step h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.step p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .how-it-works {
        padding: 70px 20px;
    }

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

/* ==================== BENEFITS SECTION ==================== */
.benefits {
    padding: 100px 40px;
    background: linear-gradient(135deg, #F9FAFB 0%, #FFF8F5 100%);
    border-top: 1px solid var(--medium-gray);
}

.benefits-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.benefits-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.benefits-header p {
    font-size: 1.15rem;
    color: var(--text-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.benefit-item {
    background: white;
    padding: 30px;
    border-radius: 18px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--medium-gray);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
    border-color: rgba(255, 107, 53, 0.3);
}

.benefit-icon {
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, var(--primary-orange), var(--orange-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.benefit-text h4 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.benefit-text p {
    color: var(--text-light);
    font-size: 0.96rem;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .benefits {
        padding: 70px 20px;
    }

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

/* ==================== SYSTM GULF SECTION ==================== */
.systm-section {
    padding: 100px 40px;
    background: var(--white);
}

.systm-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.systm-left {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.systm-logo-large {
    width: 280px;
    height: 140px;
    background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    padding: 24px;
    border: 1px solid var(--medium-gray);
}

.systm-logo-large img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.systm-right h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--primary-dark);
    line-height: 1.3;
}

.systm-right p {
    font-size: 1.08rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.systm-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.systm-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.systm-feature-icon {
    color: var(--accent-green);
    background: rgba(16, 185, 129, 0.1);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 3px;
}

.systm-feature-text {
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .systm-section {
        padding: 70px 20px;
    }

    .systm-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 550px) {
    .systm-features {
        grid-template-columns: 1fr;
    }
}

/* ==================== SERVICES SECTION ==================== */
.services {
    padding: 100px 40px;
    background: linear-gradient(180deg, #F9FAFB 0%, #FFFFFF 100%);
    border-top: 1px solid var(--medium-gray);
}

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

.services-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.services-header p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: white;
    padding: 32px 28px;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--medium-gray);
    position: relative;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--hover-shadow);
    border-color: rgba(255, 107, 53, 0.4);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.service-card span {
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.service-card:hover span {
    gap: 12px;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services {
        padding: 70px 20px;
    }

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

/* ==================== CONTACT DETAILS SECTION ==================== */
.contact-details {
    padding: 100px 40px;
    background: var(--white);
}

.contact-details-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.contact-details-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-detail-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--medium-gray);
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.contact-detail-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-orange), var(--orange-light));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.contact-detail-card h4 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.contact-detail-card p, .contact-detail-card a {
    color: var(--text-light);
    font-size: 0.98rem;
    line-height: 1.7;
    text-decoration: none;
    font-weight: 600;
}

.contact-detail-card a:hover {
    color: var(--primary-orange);
}

/* Working Hours */
.working-hours-table {
    max-width: 550px;
    margin: 50px auto 0;
    background: white;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--medium-gray);
    overflow: hidden;
}

.working-hours-row {
    display: flex;
    justify-content: space-between;
    padding: 20px 30px;
    border-bottom: 1px solid var(--medium-gray);
    font-size: 1rem;
}

.working-hours-row:last-child {
    border-bottom: none;
}

.working-hours-row span:first-child {
    font-weight: 800;
    color: var(--primary-dark);
}

.working-hours-row span:last-child {
    color: var(--primary-orange);
    font-weight: 700;
}

@media (max-width: 992px) {
    .contact-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .contact-details {
        padding: 70px 20px;
    }

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

    .working-hours-row {
        padding: 16px 20px;
        font-size: 0.92rem;
    }
}

/* ==================== FINAL CTA SECTION ==================== */
.final-cta {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    color: white;
    padding: 100px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

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

.final-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.3;
}

.final-cta p {
    font-size: 1.15rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.8;
}

.cta-button {
    padding: 18px 56px;
    background: linear-gradient(135deg, var(--primary-orange), var(--orange-light));
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 800;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.45);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(255, 107, 53, 0.55);
}

@media (max-width: 600px) {
    .final-cta {
        padding: 70px 20px;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }
}

/* ==================== FOOTER ==================== */
footer {
    background: #0B0F17;
    color: white;
    padding: 80px 40px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-section h4 {
    font-size: 1.15rem;
    margin-bottom: 24px;
    color: var(--primary-orange);
    font-weight: 800;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-logo-text-main {
    font-size: 16px;
    font-weight: 900;
    color: white;
}

.footer-logo-text-sub {
    font-size: 11px;
    opacity: 0.7;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.footer-contact {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--primary-orange);
    font-size: 16px;
    margin-top: 4px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-orange);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-divider {
    display: inline-block;
    margin: 0 10px;
    opacity: 0.4;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    footer {
        padding: 50px 20px 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

/* ==================== DEMO MODAL STYLES ==================== */
.demo-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(17, 24, 39, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.demo-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.demo-modal-container {
    background: #FFFFFF;
    width: 100%;
    max-width: 650px;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    padding: 40px;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.demo-modal-overlay.active .demo-modal-container {
    transform: scale(1) translateY(0);
}

.demo-modal-close {
    position: absolute;
    top: 24px;
    left: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #F3F4F6;
    border: none;
    font-size: 20px;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

html[dir="ltr"] .demo-modal-close {
    left: auto;
    right: 24px;
}

.demo-modal-close:hover {
    background: var(--primary-orange);
    color: white;
}

.demo-modal-header {
    text-align: center;
    margin-bottom: 28px;
}

.demo-modal-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-orange), var(--orange-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    margin: 0 auto 16px;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.35);
}

.demo-modal-header h2 {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.demo-modal-header p {
    font-size: 0.98rem;
    color: var(--text-light);
    line-height: 1.6;
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.form-group label .required {
    color: #EF4444;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon i {
    position: absolute;
    color: #9CA3AF;
    font-size: 16px;
    pointer-events: none;
}

html[dir="rtl"] .input-with-icon i {
    right: 14px;
}

html[dir="ltr"] .input-with-icon i {
    left: 14px;
}

.input-with-icon input,
.input-with-icon select,
.form-group textarea {
    width: 100%;
    border: 1px solid var(--medium-gray);
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--primary-dark);
    background: #F9FAFB;
    transition: all 0.2s ease;
}

html[dir="rtl"] .input-with-icon input,
html[dir="rtl"] .input-with-icon select {
    padding: 12px 42px 12px 16px;
}

html[dir="ltr"] .input-with-icon input,
html[dir="ltr"] .input-with-icon select {
    padding: 12px 16px 12px 42px;
}

.form-group textarea {
    padding: 12px 16px;
    resize: vertical;
}

.input-with-icon input:focus,
.input-with-icon select:focus,
.form-group textarea:focus {
    outline: none;
    background: #FFFFFF;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
}

.submit-demo-btn {
    padding: 16px;
    background: linear-gradient(135deg, var(--primary-orange), var(--orange-light));
    color: white;
    border: none;
    border-radius: 14px;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.submit-demo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.45);
}

/* Success State */
.demo-success-view {
    text-align: center;
    padding: 20px 10px;
}

.success-icon-circle {
    width: 80px;
    height: 80px;
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid var(--accent-green);
    color: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 20px;
    animation: bounceIn 0.5s ease-out;
}

@keyframes bounceIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.demo-success-view h3 {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.demo-success-view p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto 24px;
}

@media (max-width: 600px) {
    .demo-modal-container {
        padding: 30px 20px;
        border-radius: 20px;
    }

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

    .form-group.full-width {
        grid-column: span 1;
    }
}
