﻿

        @font-face {
            font-family: 'ExpoArabic';
            src: url('ExpoArabic-Book (2).ttf') format('truetype'),
            url('ExpoArabic-Book (2).ttf') format('truetype');
            font-weight: 400;
        }

        @font-face {
            font-family: 'ExpoArabic';
            src: url('ExpoArabic-Book (2).ttf') format('truetype'),
            url('ExpoArabic-Book (2).ttf') format('truetype');
            font-weight: 500;
        }

        @font-face {
            font-family: 'ExpoArabic';
            src: url('ExpoArabic-Book (2).ttf') format('truetype'),
            url('ExpoArabic-Book (2).ttf') format('truetype');
            font-weight: 700;
        }


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

        :root {
            --primary-red: #ee4036;
            --dark-red: #be1e2d;
            --darker-red: #a70b1a;
            --light-bg: rgba(238, 64, 54, 0.05);
            --text-dark: #3e4063;
            --text-gray: #9599ab;
        }

        body {
            font-family: 'ExpoArabic',serif;
            background: #ffffff;
            color: #000000;
            overflow-x: hidden;
            line-height: 1.6;
        }

        .container {
            max-width: 1728px;
            margin: 0 auto;
            padding: 0 100px;
        }

        /* Header/Navigation */
        header {
            background: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: background 0.3s ease, box-shadow 0.3s ease;
        }

        header.scrolled {
            background: #fff3f3;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        }

        .nav-wrapper {
            max-width: 1728px;
            margin: 0 auto;
            padding: 0 187px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            width: 50px;
            height: 40px;
        }

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

        .nav-menu a {
            text-decoration: none;
            color: #000;
            font-size: 20px;
            font-weight: 400;
            transition: color 0.3s;
        }

        .nav-menu a:hover {
            color: var(--primary-red);
        }

        .nav-download-btn {
            background: var(--primary-red);
            color: white;
            padding: 10px 30px;
            border-radius: 100px;
            border: 1px solid var(--primary-red);
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            white-space: nowrap;
        }

        .nav-download-btn:hover {
            background: var(--dark-red);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
        }

        /* Hero Section */
        .hero-section {
            background: var(--light-bg);
            padding: 80px 0 100px;
            position: relative;
            overflow: hidden;
        }

        .hero-content-wrapper {
            max-width: 1728px;
            margin: 0 auto;
            padding: 0 187px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
              direction: ltr;
        }

        .hero-text {
            order: 2;
        }

        .hero-tag {
            color: var(--primary-red);
            font-size: 24px;
            margin-bottom: 20px;
            font-weight: 600;
            text-align: right;
            
        }

        .hero-title {
            font-size: 50px;
            font-weight: 800;
            line-height: 1.3;
            margin-bottom: 30px;
text-align: right;        }

        .hero-title .highlight {
            color: var(--primary-red);
        }

        .hero-description {
            font-size: 22px;
            line-height: 1.8;
            color: #000;
            margin-bottom: 50px;
            text-align: right;
        }

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

        .store-btn {
            background: var(--dark-red);
            border-radius: 12px;
            padding: 15px 25px;
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
            transition: all 0.3s;
            min-width: 267px;
        }

        .store-btn:hover {
            background: var(--primary-red);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(238, 64, 54, 0.3);
        }

        .store-btn img {
            width: 42px;
            height: 42px;
        }

        .store-btn-text {
            color: white;
            text-align: right;
        }

        .store-btn-text .small {
            font-size: 13px;
            display: block;
        }

        .store-btn-text .large {
            font-size: 22px;
            font-weight: 700;
            display: block;
        }

        .hero-phones {
            order: 1;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 700px;
        }

        .hero-phone-main {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 450px;
        }

        .hero-phone-bg {
            position: absolute;
            width: 120%;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            z-index: 1;
            opacity: 0.8;
        }

        /* Scrolling Marquee */
        .marquee-section {
            background: var(--dark-red);
            padding: 20px 0;
            overflow: hidden;
            transform: rotate(-1.5deg);
            direction: rtl;
            display: flex;
            justify-content: flex-end;
        }

        .marquee-track {
            display: flex;
            width: max-content;
            animation: scroll-rtl 40s linear infinite;
        }

        .marquee-content {
            display: flex;
            white-space: nowrap;
            flex: 0 0 auto;
        }

        .marquee-item {
            color: white;
            font-size: 40px;
            padding: 0 40px;
            font-weight: 600;
        }

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

        /* Why Choose Us – New Layout */
        .why-choose-us {
            padding: 100px 0;
            background: #FFF7F6;
            text-align: center;
        }

        .section-badge {
            background: var(--primary-red);
            color: white;
            padding: 8px 30px;
            border-radius: 50px;
            display: inline-block;
            font-size: 12px;
            letter-spacing: 1px;
            margin-bottom: 30px;
            text-transform: uppercase;
        }

        .section-title {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .section-subtitle {
            font-size: 20px;
            color: #666;
            max-width: 700px;
            margin: 0 auto 80px;
            line-height: 1.8;
        }

        .section-subtext {
            font-size: 15px;
            color: #444;
            max-width: 550px;
            margin: 0 auto 50px;
            line-height: 1.7;
        }

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

        .image-block {
            position: relative;
            display: flex;
            justify-content: center;
        }

        .image-block img {
            width: 100%;
            max-width: 340px;
            border-radius: 20px;
        }

        .support-box {
            position: absolute;
            top: -30px;
            right: 0;
            background: #fff;
            padding: 12px 22px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            text-align: center;
            font-size: 13px;
        }

        .support-box span {
            display: block;
            font-weight: 700;
            font-size: 13px;
            margin-bottom: 3px;
            color: var(--primary-red);
        }

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

        .feature-box {
            display: grid;
            grid-template-columns: auto 1fr auto;
            gap: 15px;
            align-items: center;
            padding: 20px 22px;
            background: #fff;
            border: 1px solid #FFE1DE;
            border-radius: 14px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.03);
        }

        .feature-box .icon img {
            width: 100%;
            height: 50px;
            filter: brightness(0) saturate(100%) invert(40%) sepia(74%) saturate(5338%) hue-rotate(343deg) brightness(95%) contrast(104%);
        }

        .feature-box h4 {
            font-size: 18px;
            color: var(--primary-red);
            margin-bottom: 5px;
            text-align: right;
        }

        .feature-box p {
            font-size: 14px;
            color: #444;
            line-height: 1.6;
            text-align: right;
        }

        .feature-box .num {
            font-size: 18px;
            color: #fff;
            background: var(--primary-red);
            width: 32px;
            height: 32px;
            display: grid;
            place-items: center;
            border-radius: 50%;
        }

        /* Store Creation Section */
        .store-section {
            padding: 100px 0;
            background: var(--light-bg);
        }

        .store-content-wrapper {
            max-width: 1350px;
            margin: 0 auto;
            padding: 80px;
            background: var(--light-bg);
            border-radius: 35px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            align-items: center;
        }

        .store-text {
            order: 2;
        }

        .store-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 14px;
            text-align: right;
            font-size: 18px;
            color: #333;
        }

        .store-list i {
            color: #ee4036;
            margin-left: 10px;
            font-size: 18px;
            width: 22px;
            text-align: center;
        }

        .store-images {
            order: 1;
            position: relative;
            display: flex;
            justify-content: center;
        }

        .store-phone-main {
            width: 100%;
            max-width: 315px;
            border-radius: 20px;
        }

        .store-floating-card {
            position: absolute;
            right: -80px;
            top: 50%;
            transform: translateY(-50%);
            border-radius: 20px;
            padding: 20px;
            width: 254px;
        }

        .floating-product-card {
            position: absolute;
            left: -50px;
            top: 30%;
            background: var(--primary-red);
            border-radius: 20px;
            width: 88px;
            height: 89px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* How It Works */
        .how-section {
            padding: 100px;
            background: var(--light-bg);
            margin: 100px;
            border-radius: 104px;
            text-align: center;
        }

        .steps-wrapper {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 80px;
            margin-top: 80px;
            position: relative;
        }

        .how-image-section {
            padding: 0;
        }

        .how-image {
               width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    margin-top: -400px;
    margin-bottom: -145px;
        }

        .how-image-inner {
            max-width: 900px;
            margin: 0 auto;
        }

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


        .step-item {
            position: relative;
        }

        .step-item:not(:last-child)::after {
            content: "";
            position: absolute;
            top: 24px;
            left: -180px;
            width: 200px;
            height: 80px;
            background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='80' viewBox='0 0 200 80'><path d='M5 60 C 60 5, 140 5, 195 60' fill='none' stroke='%23ee4036' stroke-width='2' stroke-dasharray='4 6' stroke-linecap='round'/></svg>") no-repeat center;
            background-size: contain;
            opacity: 0.8;
        }

        .step-item:nth-child(2)::after {
            transform: scaleY(-1);
            transform-origin: center;
        }

        .step-icon-wrapper {
            width: 120px;
            height: 120px;
            border: 2px dashed var(--text-gray);
            border-radius: 21px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            position: relative;
        }

        .step-icon-inner {
            width: 98px;
            height: 98px;
            background: var(--primary-red);
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .step-icon-inner img {
            width: 50px;
            height: 50px;
          align-items: center;
        }

        .step-number-badge {
            position: absolute;
            top: -22px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary-red);
            border: 3px solid white;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 18px;
            font-family: cursive;
        }

        .step-title {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .step-tag {
            font-size: 18px;
            color: #666;
            margin-bottom: 15px;
        }

        .step-description {
            font-size: 18px;
            color: #666;
            line-height: 1.5;
        }

        .cta-btn {
            background: var(--primary-red);
            color: white;
            padding: 15px 60px;
            border-radius: 25px;
            border: 1px solid var(--primary-red);
            font-size: 16px;
            font-weight: 700;
            margin-top: 60px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .cta-btn:hover {
            background: var(--dark-red);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(238, 64, 54, 0.3);
        }

        /* About Section */
        .about-section {
            padding: 120px 0 140px;
            background: #FFF7F6;
            text-align: center;
        }

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

        .about-section .section-badge {
            text-transform: none;
            letter-spacing: 0;
            font-size: 12px;
            display: inline-block;
        }

        .about-title {
            font-size: 40px;
            font-weight: 800;
            margin: 14px 0 0;
            color: #111;
        }

        .about-title .highlight {
            color: var(--primary-red);
        }

        .about-layout {
            display: grid;
            grid-template-columns: minmax(260px, 1fr) 300px minmax(260px, 1fr);
            gap: 40px;
            align-items: center;
            direction: ltr;
        }

        .about-left {
            text-align: right;
            justify-self: start;
        }

        .about-text {
            font-size: 16px;
            color: #444;
            line-height: 1.9;
            max-width: 360px;
            margin: 0 0 24px;
        }

        .about-video-card {
            background: #ee4036;
            border-radius: 20px;
            width: 220px;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 0 16px;
        }

        .about-video-btn {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-red);
            font-size: 18px;
        }

        .about-cta {
            display: inline-block;
            background: var(--primary-red);
            color: #fff;
            padding: 10px 26px;
            border-radius: 999px;
            font-size: 14px;
            text-decoration: none;
        }

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

        .about-phone img {
            max-width: 260px;
            width: 100%;
            height: auto;
        }

        .about-metrics {
            position: relative;
            width: 320px;
            height: 320px;
            margin: 0 auto;
            justify-self: end;
        }

        .about-metric {
            width: 110px;
            height: 110px;
            border: 1px solid var(--primary-red);
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--primary-red);
            font-weight: 800;
            background: #ffffff;
        }

        .about-metric .metric-number {
            font-size: 20px;
            font-weight: 800;
            line-height: 1;
        }

        .about-metric small {
            font-size: 12px;
            color: #444;
            font-weight: 500;
            margin-top: 6px;
        }

        .about-metric.top {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        .about-metric.left {
            position: absolute;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
        }

        .about-metric.right {
            position: absolute;
            top: 50%;
            right: 0;
            transform: translateY(-50%);
        }

        .about-metric.bottom {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        /* App Screens Section */
        .screens-section {
            padding: 100px 0;
            text-align: center;
            overflow: hidden;
        }

        .screens-carousel {
            display: flex;
            gap: 30px;
            justify-content: center;
            align-items: center;
            margin-top: 60px;
            flex-wrap: nowrap;
            overflow-x: auto;
            padding: 20px 0;
        }

        .screen-card {
            border-radius: 20px;
            overflow: hidden;
            flex-shrink: 0;
            transition: transform 0.3s;
        }

        .screen-card:hover {
            transform: scale(1.05);
        }

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

        .screen-card.size-small {
            width: 184px;
        }

        .screen-card.size-medium {
            width: 202px;
        }

        .screen-card.size-large {
            width: 253px;
        }

        .screen-card.size-xlarge {
            width: 289px;
        }

        /* Download Section */
.download-section {
    padding: 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
}

.download-header {
    text-align: center;
    max-width: 720px;
}

        .download-wrapper {
            position: relative;
            width: 100%;
            max-width: 680px;
            height: 400px;
        }

        .download-phone {
            position: absolute;
            border-radius: 30px;
        }

        .download-phone.left {
            left: 0;
            top: 50%;
            transform: translateY(-50%) rotate(-5deg);
            width: 320px;
            z-index: 2;
        }

        .download-phone.right {
            right: 0;
            top: 50%;
            transform: translateY(-50%) rotate(3deg);
            width: 288px;
            z-index: 1;
        }

        /* Support Banner */
        .support-banner {
            background: #faaf40;
            border-radius: 20px;
            padding: 50px 70px;
            margin: 0 100px 80px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            position: relative;
            overflow: hidden;
        }

        .support-icon {
            width: 62px;
            height: 62px;
            background: white;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .support-icon img {
            width: 36px;
            height: 36px;
        }

        .support-text h3 {
            font-size: 35px;
            color: white;
            margin-bottom: 10px;
        }

        .support-text p {
            font-size: 18px;
            color: white;
        }

        .support-actions {
            display: flex;
            gap: 15px;
            flex-shrink: 0;
        }

        .support-btn {
            padding: 18px 35px;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
            display: flex;
            align-items: center;
            gap: 10px;
            white-space: nowrap;
        }

        .support-btn.primary {
            background: var(--dark-red);
            color: white;
        }

        .support-btn.secondary {
            background: white;
            color: #212529;
        }

        .support-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        }

        /* Footer */
        .site-footer {
            background: linear-gradient(135deg, #b5171e 0%, #c41c23 55%, #e3472e 100%);
            color: white;
            padding: 160px 0 0;
            margin-top: -140px;
            position: relative;
            overflow: hidden;
        }

        .footer-support {
            max-width: 1140px;
            margin: 0 auto 40px;
            padding: 0 100px;
            position: relative;
            z-index: 2;
        }

        .support-card {
            background: #f6a540;
            border-radius: 22px;
            padding: 26px 36px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            position: relative;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
            min-height: 220px;
        }

        .support-text h3 {
            font-size: 28px;
            color: #fff;
            margin-bottom: 8px;
        }

        .support-text p {
            font-size: 16px;
            color: #fff;
            opacity: 0.95;
        }

        .support-actions {
            display: flex;
            gap: 12px;
            flex-shrink: 0;
        }

        .support-btn {
            padding: 14px 22px;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .support-btn.primary {
            background: #b2171f;
            color: #fff;
        }

        .support-btn.secondary {
            background: #fff;
            color: #1a1a1a;
        }

        .support-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .support-info {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .support-icon {
            width: 58px;
            height: 58px;
            border-radius: 18px;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            position: relative;
        }

        .support-icon img {
            width: 28px;
            height: 28px;
            object-fit: contain;
            display: block;
        }

        .btn-icon {
            width: 16px;
            height: 16px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .btn-icon img {
            width: 16px;
            height: 16px;
            object-fit: contain;
            display: block;
        }

        .btn-icon.icon-email {
            background-color: #b2171f;
            -webkit-mask: url("photos/Vector2.png") center / contain no-repeat;
            mask: url("photos/Vector2.png") center / contain no-repeat;
        }

        .sparkle {
            position: absolute;
            width: 10px;
            height: 10px;
            background: rgba(255, 255, 255, 0.7);
            border-radius: 2px;
            transform: rotate(45deg);
        }

        .sparkle-1 {
            top: 18px;
            right: 120px;
        }

        .sparkle-2 {
            bottom: 16px;
            left: 80px;
        }

        .footer-content {
            max-width: 1728px;
            margin: 0 auto;
            padding: 0 100px 60px;
            display: grid;
            grid-template-columns: 1.2fr 0.9fr 0.9fr 1.6fr;
            grid-template-areas: "subscribe social links brand";
            gap: 60px;
            align-items: start;
            direction: ltr;
        }

        .footer-column {
            align-self: start;
        }

        .footer-logo {
            width: 100px;
            height: 100px;
            margin-bottom: 24px;
        }

        .footer-description {
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 28px;
            opacity: 0.9;
        }

        .footer-store-buttons {
            display: flex;
            gap: 12px;
            flex-wrap:nowrap;
            direction: ltr;
        }

        .footer-store {
            background: #fff;
            border-radius: 12px;
            color: #b2171f;
            transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
            padding: 10px 16px;
            justify-content: center;
            text-align: center;
        }

        .footer-store .store-btn-text {
            color: #b2171f;
        }

        .footer-store img {
            filter: brightness(0) saturate(100%) invert(16%) sepia(78%) saturate(5046%) hue-rotate(350deg) brightness(90%) contrast(110%);
            width: 22px;
            height: 22px;
        }

        .footer-store:hover {
            background: #f8dada;
            box-shadow: 0 10px 24px rgba(138, 20, 29, 0.25);
            transform: translateY(-2px);
        }

        .footer-column h4 {
            font-size: 18px;
            margin-bottom: 22px;
            padding-right: 12px;
            border-right: 3px solid rgba(255, 255, 255, 0.85);
            display: inline-block;
        }

        .footer-links,
        .footer-social {
            list-style: none;
        }

        .footer-links li,
        .footer-social li {
            margin-bottom: 16px;
        }

        .footer-links a,
        .footer-social a {
            color: #fff;
            text-decoration: none;
            font-size: 15px;
            opacity: 0.9;
            transition: opacity 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .footer-links a:hover,
        .footer-social a:hover {
            opacity: 1;
        }

        .social-icon {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }

        .footer-subscribe p {
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 16px;
            opacity: 0.9;
        }

        .subscribe-form {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
        }

        .subscribe-form input {
            flex: 1;
            padding: 14px 16px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.35);
            background: rgba(90, 10, 15, 0.6);
            color: white;
            font-size: 14px;
        }

        .subscribe-form input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .subscribe-form button {
            width: 46px;
            height: 46px;
            border-radius: 12px;
            border: none;
            background: #b2171f;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .footer-subscribe small {
            font-size: 12px;
            opacity: 0.8;
        }

        .subscribe-status {
            display: block;
            margin-top: 8px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.9);
            min-height: 18px;
        }

        .subscribe-frame {
            width: 0;
            height: 0;
            border: 0;
            position: absolute;
            opacity: 0;
            pointer-events: none;
        }

        .footer-bottom {
            background: rgba(0, 0, 0, 0.2);
            padding: 26px 0;
            text-align: center;
        }

        .footer-bottom p {
            font-size: 14px;
            opacity: 0.9;
        }

        /* Responsive Design */
        @media (max-width: 1400px) {
            .container,
            .nav-wrapper,
            .hero-content-wrapper,
            .footer-content {
                padding-left: 50px;
                padding-right: 50px;
            }
        }

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

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

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

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

        @media (max-width: 992px) {
            .nav-menu {
                display: none;
            }

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

            .hero-content-wrapper {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .hero-text {
                order: 1;
                text-align: center;
            }

            .hero-phones {
                order: 2;
            }

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

            .store-content-wrapper {
                grid-template-columns: 1fr;
                padding: 50px 30px;
            }

            .store-text {
                order: 1;
                text-align: center;
            }

            .store-images {
                order: 2;
            }

            .steps-wrapper {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .step-item::after {
                display: none;
            }

            .support-banner,
            .support-card {
                flex-direction: column;
                text-align: center;
            }

            .support-actions {
                flex-direction: column;
                width: 100%;
            }

            .support-btn {
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .container,
            .nav-wrapper,
            .hero-content-wrapper,
            .footer-content {
                padding-left: 20px;
                padding-right: 20px;
            }

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

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

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

            .about-layout {
                grid-template-columns: 1fr;
                text-align: center;
            }

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

            .about-text {
                margin: 0 auto 24px;
            }

            .about-metrics {
                margin-top: 30px;
            }

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

            .store-floating-card,
            .floating-product-card {
                display: none;
            }

            .how-section {
                padding: 50px 20px;
                margin: 50px 20px;
                border-radius: 40px;
            }

            .footer-support {
                padding: 0 20px;
                margin-bottom: 30px;
            }

            .support-card {
                padding: 24px;
            }

            .screens-carousel {
                justify-content: flex-start;
            }

            .marquee-item {
                font-size: 28px;
                padding: 0 20px;
            }

            .hero-buttons {
                flex-direction: column;
                width: 100%;
            }

            .store-btn {
                width: 100%;
                justify-content: center;
            }

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

            .image-block img {
                max-width: 280px;
            }

            .feature-box {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .feature-box .num {
                margin: 10px auto 0;
            }
        }

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

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

            .nav-wrapper {
                padding: 0 20px;
            }

            .logo {
                width: 96px;
                height: 80px;
            }
        }
    
        .footer-brand {
            grid-area: brand;
            direction: rtl;
            text-align: right;
        }

        .footer-links-col {
            grid-area: links;
            direction: rtl;
            text-align: right;
        }

        .footer-social-col {
            grid-area: social;
            direction: rtl;
            text-align: right;
        }

        .footer-subscribe {
            grid-area: subscribe;
            direction: rtl;
            text-align: right;
        }
