/* ===== IBM Plex Sans Arabic Font Face ===== */
@font-face {
    font-family: 'IBM Plex Sans Arabic';
    src: url('IBM_Plex_Sans_Arabic/IBMPlexSansArabic-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'IBM Plex Sans Arabic';
    src: url('IBM_Plex_Sans_Arabic/IBMPlexSansArabic-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'IBM Plex Sans Arabic';
    src: url('IBM_Plex_Sans_Arabic/IBMPlexSansArabic-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'IBM Plex Sans Arabic';
    src: url('IBM_Plex_Sans_Arabic/IBMPlexSansArabic-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* ===== CSS Variables ===== */
:root {
    --primary: #000153;
    --primary-light: #1a1b7a;
    --primary-dark: #00003d;
    --secondary: #667eea;
    --accent: #11998e;
    --accent-light: #38ef7d;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;

    --text-dark: #0f172a;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-light: #94a3b8;

    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-gray: #f1f5f9;
    --bg-dark: #0f172a;

    --border-light: #e2e8f0;
    --border-medium: #cbd5e1;

    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;

    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'IBM Plex Sans Arabic', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-white);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

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

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

/* ===== Moyasar Floating Header ===== */
.header.floating-header {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    border-bottom: none;
    transition: var(--transition);
}

.nav-container {
    max-width: 1300px !important;
    padding: 0 40px !important;
}

.moyasar-nav {
    background: rgba(255, 255, 255, 0.15);
    /* زيادة الشفافية */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 8px 16px;
    height: 76px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header.scrolled .moyasar-nav {
    background: rgba(255, 255, 255, 0.6);
    /* شفافية أقل عند التمرير لضمان القراءة */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0 auto;
    /* To center it */
}

.nav-link {
    padding: 8px 16px !important;
    font-size: 15px;
    font-weight: 500;
    color: #444 !important;
    border-radius: 12px !important;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #000 !important;
    background: rgba(255, 255, 255, 0.5) !important;
}

.nav-link.active {
    color: var(--primary) !important;
    background: transparent !important;
    font-weight: 700;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-link {
    font-size: 15px;
    color: #666;
    margin-left: 10px;
}

.btn-moyasar {
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.login-btn {
    background: #f0f4ff;
    color: #5c67ff;
}

.login-btn:hover {
    background: #e5ecff;
    transform: translateY(-2px);
}

.signup-btn {
    background: #121104;
    color: #fff;
}

.signup-btn:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Update Logo size inside the pill */
.moyasar-nav .logo img {
    height: 38px;
    width: auto;
}

/* Mobile responsive fixes */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .header.floating-header {
        top: 10px;
    }

    .nav-container {
        padding: 0 15px !important;
    }
}


/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--bg-light);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    background: var(--bg-gray);
    border-color: var(--border-medium);
}

.btn-outline-nav {
    background: transparent;
    color: var(--text-primary);
    padding: 10px 20px;
}

.btn-outline-nav:hover {
    background: var(--bg-light);
}

.btn-white {
    background: #fff;
    color: var(--primary);
}

.btn-white:hover {
    background: var(--bg-light);
    transform: translateY(-1px);
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: var(--radius-lg);
}

/* ===== Mobile Menu ===== */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

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

.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

.mobile-menu-overlay.active {
    display: block;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    padding: 140px 0 100px;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
    overflow: hidden;
}

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

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(17, 153, 142, 0.1);
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.hero-title .highlight {
    display: block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 500px;
}

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

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-mockup {
    position: relative;
}

.mockup-screen {
    background: #fff;
    border-radius: var(--radius-2xl);
    padding: 24px;
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--border-light);
}

.screen-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 20px;
}

.screen-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.screen-header span {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.screen-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.mini-stat {
    background: var(--bg-light);
    padding: 16px;
    border-radius: var(--radius-lg);
}

.mini-stat-value {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.mini-stat.green .mini-stat-value {
    color: var(--success);
}

.mini-stat-label {
    font-size: 13px;
    color: var(--text-secondary);
}

.screen-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fund-mini-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.fund-mini-card:hover {
    background: var(--bg-gray);
}

.fund-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.fund-icon.blue {
    background: linear-gradient(135deg, var(--info), #60a5fa);
}

.fund-info {
    flex: 1;
}

.fund-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.fund-return {
    font-size: 12px;
    color: var(--text-secondary);
}

.fund-badge {
    padding: 4px 10px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.floating-card i {
    font-size: 18px;
}

.floating-card.card-1 {
    top: -10px;
    right: -20px;
    animation: float1 4s ease-in-out infinite;
}

.floating-card.card-1 i {
    color: var(--accent);
}

.floating-card.card-2 {
    bottom: 40px;
    left: -30px;
    animation: float2 5s ease-in-out infinite;
}

.floating-card.card-2 i {
    color: var(--success);
}

@keyframes float1 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

/* Hero Background Shapes */
.hero {
    position: relative;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.hero .container,
.hero-content,
.hero-visual {
    position: relative;
    z-index: 2;
}

/* ===== Trusted Section ===== */
.trusted-section {
    padding: 40px 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
}

.trusted-section .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trusted-text {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.trusted-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
}

.trusted-logo i {
    font-size: 24px;
    color: var(--primary);
}

/* CMA Logo Styling */
.trusted-logo.cma-logo {
    flex-direction: column;
}

.trusted-logo.cma-logo img {
    max-width: 320px;
    height: auto;
    transition: var(--transition);
}

.trusted-logo.cma-logo img:hover {
    transform: scale(1.02);
}

/* ===== Section Styles ===== */
.section-label {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0, 1, 83, 0.06);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.section-desc {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== About Section ===== */
.about-section {
    padding: 100px 0;
    background: var(--bg-white);
}

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

.about-text .section-title {
    text-align: right;
}

.about-text .section-desc {
    margin-bottom: 32px;
}

.about-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.point-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
}

.point-text strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.point-text span {
    font-size: 14px;
    color: var(--text-secondary);
}

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

.about-card.main-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
    padding: 40px;
    border-radius: var(--radius-2xl);
    max-width: 380px;
    box-shadow: var(--shadow-2xl);
}

.card-header-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
}

.about-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.card-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.card-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    opacity: 0.95;
}

.card-list li i {
    color: var(--accent-light);
    font-size: 14px;
}

/* ===== Services Section ===== */
.services-section {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.service-card {
    background: #fff;
    padding: 32px 24px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(17, 153, 142, 0.1), rgba(56, 239, 125, 0.1));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: var(--accent);
}

.service-icon.blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(96, 165, 250, 0.1));
    color: var(--info);
}

.service-icon.purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(167, 139, 250, 0.1));
    color: #8b5cf6;
}

.service-icon.orange {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 191, 36, 0.1));
    color: var(--warning);
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    flex: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition-fast);
}

.service-card:hover .service-link {
    gap: 10px;
}

/* ===== How It Works Section ===== */
.how-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.steps-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.steps-line {
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--border-light), var(--primary), var(--border-light));
    z-index: 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.step-card {
    text-align: center;
    padding: 20px 16px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.step-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: var(--primary);
    transition: var(--transition);
}

.step-card:hover .step-icon {
    background: rgba(0, 1, 83, 0.1);
    transform: scale(1.05);
}

.step-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.step-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ===== Features Section ===== */
.features-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.features-text .section-title {
    text-align: right;
}

.features-text .section-desc {
    margin-bottom: 40px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.feature-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.feature-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.feature-text p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Features Visual */
.features-visual {
    display: flex;
    justify-content: center;
}

.feature-card-stack {
    position: relative;
    width: 100%;
    max-width: 360px;
}

.feature-showcase-card {
    background: #fff;
    border-radius: var(--radius-2xl);
    padding: 28px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-light);
}

.feature-showcase-card.secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 280px;
    z-index: 2;
}

.showcase-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}

.showcase-header i {
    font-size: 20px;
    color: var(--primary);
}

.showcase-header span {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.risk-levels {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.risk-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.risk-label {
    width: 60px;
    font-size: 13px;
    color: var(--text-secondary);
}

.risk-bar {
    flex: 1;
    height: 8px;
    background: var(--bg-gray);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.risk-fill {
    height: 100%;
    border-radius: var(--radius-full);
    transition: width 1s ease;
}

.risk-item.low .risk-fill {
    background: var(--success);
}

.risk-item.medium .risk-fill {
    background: var(--warning);
}

.risk-item.high .risk-fill {
    background: var(--danger);
}

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

.value-label {
    display: block;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.value-amount {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.value-change {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-full);
}

/* ===== Audience Section - New Design ===== */
.audience-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.audience-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-title-alt {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.audience-desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.audience-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.audience-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.audience-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateX(-5px);
}

.audience-item-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.audience-item-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.audience-item-text p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Categories Card */
.categories-side {
    display: flex;
    justify-content: center;
}

.categories-card {
    background: #fff;
    border-radius: var(--radius-2xl);
    padding: 32px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-light);
    width: 100%;
    max-width: 420px;
}

.categories-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.categories-header i {
    font-size: 24px;
    color: var(--primary);
}

.categories-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.categories-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.category-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    cursor: pointer;
}

.category-row:hover {
    background: var(--bg-gray);
    transform: translateX(-5px);
}

.category-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.category-icon.realestate {
    background: rgba(245, 158, 11, 0.15);
    color: #d97706;
}

.category-icon.financial {
    background: rgba(59, 130, 246, 0.15);
    color: #2563eb;
}

.category-icon.tourism {
    background: rgba(236, 72, 153, 0.15);
    color: #db2777;
}

.category-icon.industrial {
    background: rgba(107, 114, 128, 0.15);
    color: #4b5563;
}

.category-info {
    display: flex;
    flex-direction: column;
}

.category-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.category-desc {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ===== Compliance Section ===== */
.compliance-section {
    padding: 80px 0;
    background: #e8f4f8;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    margin: 0 80px;
}

/* Decorative Circles Container */
.compliance-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Individual Circles */
.compliance-circles .circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(52, 86, 139, 0.15);
    background: transparent;
}

/* Circle 1 - Large top left */
.compliance-circles .circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -80px;
    border-width: 3px;
    border-color: rgba(52, 86, 139, 0.12);
}

/* Circle 2 - Medium top left inner */
.compliance-circles .circle-2 {
    width: 180px;
    height: 180px;
    top: -40px;
    left: 40px;
    border-color: rgba(52, 86, 139, 0.18);
}

/* Circle 3 - Small accent */
.compliance-circles .circle-3 {
    width: 80px;
    height: 80px;
    top: 60%;
    left: 5%;
    border-color: rgba(52, 86, 139, 0.2);
}

/* Circle 4 - Large bottom right */
.compliance-circles .circle-4 {
    width: 350px;
    height: 350px;
    bottom: -150px;
    right: -100px;
    border-width: 3px;
    border-color: rgba(52, 86, 139, 0.1);
}

/* Circle 5 - Medium right side */
.compliance-circles .circle-5 {
    width: 200px;
    height: 200px;
    top: 20%;
    right: -60px;
    border-color: rgba(52, 86, 139, 0.15);
}

/* Circle 6 - Small bottom */
.compliance-circles .circle-6 {
    width: 120px;
    height: 120px;
    bottom: 10%;
    left: 15%;
    border-color: rgba(52, 86, 139, 0.18);
}

/* Ensure container is above circles */
.compliance-section .container {
    position: relative;
    z-index: 2;
}

.compliance-card {
    display: flex;
    align-items: center;
    gap: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 50px;
    border-radius: var(--radius-2xl);
    color: #fff;
}

.compliance-icon {
    width: 100px;
    height: 100px;
    min-width: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.compliance-content h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
}

.compliance-content p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 24px;
    line-height: 1.6;
}

.compliance-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.compliance-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--bg-light);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.compliance-badge:hover {
    background: var(--bg-gray);
    border-color: var(--border-medium);
    transform: translateY(-2px);
}

.compliance-badge i {
    color: var(--accent);
    font-size: 16px;
}

/* Compliance Wrapper - Two Column Layout */
.compliance-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Regulatory Badge Container */
.regulatory-badge-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.badge-frame {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-2xl);
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: var(--transition-slow);
}

.badge-frame:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

/* Badge Glow Effect */
.badge-glow {
    position: absolute;
    inset: -10px;
    background: linear-gradient(135deg, rgba(56, 239, 125, 0.3), rgba(102, 126, 234, 0.3));
    border-radius: var(--radius-2xl);
    filter: blur(20px);
    opacity: 0.6;
    animation: glow-pulse 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes glow-pulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(0.95);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

/* Regulatory Badge Image */
.regulatory-badge {
    max-width: 280px;
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.2));
    transition: var(--transition);
}

.badge-frame:hover .regulatory-badge {
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.3));
    transform: scale(1.02);
}

/* Badge Label */
.badge-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-label i {
    font-size: 18px;
    color: var(--accent-light);
}

/* New Compliance Styles */
.compliance-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.compliance-text {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.compliance-header {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.compliance-icon-simple {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    box-shadow: var(--shadow-md);
}

.compliance-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.compliance-header p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.compliance-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-preview {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--border-light);
    transition: var(--transition-slow);
}

.dashboard-preview:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.25);
}

/* ===== موكاب الهاتف ===== */
.phone-mockup {
    position: relative;
    animation: floatPhone 6s ease-in-out infinite;
}

.phone-frame {
    width: 240px;
    height: 488px;
    background: linear-gradient(145deg, #1f2937, #111827);
    border-radius: 34px;
    padding: 9px;
    box-shadow:
        0 22px 45px rgba(0, 0, 0, 0.3),
        0 0 0 6px #0f172a,
        0 0 0 8px #1e293b,
        inset 0 0 15px rgba(0, 0, 0, 0.5);
    position: relative;
    margin: 0 auto;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 112px;
    height: 21px;
    background: #0f172a;
    border-radius: 0 0 15px 15px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 26px;
    overflow: hidden;
    position: relative;
}

.app-logo {
    position: absolute;
    top: 11px;
    left: 15px;
    width: 34px;
    height: auto;
    z-index: 20;
    opacity: 0.9;
}

.screen-content {
    width: 100%;
    height: calc(100% - 50px);
    position: relative;
    padding: 2rem 1.5rem;
}

.fund-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fund-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.fund-slide.prev {
    transform: translateX(-100%);
    opacity: 0;
}

.slide-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-bottom: 1.1rem;
    animation: pulseIcon 2s ease-in-out infinite;
}

.slide-icon.growth {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 8px 22px rgba(16, 185, 129, 0.4);
}

.slide-icon.income {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 0 8px 22px rgba(59, 130, 246, 0.4);
}

.slide-icon.balanced {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    box-shadow: 0 8px 22px rgba(139, 92, 246, 0.4);
}

.slide-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #000153;
    margin-bottom: 0.75rem;
    text-align: center;
}

.slide-value {
    font-size: 1.7rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 0.55rem;
}

.slide-performance {
    font-size: 1.1rem;
    font-weight: 700;
    padding: 0.4rem 1.1rem;
    border-radius: 19px;
    margin-bottom: 1.5rem;
}

.slide-performance.positive {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.slide-chart {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
    height: 90px;
    width: 100%;
    padding: 0 0.75rem;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, #000153, #3b82f6);
    border-radius: 8px 8px 0 0;
    animation: growBar 1s ease-out forwards;
    transform-origin: bottom;
    box-shadow: 0 -5px 15px rgba(0, 1, 83, 0.3);
}

.screen-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
    transition: all 0.3s ease;
}

.dot.active {
    width: 24px;
    border-radius: 4px;
    background: #000153;
}

@keyframes floatPhone {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-15px) rotate(-2deg);
    }

    50% {
        transform: translateY(0px) rotate(0deg);
    }

    75% {
        transform: translateY(-10px) rotate(2deg);
    }
}

@keyframes pulseIcon {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes growBar {
    from {
        transform: scaleY(0);
        opacity: 0;
    }

    to {
        transform: scaleY(1);
        opacity: 1;
    }
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.cta-section .btn-outline-white {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-medium);
}

.cta-section .btn-outline-white:hover {
    background: var(--bg-light);
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-dark);
    padding: 80px 0 40px;
    color: #fff;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

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

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}

.footer-bottom .disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 2;
        max-width: 500px;
        margin: 40px auto 0;
    }

    .hero-description {
        margin: 0 auto 32px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .steps-line {
        display: none;
    }

    .about-content,
    .features-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-text .section-title,
    .features-text .section-title {
        text-align: center;
    }

    .about-visual {
        order: -1;
    }

    .feature-showcase-card.secondary {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        margin-top: 20px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-links {
        justify-items: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 90px;
        right: 15px;
        left: 15px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px 20px;
        gap: 6px;
        border-radius: 20px;
        border: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        z-index: 999;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links .nav-link {
        display: block;
        width: 100%;
        padding: 14px 20px !important;
        font-size: 16px !important;
        font-weight: 600;
        color: var(--text-dark) !important;
        border-radius: 12px !important;
        text-align: center;
        transition: all 0.3s ease;
        background: transparent;
    }

    .nav-links .nav-link:hover,
    .nav-links .nav-link:active {
        background: var(--bg-light) !important;
        color: var(--primary) !important;
    }

    .nav-links .nav-link.active {
        background: rgba(0, 1, 83, 0.08) !important;
        color: var(--primary) !important;
    }

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

    .nav-actions {
        display: none;
    }

    /* Mobile menu buttons - display in nav-links on mobile */
    .moyasar-nav .nav-actions {
        display: none;
    }

    /* Mobile nav buttons styling */
    .mobile-nav-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        padding-top: 16px;
        margin-top: 8px;
        border-top: 1px solid var(--border-light);
    }

    .btn-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 14px 24px;
        font-size: 15px;
        font-weight: 600;
        border-radius: 14px;
        text-align: center;
        transition: all 0.3s ease;
    }

    .login-btn-mobile {
        background: #f0f4ff;
        color: #5c67ff;
    }

    .login-btn-mobile:hover {
        background: #e5ecff;
    }

    .signup-btn-mobile {
        background: #121104;
        color: #fff;
    }

    .signup-btn-mobile:hover {
        background: #000;
    }
}

/* Hide mobile buttons on desktop */
.mobile-nav-buttons {
    display: none;
}

@media (max-width: 768px) {
    .mobile-nav-buttons {
        display: flex !important;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-lg {
        width: 100%;
        max-width: 300px;
    }

    .hero-visual {
        display: block;
        max-width: 100%;
        margin: 40px auto 0;
    }

    .hero-mockup {
        position: relative;
        padding: 0 10px;
    }

    .mockup-screen {
        padding: 20px;
        border-radius: 20px;
    }

    .screen-header {
        padding-bottom: 16px;
        margin-bottom: 16px;
    }

    .screen-header span {
        font-size: 15px;
    }

    .screen-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .mini-stat {
        padding: 14px;
    }

    .mini-stat-value {
        font-size: 22px;
    }

    .mini-stat-label {
        font-size: 12px;
    }

    .fund-mini-card {
        padding: 14px;
    }

    .fund-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .fund-name {
        font-size: 14px;
    }

    .fund-return {
        font-size: 12px;
    }

    .fund-badge {
        font-size: 11px;
        padding: 4px 10px;
    }

    .floating-card {
        display: flex;
        padding: 10px 14px;
        font-size: 12px;
        border-radius: 12px;
    }

    .floating-card i {
        font-size: 14px;
    }

    .floating-card.card-1 {
        top: -10px;
        right: 10px;
    }

    .floating-card.card-2 {
        bottom: -10px;
        left: 10px;
    }

    .section-title {
        font-size: 30px;
    }

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

    /* Audience Section Responsive */
    .audience-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-title-alt {
        font-size: 28px;
        text-align: center;
    }

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

    .categories-card {
        max-width: 100%;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .compliance-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .compliance-header {
        flex-direction: column;
        text-align: center;
    }

    .compliance-badges {
        justify-content: center;
    }

    .dashboard-preview {
        max-width: 400px;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        text-align: center;
    }

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

    .footer-col h4 {
        text-align: center;
        font-size: 14px;
    }

    .footer-col ul {
        align-items: center;
    }

    .footer-col a {
        font-size: 12px;
    }

    /* CMA Logo Responsive */
    .trusted-logo.cma-logo img {
        max-width: 260px;
    }
}

/* ===== App Download Section ===== */
.app-download-section {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e8eef5 100%);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.app-download-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.app-download-info {
    flex: 1;
}

.app-download-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 8px 0;
}

.app-download-desc {
    font-size: 16px;
    color: var(--text-secondary);
    margin: 0;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.download-btn:hover::before {
    left: 100%;
}

.download-btn i {
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.download-btn:hover i {
    transform: scale(1.1);
}

.download-btn .btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.download-btn .btn-small {
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.download-btn .btn-large {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* زر App Store */
.download-btn.app-store {
    background: linear-gradient(135deg, #1f2937, #111827);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(31, 41, 55, 0.4);
}

.download-btn.app-store:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(31, 41, 55, 0.5);
}

/* زر Google Play */
.download-btn.google-play {
    background: linear-gradient(135deg, #1f2937, #111827);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(31, 41, 55, 0.4);
}

.download-btn.google-play:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(31, 41, 55, 0.5);
}

.download-btn.google-play i {
    background: linear-gradient(135deg, #34a853, #4285f4, #fbbc05, #ea4335);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* App Download Responsive */
@media (max-width: 768px) {
    .app-download-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .download-buttons {
        justify-content: center;
    }

    .download-btn {
        padding: 0.75rem 1.25rem;
    }

    .download-btn i {
        font-size: 1.75rem;
    }

    .download-btn .btn-large {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .app-download-section {
        padding: 30px 0;
    }

    .app-download-title {
        font-size: 20px;
    }

    .app-download-desc {
        font-size: 14px;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .download-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}


@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

}

/* Mobile: Center step cards text */
@media (max-width: 768px) {
    .step-card {
        text-align: center;
    }

    .step-card h4,
    .step-card p {
        text-align: center;
    }
}

/* Better mobile centering for all steps */
@media (max-width: 768px) {
    .steps-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .step-card {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .step-number {
        margin: 0 auto 16px;
    }

    .step-icon {
        margin: 0 auto 16px;
    }

    .step-card h4 {
        text-align: center;
        width: 100%;
    }

    .step-card p {
        text-align: center;
        width: 100%;
    }
}

/* Mobile: 2 columns for first 4 steps, centered 5th step */
@media (max-width: 768px) {
    .steps-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }

    .step-card {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
    }

    /* 5th card (تابع استثماراتك) takes full width and centered */
    .step-card:nth-child(5) {
        grid-column: 1 / -1;
        max-width: 280px !important;
        margin: 0 auto !important;
    }
}

@media (max-width: 480px) {
    .steps-grid {
        gap: 12px !important;
    }

    .step-card {
        padding: 16px 12px !important;
    }

    .step-number {
        width: 36px !important;
        height: 36px !important;
        font-size: 16px !important;
        margin-bottom: 12px !important;
    }

    .step-icon {
        width: 48px !important;
        height: 48px !important;
        font-size: 20px !important;
        margin-bottom: 12px !important;
    }

    .step-card h4 {
        font-size: 14px !important;
        margin-bottom: 6px !important;
    }

    .step-card p {
        font-size: 12px !important;
    }
}



/* End of CSS */

/* End of Styles */

/* ===== Dashboard Showcase Section ===== */
.dashboard-showcase-section {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
    overflow: hidden;
    position: relative;
}

.macbook-wrapper {
    max-width: 850px;
    margin: 20px auto 40px;
    perspective: 2000px;
}

.macbook-screen {
    background: #1d1d1f;
    border-radius: 12px 12px 0 0;
    padding: 1.8% 1.8% 0 1.8%;
    position: relative;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.25);
    transition: transform 0.5s ease;
}

.macbook-screen:hover {
    transform: translateY(-4px);
}

.macbook-camera {
    position: absolute;
    top: 0.8%;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #2a2a2a;
    border-radius: 50%;
    box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.8);
    z-index: 10;
}

.macbook-display {
    background: #000;
    border-radius: 3px 3px 0 0;
    overflow: hidden;
    width: 100%;
    position: relative;
    border: 1px solid #111;
}

.macbook-display img {
    width: 100%;
    display: block;
    height: auto;
}

.macbook-body {
    background: #e6e6e9;
    height: 14px;
    border-radius: 0 0 12px 12px;
    position: relative;
    margin-top: 0;
    box-shadow: inset 0 -3px 5px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

.macbook-opener {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #cfcfd3;
    border-radius: 0 0 5px 5px;
}

/* Dashboard Features Grid */
.dashboard-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 850px;
    margin: 0 auto;
}

.dash-feature {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.dash-feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.dash-feature i {
    font-size: 26px;
    color: var(--primary);
    margin-bottom: 14px;
    display: inline-block;
    padding: 12px;
    background: rgba(0, 1, 83, 0.05);
    border-radius: var(--radius-full);
}

.dash-feature h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.dash-feature p {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .dashboard-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .dash-feature {
        padding: 16px 10px;
    }

    .dash-feature i {
        font-size: 20px;
        padding: 10px;
        margin-bottom: 10px;
    }

    .dash-feature h4 {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .dash-feature p {
        font-size: 10px;
    }

    .macbook-screen {
        border-radius: 8px 8px 0 0;
    }

    .macbook-body {
        height: 10px;
        border-radius: 0 0 8px 8px;
    }

    .macbook-wrapper {
        max-width: 100%;
    }
}

/* Dashboard Background Decoration Bubbles */
.dashboard-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.dashboard-showcase-section .container {
    position: relative;
    z-index: 1;
}

.section-header,
.dashboard-features {
    position: relative;
    z-index: 2;
}

.macbook-wrapper {
    position: relative;
    z-index: 2;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(40px);
}

.bubble-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--secondary), var(--info));
    top: -150px;
    right: -150px;
    animation: float-bubble-1 8s ease-in-out infinite;
}

.bubble-2 {
    width: 550px;
    height: 550px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    bottom: -100px;
    left: -200px;
    animation: float-bubble-2 10s ease-in-out infinite;
}

.bubble-3 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    animation: float-bubble-3 12s ease-in-out infinite;
}

.bubble-4 {
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    bottom: -80px;
    right: -120px;
    animation: float-bubble-4 9s ease-in-out infinite;
}

@keyframes float-bubble-1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-20px, 30px) scale(1.1);
    }
}

@keyframes float-bubble-2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -20px) scale(1.15);
    }
}

@keyframes float-bubble-3 {

    0%,
    100% {
        transform: translateX(-50%) translateY(0) scale(1);
    }

    50% {
        transform: translateX(-50%) translateY(25px) scale(1.08);
    }
}

@keyframes float-bubble-4 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-15px, 15px) scale(1.12);
    }
}

/* Alborman Unique Hero Enhancements */
.hero {
    background: radial-gradient(circle at top right, rgba(30, 58, 138, 0.05) 0%, transparent 70%);
}

.hero-title .highlight {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cv-mini-card {
    background: #fff;
    padding: 12px;
    border-radius: 16px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.cv-mini-card:hover {
    transform: translateX(-10px);
    border-color: var(--primary);
}

.cv-mini-img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: cover;
}

.cv-mini-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
}

.cv-mini-role {
    font-size: 12px;
    color: var(--text-secondary);
}

.mockup-screen {
    border: 8px solid #f1f5f9;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .bubble {
        filter: blur(30px);
        opacity: 0.12;
    }

    .bubble-1 {
        width: 350px;
        height: 350px;
    }

    .bubble-2 {
        width: 320px;
        height: 320px;
    }

    .bubble-3 {
        width: 300px;
        height: 300px;
    }

    .bubble-4 {
        width: 280px;
        height: 280px;
    }
}

/* ===== Dashboard Showcase Section ===== */
.dashboard-showcase-section {
    padding: 80px 0;
    background: #f0f7f4;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    margin: 40px 80px;
}

/* Dashboard Decorative Circles Container */
.dashboard-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Dashboard Individual Circles - Different Pattern */
.dashboard-circles .circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(17, 153, 142, 0.15);
    background: transparent;
}

/* Circle 1 - Large top right */
.dashboard-circles .circle-1 {
    width: 280px;
    height: 280px;
    top: -80px;
    right: -60px;
    border-width: 3px;
    border-color: rgba(17, 153, 142, 0.12);
}

/* Circle 2 - Medium bottom left */
.dashboard-circles .circle-2 {
    width: 200px;
    height: 200px;
    bottom: -60px;
    left: -40px;
    border-color: rgba(17, 153, 142, 0.18);
}

/* Circle 3 - Small top left */
.dashboard-circles .circle-3 {
    width: 100px;
    height: 100px;
    top: 15%;
    left: 8%;
    border-color: rgba(17, 153, 142, 0.2);
}

/* Circle 4 - Medium center right */
.dashboard-circles .circle-4 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 5%;
    border-color: rgba(17, 153, 142, 0.15);
}

/* Circle 5 - Small bottom right */
.dashboard-circles .circle-5 {
    width: 70px;
    height: 70px;
    bottom: 20%;
    right: 15%;
    border-color: rgba(17, 153, 142, 0.22);
}

/* Ensure container is above circles */
.dashboard-showcase-section .container {
    position: relative;
    z-index: 2;
}

/* MacBook Wrapper Styles */
.macbook-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.macbook-screen {
    background: linear-gradient(145deg, #2d3748, #1a202c);
    border-radius: 16px 16px 0 0;
    padding: 12px 12px 0;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.2);
}

.macbook-camera {
    width: 8px;
    height: 8px;
    background: #4a5568;
    border-radius: 50%;
    margin: 0 auto 10px;
}

.macbook-display {
    background: #fff;
    border-radius: 4px 4px 0 0;
    overflow: hidden;
}

.macbook-display img {
    width: 100%;
    height: auto;
    display: block;
}

.macbook-body {
    background: linear-gradient(180deg, #e2e8f0, #cbd5e0);
    height: 18px;
    border-radius: 0 0 8px 8px;
    position: relative;
}

.macbook-opener {
    width: 80px;
    height: 5px;
    background: #a0aec0;
    border-radius: 0 0 4px 4px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
}

/* Dashboard Section Responsive */
@media (max-width: 1024px) {
    .dashboard-showcase-section {
        margin: 30px 40px;
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .dashboard-showcase-section {
        margin: 20px 15px;
        padding: 50px 0;
        border-radius: 20px;
    }

    .dashboard-circles .circle-1 {
        width: 180px;
        height: 180px;
    }

    .dashboard-circles .circle-2 {
        width: 140px;
        height: 140px;
    }
}

/* ===== Alborman Unique Premium Hero Section ===== */
.hero-premium {
    padding: 160px 0 100px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* New Dynamic Background Layer */
.hero-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(30, 58, 138, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 40%),
        linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    z-index: 0;
}

/* Subtle Grid Pattern Overlay */
.hero-premium .hero-split::before {
    content: '';
    position: absolute;
    inset: -100px;
    background-image:
        linear-gradient(rgba(30, 58, 138, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 58, 138, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black, transparent 80%);
    z-index: -1;
    pointer-events: none;
}

/* Animated Mesh Blobs */
.hero-premium::after {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.04) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
    filter: blur(80px);
    animation: meshFlow 15s infinite alternate ease-in-out;
    z-index: 0;
}

@keyframes meshFlow {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-100px, 50px) scale(1.2);
    }
}

.hero-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge-modern {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: rgba(30, 58, 138, 0.05);
    color: #1e3a8a;
    font-weight: 700;
    font-size: 14px;
    border-radius: 50px;
    margin-bottom: 25px;
    border: 1px solid rgba(30, 58, 138, 0.1);
}

.hero-main-title {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 25px;
}

.text-accent-glow {
    color: #1e3a8a;
    text-shadow: 0 0 20px rgba(30, 58, 138, 0.1);
}

.hero-subline {
    font-size: 19px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
}

.btn-hero-primary {
    background: #1e3a8a;
    color: #fff;
    padding: 16px 36px;
    border-radius: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.2);
}

.btn-hero-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.3);
    color: #fff;
}

.btn-hero-outline {
    background: transparent;
    color: #1e3a8a;
    padding: 16px 36px;
    border-radius: 16px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid #1e3a8a;
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background: #1e3a8a;
    color: #fff;
}

.hero-stats-row {
    display: flex;
    gap: 40px;
}

.stat-mini {
    display: flex;
    flex-direction: column;
}

/* ==========================================================================
   Features Section - Modern Bento/Grid Style
   ========================================================================== */
.features-premium {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-card-new {
    padding: 40px 30px;
    background: #f8fafc;
    border-radius: 24px;
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
}

.feature-card-new:hover {
    transform: translateY(-10px);
    background: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: #1e3a8a;
}

.f-icon {
    width: 70px;
    height: 70px;
    background: #fff;
    color: #1e3a8a;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 25px;
    box-shadow: 0 10px 20px rgba(30, 58, 138, 0.1);
    transition: all 0.3s ease;
}

.feature-card-new:hover .f-icon {
    background: #1e3a8a;
    color: #fff;
}

.feature-card-new h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}

.feature-card-new p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

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

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

    .features-premium {
        padding: 60px 0;
    }
}

.stat-num {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
}

.stat-lab {
    font-size: 14px;
    color: #64748b;
}

/* Visual Side */
.hero-visual-new {
    position: relative;
    padding: 40px;
}

.experience-card {
    background: #fff;
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 5;
    border: 1px solid #f1f5f9;
}

.experience-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f5f9;
}

.mini-logo {
    height: 30px;
}

.cv-stack {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cv-item-modern {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 18px;
    transition: all 0.3s ease;
}

.cv-item-modern img {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    object-fit: cover !important;
}

.cv-info h6 {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
}

.cv-info span {
    font-size: 11px;
    color: #64748b;
}

.cv-status {
    margin-right: auto;
    font-size: 10px;
    padding: 4px 10px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border-radius: 50px;
    font-weight: 700;
}

.float-widget {
    position: absolute;
    background: #fff;
    padding: 15px 25px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    font-weight: 700;
}

.w-1 {
    top: -10px;
    right: -20px;
    animation: floatAnim 4s infinite ease-in-out;
}

.w-1 i {
    color: #f59e0b;
}

.w-2 {
    bottom: 20px;
    left: -30px;
    animation: floatAnim 5s infinite ease-in-out alternate;
}

.w-2 i {
    color: #10b981;
}

@keyframes floatAnim {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.hero-circle-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

@media (max-width: 1024px) {
    .hero-split {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .hero-content {
        order: 1 !important;
    }

    .hero-visual-new {
        order: 2 !important;
        margin-top: 30px;
    }

    .hero-main-title {
        font-size: 38px;
    }

    .hero-subline {
        margin: 0 auto 25px;
        font-size: 16px;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .hero-stats-row {
        justify-content: center;
        gap: 30px;
        margin-top: 30px !important;
    }
}

@media (max-width: 768px) {
    .hero-premium {
        padding: 100px 0 40px;
    }

    .hero-main-title {
        font-size: 28px;
    }
}

/* ==========================================================================
   Process Section - Steps Style
   ========================================================================== */
.process-section {
    padding: 100px 0;
    background: #f8fafc;
}

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

.process-steps::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: rgba(30, 58, 138, 0.05);
    z-index: 1;
}

.step-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: #1e3a8a;
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.08);
}

.step-num {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #1e3a8a;
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.step-icon {
    font-size: 32px;
    color: #1e3a8a;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.step-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

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

    .process-steps::before {
        display: none;
    }
}

@media (max-width: 640px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* ===== Countries Section ===== */
.countries-section {
    padding: 100px 0;
    background: #fff;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.country-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 25px 15px;
    background: #f8fafc;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    text-align: center;
}

.country-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: #fff;
    border-color: var(--primary);
}

.country-card img {
    width: 70px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.country-card:hover img {
    transform: scale(1.1);
}

.country-card span {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

@media (max-width: 991px) {
    .countries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .countries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .countries-section {
        padding: 60px 0;
    }

    .country-card {
        padding: 20px 10px;
    }
}