        :root {
            --brand-primary: #1E88E5;
            --neutral-white: #FFFFFF;
            --neutral-100: #E5E5E5;
            --neutral-200: #F4F4F4;
            --neutral-300: #F5FBFF;
            --neutral-350: #F8F8F8;
            --neutral-400: #333333;
            --neutral-450: #777777;
            --neutral-500: #000000;
        }

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

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
            overflow-x: hidden;
        }

        body {
            font-family: 'IBM Plex Sans Arabic', sans-serif;
            background-color: var(--neutral-white);
            color: var(--neutral-400);
            direction: rtl;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-rendering: optimizeLegibility;
        }

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

        button {
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }

        a {
            -webkit-tap-highlight-color: transparent;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 80px;
        }

        /* Section Animations */
        .animate-fade-up {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .animate-fade-up.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .animate-fade-right {
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 0.5s ease-out, transform 0.5s ease-out;
        }

        .animate-fade-right.animated {
            opacity: 1;
            transform: translateX(0);
        }

        .animate-fade-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 0.5s ease-out, transform 0.5s ease-out;
        }

        .animate-fade-left.animated {
            opacity: 1;
            transform: translateX(0);
        }

        .animate-scale {
            opacity: 0;
            transform: scale(0.9);
            transition: opacity 0.5s ease-out, transform 0.5s ease-out;
        }

        .animate-scale.animated {
            opacity: 1;
            transform: scale(1);
        }

        .animate-stagger {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.4s ease-out, transform 0.4s ease-out;
        }

        .animate-stagger.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* Stagger delays */
        .stagger-1 { transition-delay: 0.1s; }
        .stagger-2 { transition-delay: 0.2s; }
        .stagger-3 { transition-delay: 0.3s; }
        .stagger-4 { transition-delay: 0.4s; }
        .stagger-5 { transition-delay: 0.5s; }
        .stagger-6 { transition-delay: 0.6s; }
        .stagger-7 { transition-delay: 0.7s; }
        .stagger-8 { transition-delay: 0.8s; }

        /* Hero animation - starts on page load */
        .animate-fade-in {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease-out forwards;
            animation-delay: 0.3s;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Navigation */
        .nav-bar {
            position: absolute;
            top: 26px;
            left: 50%;
            transform: translateX(-50%);
            width: 1280px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 100;
        }

        .logo {
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 32px;
            color: var(--neutral-white);
        }

        .social-icons {
            display: flex;
            gap: 9.333px;
        }

        .social-icons img {
            width: 28px;
            height: 28px;
        }

        .btn-primary {
            background-color: var(--brand-primary);
            color: var(--neutral-white);
            border: none;
            border-radius: 100px;
            padding: 8px 24px;
            font-size: 18px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background-color: #1976D2;
            transform: translateY(-2px);
        }

        .btn-black {
            background-color: var(--neutral-500);
            color: var(--neutral-white);
            border: none;
            border-radius: 100px;
            padding: 8px 24px;
            font-size: 24px;
            font-weight: 500;
            cursor: pointer;
            height: 56px;
            transition: all 0.3s ease;
        }

        .btn-black:hover {
            background-color: #222;
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 851px;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(30, 136, 229, 0.1) 0%, rgba(0, 0, 0, 0.9) 100%);
            z-index: 2;
            pointer-events: none;
        }

        .hero-content .nav-bar {
            position: relative; 
            z-index: 3;  
        }

        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 56px;
        }

        .hero h1 {
            font-size: 80px;
            font-weight: 500;
            color: var(--neutral-white);
            line-height: 1;
        }

        .hero p {
            font-size: 28px;
            color: var(--neutral-white);
            line-height: 1.5;
        }

        .download-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
        }

        .download-section span {
            font-size: 18px;
            color: var(--neutral-white);
        }

        .store-buttons {
            display: flex;
            gap: 11.2px;
        }


        .store-btn {
            width: 168px;
            height: 56px;
            background: var(--neutral-white);
            border-radius: 8.4px;
            display: flex;
            align-items: center;
            padding: 11.2px;
            padding-left: 0;
            gap: 10px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .store-btn:hover {
            transform: scale(1.05);
        }

        .store-btn img {
            height: 33.6px;
        }

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

        .store-btn-content small {
            font-size: 12.6px;
            color: var(--neutral-500);
        }

        .store-btn-content span {
            font-size: 16px;
            font-weight: 600;
            color: var(--neutral-500);
        }

        .store-buttons a{
            text-decoration: none;
            text-align: left;
        }

        /* About Section */
        .about-section {
            background-color: var(--neutral-350);
            padding: 124px 100px;
            height: 344px;
        }

        .about-content {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            gap: 144px;
            align-items: flex-start;
        }

        .about-content h2 {
            font-size: 40px;
            font-weight: 700;
            color: var(--neutral-500);
            white-space: nowrap;
            text-align: right;
        }

        .about-content p {
            font-size: 32px;
            color: var(--neutral-400);
            line-height: 1.5;
            text-align: right;
            flex: 1;
        }

        /* Problems Section */
        .problems-section {
            padding: 80px 100px;        
        }

        .problems-section h2 {
            font-size: 38px;
            font-weight: 700;
            color: var(--neutral-500);
            text-align: center;
            margin-bottom: 64px;
        }

        .problems-wrapper {
            display: flex;
            flex-direction: row-reverse;
            gap: 48px;
            align-items: flex-start;
        }

        .problems-images {
            position: relative;
            width: 440px;
            height: 500px;
            flex-shrink: 0;
        }

        .problems-images img {
            position: absolute;
            width: 284px;
            border-radius: 16px;
            box-shadow: -54px 256px 149.9px -54.126px rgba(0, 0, 0, 0.16);
        }

        .problems-images img:first-child {
            top: 7.4rem;
            right: -6rem;
            z-index: 2;
            transform: rotate(-8.99deg);
            width: 100%;
        }

        .problems-images img:last-child {
            top: 16rem;
            left: 9rem;
            z-index: 1;
            transform: rotate(172deg) scaleY(-1) scaleX(-1);
            width: 100%;

        
        }

        .problems-grid{
            flex:1;
            display:grid;
            grid-template-columns:repeat(2,minmax(280px,1fr));
            gap:56px 48px;
        }

        .problem-card {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 16px;
            text-align: right;
        }

        .problem-icon {
            width: 48px;
            height: 48px;
            background-color: var(--brand-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .problem-icon svg {
            width: 27px;
            height: 27px;
            fill: white;
        }

        .problem-card h3 {
            font-size: 24px;
            font-weight: 500;
            color: var(--neutral-400);
            text-align: right;
            margin: 0;
            width: 100%;
        }

        .problem-card p {
            font-size: 18px;
            color: var(--neutral-450);
            line-height: 1.5;
            text-align: right;
            margin: 0;
            width: 60%;
        }

        /* CTA Banner */
        .cta-banner {
            background-color: var(--neutral-500);
            padding: 80px;
            text-align: center;
            position: relative;
            bottom: 2rem;
            z-index: -1;
        }

        .cta-banner h2 {
            font-size: 40px;
            font-weight: 700;
            color: var(--neutral-white);
            line-height: 1.5;
            margin-bottom: 32px;
        }

        .cta-banner .btn-primary {
            height: 56px;
            font-size: 24px;
            padding: 8px 24px;
        }

        /* Services Section */
        .services-section {
            padding: 80px 100px;
        }

        .services-section h2 {
            font-size: 38px;
            font-weight: 700;
            color: var(--neutral-500);
            text-align: center;
            margin-bottom: 77px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 298px);
            gap: 16px;
            justify-content: center;
            margin-bottom: 40px;
            direction: ltr;
        }

        .service-card {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 16px;
            direction: rtl;
        }

        .service-icon-box {
            width: 100%;
            height: 209px;
            border-radius: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .service-icon-box.blue { background-color: #ECF2FF; }
        .service-icon-box.yellow { background-color: #FFF4DC; }
        .service-icon-box.teal { background-color: #D7EAEB; }
        .service-icon-box.light-blue { background-color: #C9E2F9; }

        .service-icon-box img {
            max-width: 80%;
            max-height: 80%;
            object-fit: contain;
            position: relative;
            top:1.7rem;
        }

        .service-card h3 {
            font-size: 24px;
            font-weight: 500;
            color: var(--neutral-400);
            text-align: right ;
            width: 100%;
        }

        .service-card p {
            font-size: 18px;
            color: var(--neutral-450);
            line-height: 1.5;
            text-align: right;
        }

        .services-cta {
            display: flex;
            justify-content: center;
        }

        /* Why Choose Section */
        .why-section {
            background-color: var(--neutral-300);
            padding: 80px 85px;
            min-height: 687px;
        }

        .why-content {
            display: flex;
            flex-direction: row-reverse;
            justify-content: space-between;
            align-items: center;
            max-width: 1270px;
            margin: 0 auto;
        }

        .why-images {
            position: relative;
            display: grid;
        }

        .why-images img:first-child {
            width: 448px;
            height: 598px;
            border-radius: 24px;
            object-fit: cover;
        }

        .why-images img:last-child {
            position: absolute;
            width: 275px;
            height: 325px;
            border-radius: 24px;
            object-fit: cover;
            right: -130px;
            top: 136px;
        }

        .why-text {
            width: 493px;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 40px;
        }

        .why-text h2 {
            font-size: 38px;
            font-weight: 700;
            color: var(--neutral-500);
            text-align: right;
            width: 100%;
        }

        .why-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .why-list li {
            font-size: 18px;
            line-height: 1.5;
            text-align: right;
            position: relative;
            padding-right: 27px;
        }

        .why-list li::before {
            content: '•';
            position: absolute;
            right: 0;
            color: var(--brand-primary);
            font-size: 24px;
        }

        .why-list li strong {
            color: var(--brand-primary);
            font-weight: 700;
        }

        /* Follow Section */
        .follow-section {
            padding: 80px 85px;
        }

        .follow-content {
            display: flex;
            flex-direction: row-reverse;
            justify-content: space-between;
            align-items: right;
            max-width: 1269px;
            margin: 0 auto;
        }

        .follow-text {
            width: 505px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 40px;
        }

        .follow-text h2 {
            font-size: 38px;
            font-weight: 700;
            color: var(--neutral-500);
            text-align: right;
            line-height: 1.3;
        }

        .follow-features {
            display: flex;
            flex-direction: column;
            gap: 16px;
            width: 100%;
        }

        .follow-features p {
            font-size: 18px;
            color: var(--neutral-400);
            line-height: 1.5;
            text-align: right;
        }

        .follow-download {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 16px;
        }

        .follow-download span{
            display:block;
            width:100%;
            text-align:right;
        }
        .store-buttons-dark .store-btn {
            background: var(--neutral-500);
        }

        .store-buttons-dark .store-btn-content small,
        .store-buttons-dark .store-btn-content span {
            color: var(--neutral-white);
        }

        .follow-image {
            width: 609px;
            height: 361px;
        }

        .follow-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        /* Partners Section */
        .partners-section {
            background-color: var(--neutral-350);
            padding: 80px 0;
            min-height: 546px;
            overflow: hidden;
        }

        .partners-section h2 {
            font-size: 38px;
            font-weight: 700;
            color: var(--neutral-500);
            text-align: center;
            margin-bottom: 64px;
        }

        .partners-logos {
            display: flex;
            flex-direction: row-reverse;
            align-items: center;
            gap: 56px;
            width: max-content;
            animation: marqueeRight 12s linear infinite;
        }

        .partners-logos img {
            max-height: 165px;
            object-fit: contain;
            flex-shrink: 0;
            padding: 0 2rem;
        }

        @keyframes marqueeRight {
            from {
                transform: translateX(100%);
            }

            to {
                transform: translateX(-100%);
            }
        }

        /* FAQ Section */
        .faq-section {
            padding: 80px 100px;

        }

        .faq-header {
            display: flex;
            flex-direction: row-reverse;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 48px;
        }

        .faq-header h1 {
            font-size: 38px;
            font-weight: 700;
            color: var(--neutral-500);
            text-align: right;
            width: 449px;
            line-height: 1.3;
            position: relative;
            right:4rem;
            width: 100%;
        }

        .faq-desc {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 24px;
            position: relative;
            left:6rem;
        }

        .faq-desc p {
            font-size: 18px;
            color: var(--neutral-450);
            line-height: 1.5;
            text-align: right;
            width: 657px;
        }

        .faq-arrows{
            display:flex;
            width:100%;
            gap:16px;
            justify-content:flex-start; 
        }

        .faq-arrows button {
            width: 48px;
            height: 48px;
            border: none;
            background: transparent;
            cursor: pointer;
            font-size: 24px;
            color: var(--brand-primary);
        }

        .faq-cards {
            display: flex;
            flex-direction: row-reverse;
            gap: 16px;
            overflow-x: hidden;
            /* padding-bottom: 20px; */
            padding-top: 20px;
            flex-direction: row;
        }

        .faq-card {
            flex-shrink: 0;
            width: 325px;
            height: 526px;
            background-color: var(--neutral-200);
            border-radius: 32px;
            padding: 59px 39px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            align-items: flex-end;
            transition: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .faq-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #1E88E5 0%, #1565C0 100%);
            opacity: 0;
            transition: none;
            border-radius: 32px;
        }

        .faq-card:hover::before {
            opacity: 1;
        }

        .faq-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 25px 50px rgba(30, 136, 229, 0.3);
        }

        .faq-card .question {
            font-size: 30px;
            font-weight: 500;
            color: var(--neutral-500);
            line-height: 1.5;
            text-align: right;
            position: relative;
            z-index: 2;
            transition: none;
        }

        .faq-card:hover .question {
            color: white;
            /* margin-bottom: 20px; */
        }

        .faq-card .answer {
            font-size: 18px;
            font-weight: 400;
            color: white;
            line-height: 1.6;
            text-align: right;
            position: relative;
            z-index: 2;
            opacity: 0;
            max-height: 0;
            overflow: hidden;
            transition: none;
        }

        .faq-card:hover .answer {
            opacity: 1;
            max-height: 200px;
        }

        /* Auto-active state for FAQ cards animation */
        .faq-card.auto-active::before {
            opacity: 1;
        }

        .faq-card.auto-active {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 25px 50px rgba(30, 136, 229, 0.3);
        }

        .faq-card.auto-active .question {
            color: white;
            margin-bottom: 20px;
        }

        .faq-card.auto-active .answer {
            opacity: 1;
            max-height: 200px;
        }

        /* Footer */
        .footer {
            position: relative;
            background-image: url(/images/footer.png);
            min-height: 410px;
        }

        .footer::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(30, 136, 229, 0.05) 0%, transparent 100%);
            opacity: 0.04;
        }

        .footer-content {
            position: relative;
            z-index: 10;
            max-width: 1278px;
            margin: 0 auto;
            padding: 48px 80px;
            display: flex;
            flex-direction: row-reverse;
            justify-content: space-between;
            align-items: flex-start;
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 16px;
        }

        .footer-brand .logo {
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 45px;
            color: var(--brand-primary);
            width: 100%;
            display: flex;
            justify-content: flex-start;
        }

        .footer-brand p {
            font-size: 18px;
            color: var(--neutral-white);
            line-height: 1.5;
            text-align: right;
            width: 500px;
        }

        .footer-contact {
            display: flex;
            flex-direction: column;
            gap: 8px;
            align-items: start;
            margin-left: auto;
        }

        .footer-contact-item {
            display: flex;
            align-items: center;
            gap: 8px;
            justify-content: flex-start;
        }

        .footer-contact-item span {
            font-size: 16px;
            color: var(--neutral-100);
        }

        .footer-contact-item svg {
            width: 24px;
            height: 24px;
            fill: #f8f8f8;
            display: flex;
            justify-content: flex-start;
        }

        .footer-newsletter {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 32px;
            width: 441px;
        }

        .footer-newsletter p {
            font-size: 18px;
            color: var(--neutral-white);
            line-height: 1.5;
            text-align: right;
        }

        .newsletter-form {
            display: flex;
            gap: 8px;
            height: 56px;
            position: relative;
            left: 2rem;
        }

        .newsletter-form input {
            width: 311px;
            height: 56px;
            border: 1px solid var(--neutral-white);
            border-radius: 16px;
            padding: 8px 18px;
            font-size: 14px;
            text-align: right;
            direction: rtl;
        }

        .newsletter-form input::placeholder {
            color: var(--neutral-450);
        }

        .newsletter-form button {
            background-color: var(--brand-primary);
            color: var(--neutral-white);
            border: none;
            border-radius: 16px;
            padding: 16px 32px;
            font-size: 18px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-form button:hover {
            background-color: #1976D2;
        }

        .footer-bottom {
            position: relative;
            z-index: 10;
            border-top: 1px solid #7c7c7c;
            max-width: 1280px;
            margin: 0 auto;
            padding: 24px 8px;
            display: flex;
            flex-direction: row-reverse;
            justify-content: space-between;
            align-items: center;
        }

        .footer-copyright {
            font-size: 16px;
            color: var(--neutral-white);
            display: flex;
            gap: 4px;
        }

        .footer-copyright span {
            display: flex;
            width: 100%;
            flex-direction: row;
            justify-content: flex-start;
        }

        .footer-social {
            display: flex;
            gap: 8px;
        }

        .footer-social img {
            width: 24px;
            height: 24px;
        }

        /* Sticky Nav */
        .sticky-nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(230, 230, 230, 0.8);
            backdrop-filter: blur(10px);
            padding: 18px 32px;
            border-radius: 16px;
            margin: 20px 100px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            transform: translateY(-100%);
            transition: all 0.3s ease;
        }

        .sticky-nav.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .sticky-nav .logo {
            font-size: 24px;
            color: var(--brand-primary);
        }

        .sticky-nav .btn-primary {
            height: 40px;
            font-size: 16px;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-fade-in {
            animation: fadeInUp 0.8s ease forwards;
        }

        /* Responsive */
        
        /* Large Desktop (1400px and above) */
        @media (min-width: 1400px) {
            .container {
                max-width: 1320px;
            }
        }

        /* Desktop (1200px - 1399px) */
        @media (max-width: 1399px) {
            .container {
                padding: 0 40px;
            }
            
            .nav-bar {
                width: 95%;
            }
            
            .services-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 12px;
            }
            
            .problems-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Laptop (1024px - 1199px) */
        @media (max-width: 1199px) {
            .hero h1 {
                font-size: 60px;
            }
            
            .hero p {
                font-size: 22px;
            }
            
            .about-content {
                gap: 80px;
            }
            
            .about-content p {
                font-size: 26px;
            }
            
            .why-images img:first-child {
                width: 380px;
                height: 500px;
            }
            
            .why-images img:last-child {
                width: 230px;
                height: 270px;
                right: -100px;
            }
            
            .why-text, .follow-text {
                width: 450px;
            }
            
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .faq-desc p {
                width: 500px;
            }
        }

        /* Tablet Landscape (992px - 1023px) */
        @media (max-width: 1023px) {
            .hero {
                height: 700px;
            }
            
            .hero h1 {
                font-size: 48px;
            }
            
            .hero p {
                font-size: 20px;
                padding: 0 20px;
            }
            
            .about-section {
                height: auto;
                padding: 80px 60px;
            }
            
            .about-content {
                flex-direction: column;
                gap: 32px;
                align-items: flex-end;
            }
            
            .about-content h2 {
                font-size: 32px;
            }
            
            .about-content p {
                font-size: 24px;
            }
            
            .problems-section {
                padding: 60px 40px;
            }
            
            .problems-wrapper {
                flex-direction: column;
                align-items: center;
            }
            
            .problems-images {
                width: 350px;
                height: 350px;
                position: relative;
                margin-bottom: 40px;
            }
            
            .problems-images img {
                width: 200px;
            }
            
            .problems-images img:first-child {
                top: 0;
                right: 50px;
            }
            
            .problems-images img:last-child {
                bottom: 0;
                left: 50px;
            }
            
            .problems-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 32px;
                width: 100%;
            }
            
            .why-section {
                padding: 60px 40px;
            }
            
            .why-content {
                flex-direction: column;
                gap: 40px;
            }
            
            .why-images {
                width: 100%;
                display: flex;
                justify-content: center;
            }
            
            .why-images img:last-child {
                right: auto;
                left: 50%;
                transform: translateX(20%);
            }
            
            .why-text, .follow-text {
                width: 100%;
                align-items: center;
            }
            
            .why-text h2 {
                text-align: center;
            }
            
            .why-text .btn-primary {
                width: 50%;
                min-width: 200px;
                justify-content: center;
            }
            
            .follow-section {
                padding: 60px 40px;
            }
            
            .follow-content {
                flex-direction: column;
                gap: 40px;
                align-items: center;
            }
            
            .follow-text {
                align-items: center;
                text-align: center;
            }
            
            .follow-image {
                width: 100%;
                max-width: 500px;
            }
            
            .services-section {
                padding: 60px 40px;
            }
            
            .faq-section {
                padding: 60px 40px;
            }
            
            .faq-header {
                flex-direction: column;
                gap: 24px;
            }
            
            .faq-header h2 {
                width: 100%;
            }
            
            .faq-desc {
                width: 100%;
            }
            
            .faq-desc p {
                width: 100%;
            }
            
            .footer-content {
                flex-direction: column;
                gap: 40px;
                padding: 48px 40px;
            }
            
            .footer-brand, .footer-newsletter {
                width: 100%;
            }
            
            .footer-brand p {
                width: 100%;
            }
        }

        /* Tablet Portrait (768px - 991px) */
        @media (max-width: 991px) {
            .nav-bar {
                width: 90%;
                padding: 0 20px;
            }
            
            .logo {
                font-size: 24px;
            }
            
            .social-icons {
                display: none;
            }
            
            .hero h1 {
                font-size: 42px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .hero-content {
                gap: 40px;
                padding: 0 20px;
            }
            
            .problems-section h2,
            .services-section h2,
            .partners-section h2,
            .why-text h2,
            .follow-text h2,
            .faq-header h2 {
                font-size: 32px;
            }
            
            .problem-card h3,
            .service-card h3 {
                font-size: 20px;
            }
            
            .problem-card p,
            .service-card p {
                font-size: 16px;
            }
            
            .cta-banner h2 {
                font-size: 32px;
            }
            
            .why-list li {
                font-size: 16px;
            }
            
            .partners-logos {
                flex-wrap: wrap;
                gap: 30px;
            }
            
            .partners-logos img {
                max-height: 100px;
            }
        }

        /* Mobile Landscape / Large Phone (576px - 767px) */
        @media (max-width: 767px) {
            .nav-bar {
                flex-direction: column;
                gap: 16px;
                width: 95%;
            }
            
            .sticky-nav {
                margin: 10px 20px;
                padding: 12px 20px;
            }
            
            .hero {
                height: 600px;
            }
            
            .hero h1 {
                font-size: 32px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            .hero-content {
                gap: 32px;
            }
            
            .store-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .store-btn {
                width: 180px;
            }
            
            .about-section {
                padding: 60px 30px;
            }
            
            .about-content {
                align-items: center;
            }
            
            .about-content h2 {
                font-size: 28px;
                text-align: center;
            }
            
            .about-content p {
                font-size: 20px;
                text-align: center;
            }
            
            .problems-section {
                padding: 50px 30px;
            }
            
            .problems-section h2 {
                font-size: 28px;
                margin-bottom: 40px;
            }
            
            .problems-images {
                width: 280px;
                height: 280px;
                position: relative;
                margin-bottom: 30px;
            }
            
            .problems-images img {
                width: 160px;
            }
            
            .problems-images img:first-child {
                top: 0;
                right: 30px;
            }
            
            .problems-images img:last-child {
                bottom: 0;
                left: 30px;
            }
            
            .problems-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            
            .problem-card {
                align-items: flex-start;
                text-align: right;
            }
            
            .problem-card h3,
            .problem-card p {
                text-align: right;
            }
            
            .cta-banner {
                padding: 50px 30px;
            }
            
            .cta-banner h2 {
                font-size: 26px;
            }
            
            .services-section {
                padding: 50px 30px;
            }
            
            .services-section h2 {
                font-size: 28px;
                margin-bottom: 50px;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            
            .service-card {
                align-items: center;
            }
            
            .service-card h3,
            .service-card p {
                text-align: center;
            }
            
            .service-icon-box {
                height: 180px;
            }
            
            .why-section {
                padding: 50px 30px;
            }
            
            .why-text {
                align-items: center;
            }
            
            .why-text h2 {
                font-size: 28px;
                text-align: center;
            }
            
            .why-text .btn-primary {
                width: 50%;
                min-width: 200px;
                justify-content: center;
            }
            
            .why-images img:first-child {
                width: 280px;
                height: 370px;
            }
            
            .why-images img:last-child {
                width: 180px;
                height: 210px;
                top: 100px;
            }
            
            .why-list li {
                font-size: 15px;
            }
            
            .follow-section {
                padding: 50px 30px;
            }
            
            .follow-text h2 {
                font-size: 28px;
            }
            
            .follow-features p {
                font-size: 16px;
            }
            
            .follow-download {
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                width: 100%;
            }
            
            .follow-download span {
                text-align: center;
            }
            
            .follow-download .store-buttons {
                align-items: center;
            }
            
            .follow-features {
                align-items: center;
            }
            
            .follow-features p {
                text-align: center;
            }
            
            .follow-text h2 {
                text-align: center;
            }
            
            .follow-image {
                height: auto;
            }
            
            .follow-image img {
                width: 100%;
            }
            
            .partners-section {
                padding: 50px 20px;
                min-height: auto;
            }
            
            .partners-section h2 {
                font-size: 28px;
                margin-bottom: 40px;
            }
            
            .partners-logos {
                gap: 20px;
            }
            
            .partners-logos img {
                max-height: 80px;
                max-width: 120px;
            }
            
            .faq-section {
                padding: 50px 30px;
            }
            
            .faq-header h2 {
                font-size: 28px;
            }
            
            .faq-desc p {
                font-size: 16px;
            }
            
            .faq-card {
                width: 280px;
                height: 400px;
                padding: 40px 25px;
            }
            
            .faq-card .question {
                font-size: 24px;
            }
            
            .faq-card .answer {
                font-size: 14px;
            }
            
            .footer {
                min-height: auto;
            }
            
            .footer-content {
                padding: 40px 30px;
            }
            
            .footer-brand .logo {
                font-size: 36px;
            }
            
            .footer-brand p {
                font-size: 16px;
            }
            
            .newsletter-form {
                flex-direction: column;
                width: 100%;
            }
            
            .newsletter-form input {
                width: 100%;
            }
            
            .newsletter-form button {
                width: 100%;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                padding: 20px;
            }
        }

        /* Mobile Portrait (480px - 575px) */
        @media (max-width: 575px) {
            .hero {
                height: 550px;
            }
            
            .hero h1 {
                font-size: 28px;
            }
            
            .hero p {
                font-size: 14px;
            }
            
            .btn-primary {
                font-size: 14px;
                padding: 8px 20px;
            }
            
            .btn-black {
                font-size: 18px;
                height: 48px;
            }
            
            .about-section {
                padding: 40px 20px;
            }
            
            .about-content h2 {
                font-size: 24px;
            }
            
            .about-content p {
                font-size: 18px;
            }
            
            .problems-section {
                padding: 40px 20px;
            }
            
            .problems-section h2 {
                font-size: 24px;
            }
            
            .problems-images {
                width: 220px;
                height: 220px;
                position: relative;
                margin-bottom: 25px;
            }
            
            .problems-images img {
                width: 130px;
            }
            
            .problems-images img:first-child {
                top: 0;
                right: 20px;
            }
            
            .problems-images img:last-child {
                bottom: 0;
                left: 20px;
            }
            
            .problem-icon {
                width: 40px;
                height: 40px;
            }
            
            .problem-icon svg {
                width: 22px;
                height: 22px;
            }
            
            .problem-card h3 {
                font-size: 18px;
            }
            
            .problem-card p {
                font-size: 14px;
            }
            
            .cta-banner {
                padding: 40px 20px;
            }
            
            .cta-banner h2 {
                font-size: 22px;
            }
            
            .services-section {
                padding: 40px 20px;
            }
            
            .services-section h2 {
                font-size: 24px;
                margin-bottom: 40px;
            }
            
            .service-icon-box {
                height: 150px;
            }
            
            .service-card h3 {
                font-size: 18px;
            }
            
            .service-card p {
                font-size: 14px;
            }
            
            .why-section {
                padding: 40px 20px;
            }
            
            .why-images img:first-child {
                width: 220px;
                height: 290px;
            }
            
            .why-images img:last-child {
                width: 140px;
                height: 165px;
                top: 80px;
                right: -80px;
            }
            
            .why-text h2 {
                font-size: 24px;
            }
            
            .why-list li {
                font-size: 14px;
                padding-right: 20px;
            }
            
            .follow-section {
                padding: 40px 20px;
            }
            
            .follow-text h2 {
                font-size: 24px;
            }
            
            .follow-features p {
                font-size: 14px;
            }
            
            .follow-download span {
                font-size: 16px;
            }
            
            .partners-section {
                padding: 40px 15px;
            }
            
            .partners-section h2 {
                font-size: 24px;
            }
            
            .partners-logos img {
                max-height: 60px;
                max-width: 100px;
            }
            
            .faq-section {
                padding: 40px 20px;
            }
            
            .faq-header h2 {
                font-size: 24px;
            }
            
            .faq-desc p {
                font-size: 14px;
            }
            
            .faq-arrows button {
                width: 40px;
                height: 40px;
            }
            
            .faq-card {
                width: 250px;
                height: 350px;
                padding: 30px 20px;
                border-radius: 24px;
            }
            
            .faq-card .question {
                font-size: 20px;
            }
            
            .faq-card .answer {
                font-size: 13px;
            }
            
            .footer-content {
                padding: 30px 20px;
            }
            
            .footer-brand .logo {
                font-size: 30px;
            }
            
            .footer-brand p {
                font-size: 14px;
            }
            
            .footer-contact-item span {
                font-size: 14px;
            }
            
            .footer-newsletter p {
                font-size: 14px;
            }
            
            .footer-copyright {
                font-size: 12px;
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
        }

        /* Small Mobile (320px - 479px) - iPhone SE, older Android */
        @media (max-width: 479px) {
            .hero {
                height: 500px;
            }
            
            .hero h1 {
                font-size: 24px;
            }
            
            .hero p {
                font-size: 13px;
            }
            
            .hero-content {
                gap: 24px;
            }
            
            .store-btn {
                width: 160px;
                height: 50px;
            }
            
            .store-btn img,
            .store-btn svg {
                width: 24px;
                height: 28px;
            }
            
            .store-btn-content small {
                font-size: 10px;
            }
            
            .store-btn-content span {
                font-size: 14px;
            }
            
            .nav-bar {
                padding: 0 10px;
            }
            
            .logo {
                font-size: 20px;
            }
            
            .btn-primary {
                font-size: 12px;
                padding: 6px 16px;
                height: 36px;
            }
            
            .about-content h2 {
                font-size: 22px;
            }
            
            .about-content p {
                font-size: 16px;
            }
            
            .problems-section h2 {
                font-size: 22px;
            }
            
            .problems-images {
                width: 180px;
                height: 180px;
                position: relative;
                margin-bottom: 20px;
            }
            
            .problems-images img {
                width: 110px;
            }
            
            .problems-images img:first-child {
                top: 0;
                right: 15px;
            }
            
            .problems-images img:last-child {
                bottom: 0;
                left: 15px;
            }
            
            .cta-banner h2 {
                font-size: 20px;
            }
            
            .services-section h2 {
                font-size: 22px;
            }
            
            .why-images img:first-child {
                width: 180px;
                height: 240px;
            }
            
            .why-images img:last-child {
                width: 110px;
                height: 130px;
                top: 60px;
                right: -60px;
            }
            
            .why-text h2 {
                font-size: 22px;
            }
            
            .follow-text h2 {
                font-size: 22px;
            }
            
            .partners-section h2 {
                font-size: 22px;
            }
            
            .partners-logos img {
                max-height: 50px;
                max-width: 80px;
            }
            
            .faq-header h2 {
                font-size: 22px;
            }
            
            .faq-card {
                width: 220px;
                height: 300px;
                padding: 25px 15px;
            }
            
            .faq-card .question {
                font-size: 18px;
            }
            
            .faq-card .answer {
                font-size: 12px;
            }
            
            .footer-brand .logo {
                font-size: 26px;
            }
        }

        /* Extra Small Mobile (below 320px) */
        @media (max-width: 319px) {
            .hero h1 {
                font-size: 20px;
            }
            
            .hero p {
                font-size: 12px;
            }
            
            .store-btn {
                width: 140px;
                height: 45px;
            }
            
            .problems-images {
                display: none;
            }
            
            .faq-card {
                width: 200px;
                height: 280px;
            }
            
            .faq-card .question {
                font-size: 16px;
            }
            
            .faq-card .answer {
                font-size: 11px;
            }
        }

        /* iPhone specific adjustments */
        /* iPhone 14 Pro Max, 15 Pro Max (430px) */
        @media (width: 430px) {
            .hero h1 {
                font-size: 30px;
            }
        }

        /* iPhone 14, 15 (390px) */
        @media (width: 390px) {
            .hero h1 {
                font-size: 28px;
            }
        }

        /* Samsung Galaxy specific */
        /* Galaxy S21 Ultra, S22 Ultra (384px) */
        @media (width: 384px) {
            .hero h1 {
                font-size: 27px;
            }
        }

        /* Landscape orientation for mobile */
        @media (max-width: 991px) and (orientation: landscape) {
            .hero {
                height: auto;
                min-height: 100vh;
                padding: 80px 20px 40px;
            }
            
            .hero-content {
                gap: 20px;
            }
            
            .store-buttons {
                flex-direction: row;
            }
            
            .problems-wrapper {
                flex-direction: row-reverse;
            }
            
            .problems-images {
                width: 300px;
                height: 300px;
            }
            
            .problems-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* High DPI / Retina displays */
        @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
            .hero {
                background-size: cover;
            }
        }

        /* Safe area for notched devices (iPhone X and later) */
        @supports (padding: max(0px)) {
            .hero {
                padding-top: max(20px, env(safe-area-inset-top));
            }
            
            .footer-bottom {
                padding-bottom: max(24px, env(safe-area-inset-bottom));
            }
        }

        /* Touch device optimizations */
        @media (hover: none) and (pointer: coarse) {
            .btn-primary:hover,
            .btn-black:hover,
            .store-btn:hover {
                transform: none;
            }
            
            .faq-card:hover {
                transform: none;
                box-shadow: none;
            }
            
            .faq-card:hover::before {
                opacity: 0;
            }
            
            .faq-card:hover .question {
                color: var(--neutral-500);
                margin-bottom: 0;
            }
            
            .faq-card:hover .answer {
                opacity: 0;
                max-height: 0;
            }
            
            .faq-card.active {
                transform: translateY(-10px) scale(1.02);
                box-shadow: 0 25px 50px rgba(30, 136, 229, 0.3);
            }
            
            .faq-card.active::before {
                opacity: 1;
            }
            
            .faq-card.active .question {
                color: white;
                margin-bottom: 20px;
            }
            
            .faq-card.active .answer {
                opacity: 1;
                max-height: 200px;
            }
            
            .faq-cards {
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
            }
            
            .faq-card {
                scroll-snap-align: start;
            }
        }
/* =================================================================== */

/* ========== GLOBAL FLUID FIXES ========== */
html,
body{
    overflow-x:hidden;
}

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

.container{
    width:100%;
    max-width:1280px;
    margin:auto;
}

/* ===============================
   1200px and down (Laptop)
================================= */
@media (max-width:1200px){

    .container{
        padding-inline:32px;
    }

    .nav-bar{
        width:95%;
        padding-inline:10px;
    }

    .hero h1{
        font-size:62px;
    }

    .hero p{
        font-size:24px;
    }

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

    .why-content,
    .follow-content{
        gap:40px;
    }

    .why-images img:first-child{
        width:360px;
        height:auto;
    }

    .why-images img:last-child{
        width:220px;
        right:-70px;
    }

    .footer-content{
        gap:40px;
    }

}

/* ===============================
   992px and down (Tablet)
================================= */
@media (max-width:992px){

    section,
    .about-section,
    .services-section,
    .problems-section,
    .why-section,
    .follow-section,
    .faq-section{
        padding-inline:32px !important;
    }

    .hero{
        height:auto;
        min-height:100vh;
        padding:120px 20px 60px;
    }

    .hero-content{
        gap:32px;
        width:100%;
    }

    .hero h1{
        font-size:48px;
        line-height:1.2;
    }

    .hero p{
        font-size:20px;
    }

    .nav-bar{
        position:absolute;
        top:20px;
        width:95%;
    }

    .about-section{
        height:auto;
    }

    .about-content{
        flex-direction:column;
        gap:28px;
        align-items:flex-end;
    }

    .about-content h2,
    .about-content p{
        width:100%;
    }

    .about-content h2{
        font-size:32px;
    }

    .about-content p{
        font-size:24px;
    }

    .problems-wrapper{
        flex-direction:column;
        gap:40px;
    }

    .problems-images{
        width:320px;
        height:320px;
        margin:auto;
    }

    .problems-images img:first-child{
        right:0;
        top:0;
    }

    .problems-images img:last-child{
        left:0;
        top:100px;
    }

    .problems-grid{
        grid-template-columns:repeat(2,1fr);
        gap:28px;
    }

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

    .why-content,
    .follow-content,
    .footer-content{
        flex-direction:column;
        align-items:center;
        gap:40px;
    }

    .why-text,
    .follow-text,
    .footer-brand,
    .footer-newsletter{
        width:100%;
        max-width:100%;
    }

    .why-text h2,
    .follow-text h2{
        text-align:center;
    }

    .why-list{
        width:100%;
    }

    .follow-image{
        width:100%;
        max-width:520px;
        height:auto;
    }

    .faq-header{
        flex-direction:column;
        gap:24px;
    }

    .faq-header h1,
    .faq-desc,
    .faq-desc p{
        width:100%;
        left:0;
        right:0;
    }

    .footer-brand p{
        width:100%;
    }

    .newsletter-form{
        left:0;
        width:100%;
    }

    .newsletter-form input{
        flex:1;
        width:100%;
    }

}

/* ===============================
   768px and down (Large Mobile)
================================= */
@media (max-width:768px){

    .container{
        padding-inline:20px;
    }

    .nav-bar{
        flex-direction:column;
        gap:14px;
    }

    .social-icons{
        display:none;
    }

    .hero h1{
        font-size:38px;
    }

    .hero p{
        font-size:17px;
    }

    .store-buttons{
        flex-direction:column;
        width:100%;
        align-items:center;
    }

    .store-btn{
        width:220px;
    }

    .about-content h2,
    .services-section h2,
    .problems-section h2,
    .partners-section h2,
    .faq-header h1{
        font-size:30px;
    }

    .about-content p{
        font-size:20px;
    }

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

    .problem-card p{
        width:100%;
    }

    .why-images img:first-child{
        width:280px;
    }

    .why-images img:last-child{
        width:160px;
        right:-30px;
        top:100px;
    }

    .partners-logos{
        animation:none;
        flex-wrap:wrap;
        justify-content:center;
        width:100%;
        gap:20px;
    }

    .partners-logos img{
        max-height:90px;
        max-width: 90px;
    }

    .faq-card{
        width:280px;
        height:420px;
        padding:30px 22px;
    }

    .footer-bottom{
        flex-direction:column;
        gap:16px;
        text-align:center;
    }

}

/* ===============================
   576px and down (Phones)
================================= */
@media (max-width:576px){

    .hero{
        padding-top:130px;
    }

    .hero h1{
        font-size:30px;
    }

    .hero p{
        font-size:15px;
    }

    .btn-primary,
    .btn-black{
        font-size:15px;
        height:auto;
        padding:12px 22px;
    }

    .store-btn{
        width:100%;
        max-width:230px;
    }

    .about-section,
    .services-section,
    .problems-section,
    .why-section,
    .follow-section,
    .faq-section{
        padding-inline:18px !important;
    }

    .about-content h2,
    .services-section h2,
    .problems-section h2,
    .partners-section h2,
    .faq-header h1{
        font-size:26px;
    }

    .about-content p{
        font-size:18px;
    }

    .problem-card h3,
    .service-card h3{
        font-size:20px;
    }

    .problem-card p,
    .service-card p,
    .faq-desc p{
        font-size:15px;
    }

    .why-images img:first-child{
        width:220px;
    }

    .why-images img:last-child{
        width:130px;
        top:70px;
        right:20px;
    }

    .faq-card{
        width:240px;
        height:360px;
    }

    .faq-card .question{
        font-size:22px;
    }

    .faq-card .answer{
        font-size:13px;
    }

    .newsletter-form{
        flex-direction:column;
        height:auto;
    }

    .newsletter-form button,
    .newsletter-form input{
        width:100%;
    }

}

/* ===============================
   400px and down (Small phones)
================================= */
@media (max-width:400px){

    .hero h1{
        font-size:24px;
    }

    .hero p{
        font-size:13px;
    }

    .logo{
        font-size:22px;
    }

    .store-btn{
        max-width:200px;
        height:52px;
    }

    .store-btn-content span{
        font-size:14px;
    }

    .problems-images,
    .why-images{
        transform:scale(.9);
    }

    .faq-card{
        width:210px;
        height:320px;
    }

    .footer-brand .logo{
        font-size:28px;
    }

}