:root {
            --primary: #009669;
            --primary-dark: #065f46;
            --primary-light: #d1fae5;
            --text-dark: #0f172a;
            --text-light: #64748b;
            --bg-light: #ffffff;
            --bg-gray: #f8fafc;
            --white: #ffffff;
            --radius-lg: 24px;
            --radius-md: 16px;
            --radius-sm: 8px;
            --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            background-color: var(--bg-light);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            display: block;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 24px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            font-size: 14px;
        }

        .btn-primary {
            background-color: var(--primary);
            color: var(--white);
        }

        .btn-primary:hover {
            background-color: var(--primary-dark);
            transform: translateY(-1px);
            box-shadow: var(--shadow);
        }

        .btn-outline {
            background-color: transparent;
            border: 1px solid #e2e8f0;
            color: var(--text-dark);
        }

        .btn-outline:hover {
            background-color: var(--bg-gray);
        }

        /* Premium CTA Button */
        .btn-cta {
            background: linear-gradient(135deg, #00b884 0%, var(--primary) 100%);
            color: var(--white);
            padding: 16px 32px;
            font-weight: 700;
            font-size: 16px;
            text-transform: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 10px 20px -5px rgba(0, 150, 105, 0.4);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: none;
            border-radius: var(--radius-sm);
        }

        .btn-cta:hover {
            background: linear-gradient(135deg, #00d196 0%, #00a876 100%);
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 20px 30px -10px rgba(0, 150, 105, 0.5);
            color: var(--white);
        }

        .btn-cta svg {
            transition: transform 0.3s ease;
        }

        .btn-cta:hover svg {
            transform: translateX(4px);
        }

        .btn-rounded {
            border-radius: 50px;
        }

        /* Header */
        header {
            padding: 20px 0;
            position: -webkit-sticky;
            position: sticky;
            top: 0;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            z-index: 1000;
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 700;
            font-size: 20px;
            color: var(--primary);
        }

        .logo svg {
            width: 32px;
            height: 32px;
        }

        .logo img {
            height: 40px;
            width: auto;
        }

        nav ul {
            display: flex;
            gap: 32px;
        }

        nav a {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-light);
            transition: var(--transition);
        }

        nav a:hover {
            color: var(--primary);
        }

        .header-actions {
            display: flex;
            gap: 12px;
        }

        /* Hero Section */
        .hero {
            padding: 80px 0;
            overflow: hidden;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            align-items: center;
            gap: 40px;
        }

        .hero-content h1 {
            font-family: 'Hind Siliguri', sans-serif;
            font-size: 64px;
            letter-spacing: 0.3px;
            line-height: 1.1;
            font-weight: 600;
            margin-bottom: 24px;
        }

        .hero-content h1 span {
            color: var(--primary);
        }

        .hero-content p {
            color: var(--text-light);
            font-size: 18px;
            max-width: 500px;
            margin-bottom: 40px;
        }

        .app-badges {
            display: flex;
            gap: 16px;
        }

        .app-badge {
            height: 48px;
            transition: var(--transition);
        }

        .app-badge:hover {
            transform: scale(1.05);
        }

        .hero-images {
            position: relative;
            display: flex;
            justify-content: flex-end;
        }

        .hero-images img {
            width: 100%;
            height: auto;
            max-width: 500px;
        }

        /* Features Section */
        .section-features {
            padding: 80px 0;
        }

        .feature-card {
            background-color: var(--white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: 0 4px 20px rgb(0 0 0 / 5%);
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 400px;
            margin-bottom: 60px;
        }

        .feature-content {
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .feature-content h2 {
            font-family: 'Hind Siliguri', sans-serif;
            font-size: 35px;
            font-weight: 600;
            letter-spacing: 0.4px;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .feature-content h2 span {
            color: var(--primary);
        }

        .feature-content p {
            font-family: 'Noto Sans Bengali', sans-serif;
            color: var(--text-dark);
            font-size: 18px;
            margin-bottom: 32px;
        }

        .feature-image {
            background-color: #f1f5f9;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px;
            position: relative;
        }

        /* Video Section */
        .section-video {
            padding: 80px 0;
        }

        .video-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .video-wrapper {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            aspect-ratio: 16/9;
            background-color: #000;
        }

        .video-wrapper iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .video-content p {
            font-size: 16px;
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 40px;
        }

        .video-content h2 {
            font-size: 47px;
            font-weight: 700;
            margin-bottom: 24px;
            line-height: 1.1;
            letter-spacing: 1.1px;
        }

        /* Impact Section */
        .section-impact {
            padding: 80px 0;
            background-color: var(--primary);
            color: var(--white);
            position: relative;
            overflow: hidden;
            width: 100%;
        }

        .impact-inner {
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .section-impact h2 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 60px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .stat-item h3 {
            font-size: 64px;
            font-weight: 800;
            margin-bottom: 8px;
            line-height: 1;
        }

        .stat-item p {
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.9;
        }

        /* Decorative Circles */
        .section-impact::before,
        .section-impact::after {
            content: '';
            position: absolute;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 50%;
            z-index: 1;
        }

        .section-impact::before {
            width: 250px;
            height: 250px;
            top: -100px;
            left: -100px;
        }

        .section-impact::after {
            width: 350px;
            height: 350px;
            bottom: -150px;
            right: -100px;
        }

        @media (max-width: 768px) {
            .section-impact {
                padding: 60px 0;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .stat-item h3 {
                font-size: 48px;
            }

            .section-impact h2 {
                font-size: 28px;
                margin-bottom: 40px;
                padding: 0 20px;
            }
        }

        /* FAQ Section */
        .section-faq {
            padding: 100px 0;
            background-color: var(--white);
        }

        .faq-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .faq-header h2 {
            font-size: 40px;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 16px;
        }

        .faq-header p {
            color: var(--text-light);
            font-size: 16px;
            margin-bottom: 24px;
        }

        .header-line {
            width: 60px;
            height: 4px;
            background: var(--primary);
            margin: 0 auto;
            border-radius: 2px;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .faq-item {
            background-color: #f8fafc;
            border-radius: 12px;
            overflow: hidden;
            transition: var(--transition);
        }

        .faq-question {
            width: 100%;
            padding: 24px 32px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: none;
            text-transform: none;
            border: none;
            cursor: pointer;
            text-align: left;
            font-size: 18px;
            font-weight: 700;
            color: #1e293b;
            transition: var(--transition);
        }

        .faq-question:hover {
            background-color: #f1f5f9;
        }

        .faq-icon {
            width: 20px;
            height: 20px;
            transition: transform 0.3s ease;
            color: #94a3b8;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            background-color: #f8fafc;
        }

        .faq-answer-inner {
            padding: 0 32px 24px;
            color: var(--text-light);
            line-height: 1.6;
            font-size: 16px;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        @media (max-width: 768px) {
            .section-faq {
                padding: 60px 0;
            }

            .faq-header h2 {
                font-size: 32px;
            }

            .faq-question {
                padding: 20px 24px;
                font-size: 16px;
            }

            .faq-answer-inner {
                padding: 0 24px 20px;
                font-size: 14px;
            }
        }

        /* Download Section */
        .section-download {
            padding: 100px 0;
            text-align: center;
        }

        .section-download h2 {
            font-size: 36px;
            margin-bottom: 16px;
        }

        .section-download p {
            color: var(--text-light);
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .section-download .app-badges {
            justify-content: center;
        }

        /* Footer */
        footer {
            padding: 80px 0 40px;
            border-top: 3px solid var(--primary);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-logo {
            margin-bottom: 20px;
        }

        .footer-desc {
            color: var(--text-light);
            font-size: 14px;
            max-width: 240px;
        }

        .footer-heading {
            font-weight: 700;
            font-size: 16px;
            margin-bottom: 24px;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--text-light);
            font-size: 14px;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        .social-links {
            display: flex;
            gap: 16px;
        }

        .social-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 1px solid #e2e8f0;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .social-icon:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 40px;
            border-top: 1px solid #f1f5f9;
            color: var(--text-light);
            font-size: 12px;
        }

        .footer-legal {
            display: flex;
            gap: 24px;
        }

        /* New Footer Design */
        .section-partners {
            padding: 80px 0;
            background: #fff;
        }

        .partners-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            align-items: center;
            gap: 60px;
        }

        .partners-content h2 {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 12px;
            color: var(--text-dark);
        }

        .partners-content p {
            color: var(--text-light);
            margin-bottom: 24px;
            max-width: 400px;
        }

        .partners-rating {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 700;
            font-size: 14px;
        }

        .stars {
            display: flex;
            gap: 4px;
            color: #facc15;
        }

        .partner-logos {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .partner-logo {
            height: 60px;
            background: #f1f5f9;
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 12px;
        }

        .partner-logo svg {
            width: 100%;
            height: 100%;
            opacity: 0.5;
        }

        .footer-cta {
            padding: 40px 0;
            background: #061d17;
        }

        .footer-cta-card {
            background: #11382b;
            border-radius: 40px;
            padding: 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .cta-content h2 {
            font-size: 40px;
            font-weight: 800;
            margin-bottom: 12px;
            color: #03ff9d;
            /* Bright green instead of yellow */
        }

        .cta-content p {
            opacity: 0.8;
            font-size: 16px;
        }

        .footer-main {
            background: #061d17;
            padding: 80px 0 40px;
            color: #fff;
        }

        .footer-columns {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 80px;
        }

        .footer-col-info .logo {
            margin-bottom: 24px;
            font-size: 24px;
        }

        .footer-col-info p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 32px;
        }

        .footer-social {
            display: flex;
            gap: 16px;
        }

        .social-btn {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .social-btn:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        .footer-col h4 {
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 24px;
            color: var(--primary);
            /* Using primary green for headings */
        }

        .footer-links-list li {
            margin-bottom: 16px;
        }

        .footer-links-list a {
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            transition: var(--transition);
        }

        .footer-links-list a:hover {
            color: #fff;
            padding-left: 4px;
        }

        .footer-bottom-bar {
            border-top: 2px solid rgba(255, 255, 255, 0.05);
            padding-top: 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: rgba(255, 255, 255, 0.5);
            font-size: 16px;
        }

        .footer-utils {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .util-item {
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            transition: var(--transition);
        }

        .util-item:hover {
            color: #fff;
        }



        .back-to-top {
            width: 48px;
            height: 48px;
            background: var(--primary);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            border: none;
            cursor: pointer;
        }

        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 150, 105, 0.3);
        }

        /* Hero Section Refinement */
        .hero {
            padding: 60px 0 100px;
        }

        .hero-images {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            position: relative;
            height: 500px;
            padding-right: 80px;
        }

        .phone-mockup {
            width: 240px;
            height: 480px;
            background: #fff;
            border: 10px solid #1e293b;
            border-radius: 40px;
            position: relative;
            box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.25);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: var(--transition);
        }

        /* Notch */
        .phone-mockup::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 22px;
            background: #1e293b;
            border-bottom-left-radius: 12px;
            border-bottom-right-radius: 12px;
            z-index: 20;
        }

        .phone-content {
            flex: 1;
            background: #fff;
            padding: 0;
            /* Changed to 0 to let image fill edge to edge */
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
        }

        .phone-screenshot {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .phone-front {
            z-index: 10;
            transform: rotate(-3deg);
            background: #e6fffa;
            /* Light mint green */
        }

        .phone-back {
            position: absolute;
            right: 10px;
            top: 40px;
            z-index: 5;
            transform: rotate(5deg);
            background: #fff5f5;
            /* Very light pink/white */
            border-color: #cbd5e1;
            opacity: 0.9;
        }

        /* Responsive adjustments for phones */
        @media (max-width: 992px) {
            .hero-grid {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 40px;
            }

            .hero-content {
                display: flex;
                flex-direction: column;
                align-items: center;
                margin-top: 20px;
            }

            .hero-content p {
                margin: 0 auto 32px;
                font-size: 16px;
            }

            .hero-images {
                justify-content: center;
                height: 520px;
                margin-top: 20px;
            }

            .phone-mockup {
                width: 240px;
                height: 440px;
                border-width: 8px;
                border-radius: 30px;
            }

            .phone-back {
                right: 181px;
                top: 13px;
                transform: rotate(4deg);
            }
        }

        @media (max-width: 768px) {
            .phone-mockup {
                width: 200px;
                height: 400px;
                border-width: 8px;
                border-radius: 30px;
            }

            .phone-mockup::before {
                width: 60px;
                height: 18px;
            }

            .hero-images {
                height: 440px;
            }

            .phone-back {
                right: 5px;
                top: 30px;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 36px;
            }

            .phone-mockup {
                width: 160px;
                height: 320px;
                border-width: 6px;
                border-radius: 24px;
            }

            .phone-mockup::before {
                width: 50px;
                height: 15px;
                border-bottom-left-radius: 10px;
                border-bottom-right-radius: 10px;
            }

            .hero-images {
                height: 350px;
            }

            .phone-back {
                right: 23px;
                top: 20px;
                transform: rotate(5deg);
            }
        }


        /* Feature Section Refinement */
        .feature-image {
            background-color: #f1f5f9;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0px;
            position: relative;
            overflow: hidden;
        }

        .feature-image img {
            width: 800px;
            height: 450px;
            object-fit: cover;
            border-radius: 16px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }

        .feature-image img:hover {
            transform: scale(1.02);
        }


        /* Mobile Menu */
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 12px;
            z-index: 1001;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            border-radius: 50%;
        }

        .menu-toggle::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: rgba(0, 150, 105, 0.1);
            border-radius: 50%;
            transform: scale(0);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .menu-toggle:hover::before {
            transform: scale(1.2);
        }

        .menu-toggle:active {
            transform: scale(0.9);
        }

        .menu-toggle svg {
            width: 28px;
            height: 28px;
            stroke: #1e293b;
            stroke-width: 2.5;
            position: relative;
            z-index: 2;
            transition: stroke 0.3s ease;
        }

        .menu-toggle:hover svg {
            stroke: var(--primary);
        }

        /* Line lengths for premium look */
        .menu-line-top {
            transition: transform 0.3s ease;
        }

        .menu-line-mid {
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        .menu-line-bot {
            transition: transform 0.3s ease;
        }

        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 90%;
            height: 100vh;
            background: rgb(6 29 23 / 15%);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(25px);
            z-index: 2000;
            padding: 40px;
            transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
            display: flex;
            flex-direction: column;
            color: #fff;
            overflow-y: auto;
        }

        .mobile-nav.active {
            right: 0;
        }

        .mobile-header {
            display: flex;
            justify-content: flex-end;
            margin-bottom: 20px;
        }

        .close-menu {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: #fff;
            padding: 8px 16px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
        }

        .close-menu:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .mobile-primary-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 30px;
        }

        .mobile-primary-links a {
            font-size: 32px;
            font-weight: 700;
            color: #fff;
            transition: var(--transition);
        }

        .mobile-primary-links a:hover {
            color: var(--primary);
            padding-left: 10px;
        }

        .btn-mobile-cta {
            background: linear-gradient(135deg, #00b884 0%, var(--primary) 100%);
            color: #fff;
            padding: 16px 32px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            width: fit-content;
            max-width: 100%;
            margin-bottom: 20px;
            box-shadow: 0 10px 20px -5px rgba(0, 150, 105, 0.4);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-sizing: border-box;
        }

        .btn-mobile-cta:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 20px 30px -10px rgba(0, 150, 105, 0.5);
            background: linear-gradient(135deg, #00d196 0%, #00a876 100%);
        }

        .btn-mobile-cta svg {
            transition: transform 0.3s ease;
        }

        .btn-mobile-cta:hover svg {
            transform: translateX(4px);
        }

        .mobile-socials {
            display: flex;
            gap: 24px;
            margin-bottom: 40px;
        }

        .mobile-socials svg {
            width: 24px;
            height: 24px;
            color: #a7f3d0;
        }

        .more-links-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 20px;
            opacity: 0.9;
        }

        .more-links-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px 20px;
            margin-bottom: 60px;
        }

        .more-links-grid a {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            transition: var(--transition);
        }

        .more-links-grid a:hover {
            color: #fff;
        }

        .mobile-footer-logo {
            margin-top: auto;
            font-size: 28px;
            font-weight: 800;
            letter-spacing: -1px;
            opacity: 0.8;
            padding-bottom: 20px;
        }

        /* Desktop specific width for mobile-nav */
        @media (min-width: 992px) {
            .mobile-nav {
                width: 50%;
            }
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        body.menu-open {
            overflow: hidden;
        }

        /* Responsive */
        @media (max-width: 992px) {

            .hero-grid,
            .feature-card,
            .video-grid,
            .dark-card,
            .footer-grid {
                grid-template-columns: 1fr !important;
                gap: 40px;
            }

            .hero-content {
                text-align: center;
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .hero-content h1 {
                font-size: 48px;
            }

            .hero-content p {
                margin-left: auto;
                margin-right: auto;
            }

            .app-badges {
                justify-content: center;
            }

            .hero-images {
                justify-content: center;
                height: 400px;
                margin-bottom: 30px;
                padding-right: 47px;
            }

            .phone-mockup {
                width: 200px;
                height: 400px;
            }

            .phone-mockup-2 {
                right: 0px;
                top: 20px;
            }

            .feature-card {
                min-height: auto;
            }

            .feature-content {
                order: 2;
                padding: 10px 10px 40px 10px;
                text-align: center;
                align-items: center;
            }

            .feature-image {
                height: 300px;
                order: 1;
            }

            .video-content {
                text-align: center;
            }

            .video-content h2 {
                font-size: 40px;
            }

            .dark-card {
                padding: 40px;
                text-align: center;
            }

            .dark-card h2 {
                font-size: 36px;
            }

            .dark-content {
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .footer-grid,
            .partners-grid,
            .footer-columns {
                grid-template-columns: 1fr !important;
                gap: 40px;
                margin-bottom: 20px;
            }

            .partners-grid {
                text-align: center;
            }

            .partners-content p {
                margin: 0 auto 24px;
            }

            .partners-rating {
                justify-content: center;
            }

            .partner-logos {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-cta-card {
                flex-direction: column;
                gap: 40px;
                text-align: center;
                padding: 40px 24px;
            }

            .footer-col-info {
                text-align: center;
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .footer-social {
                justify-content: center;
            }

            .footer-bottom-bar {
                flex-direction: column;
                gap: 24px;
                text-align: center;
            }

            .footer-utils {
                flex-direction: column;
                gap: 20px;
            }

            .back-to-top {
                display: none;
            }
        }

        /* Tablet Header Refinement */
        @media (max-width: 1024px) and (min-width: 769px) {
            .header-inner {
                gap: 15px;
            }

            .logo {
                font-size: 18px;
            }

            .logo svg {
                width: 28px;
                height: 28px;
            }

            nav ul {
                gap: 14px;
            }

            nav a {
                font-size: 13px;
            }

            .header-actions {
                gap: 8px;
            }

            .header-actions .btn-cta {
                padding: 8px 14px !important;
                font-size: 12px !important;
                letter-spacing: 0.5px !important;
            }
        }

        @media (max-width: 768px) {

            nav,
            .header-actions {
                display: none;
            }

            .menu-toggle {
                display: block;
            }

            .hero-content h1 {
                font-size: 40px;
            }

            header {
                position: fixed;
                width: 100%;
                top: 0;
                left: 0;
            }

            main {
                margin-top: 72px;
            }

            .hero {
                padding: 40px 0;
            }

            .section-features,
            .section-dark {
                padding: 60px 0;
            }

            .section-video {
                padding: 0px 0 60px;
            }
        }