:root {
    --primary-blue: #3b82f6;
    --primary-blue-gradient: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    --dark-bg: #000000;
    --text-main: #111827;
    --text-muted: #4b5563;
    --font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --nav-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
    /* Firefox */
    scrollbar-color: #CBD5E1 #F8FAFC;
    /* Firefox */
}

/* Custom Scrollbar - Premium Aesthetics */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #F8FAFC;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 5px;
    border: 2px solid #F8FAFC;
    /* Creates padding effect */
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: #1D4BA7;
    /* Brand Blue on hover */
}

body {
    font-family: var(--font-family);
    -webkit-font-smoothing: antialiased;
    color: var(--text-main);
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

footer {
    display: block;
    margin: 0 !important;
    padding-bottom: constant(safe-area-inset-bottom);
    /* iOS support */
    padding-bottom: env(safe-area-inset-bottom);
}

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

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

@media (min-width: 1280px) {
    .container {
        padding: 0 40px;
    }
}

/* ============================================
   🌟 PREMIUM GLASSMORPHISM NAVBAR
   Modern, Floating, Animated Navigation
   ============================================ */

/* Header & Navbar */
.navbar {
    height: 80px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scrolled state - more prominent glass effect */
.navbar.scrolled {
    height: 70px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(29, 75, 167, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Logo with glow effect */
.logo-container {
    position: relative;
    padding: 8px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.logo-container::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(29, 75, 167, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo-container:hover::before {
    opacity: 0;
}

.logo-container img {
    height: 28px;
    display: block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
}

.logo-container:hover img {
    transform: scale(1.05) translateY(-1px);
    filter: drop-shadow(0 4px 8px rgba(29, 75, 167, 0.15));
}

/* Desktop Nav - Floating Pill Container */
.nav-links {
    display: none;
    gap: 6px;
    list-style: none;
    align-items: center;
    background: rgba(243, 244, 246, 0.7);
    padding: 6px 10px;
    border-radius: 50px;
    border: 1px solid rgba(229, 231, 235, 0.8);
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 2px rgba(255, 255, 255, 0.8);
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
}

/* Individual nav link styling */
.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #4b5563;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 10px 18px;
    border-radius: 50px;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    overflow: hidden;
    white-space: nowrap;
}

/* Gradient hover background */
.nav-links a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ba7 100%);
    opacity: 0;
    border-radius: 50px;
    transition: opacity 0.3s ease;
    z-index: -1;
}

/* Shimmer effect on hover */
.nav-links a::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.nav-links a:hover::after {
    left: 100%;
}

.nav-links a:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.nav-links a:hover::before {
    opacity: 1;
}

/* Active link state */
.nav-links a.active {
    color: #ffffff;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ba7 100%);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Desktop Actions */
.nav-actions {
    display: none;
    gap: 12px;
    align-items: center;
}

@media (min-width: 1024px) {
    .nav-actions {
        display: flex;
    }
}

/* ============================================
   🎨 PREMIUM BUTTON STYLES
   ============================================ */

.btn {
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(4px);
}

/* Black Ghost Button */
.btn-black {
    background: transparent;
    color: #111827;
    border: 2px solid #111827;
    position: relative;
}

.btn-black::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #111827;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    border-radius: 50px;
}

.btn-black:hover {
    color: #ffffff;
    border-color: #111827;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-black:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Blue Gradient Button with Glow */
.btn-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ba7 100%);
    color: #fff;
    border: none;
    box-shadow:
        0 4px 15px rgba(59, 130, 246, 0.3),
        0 0 0 0 rgba(59, 130, 246, 0.4);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow:
            0 4px 15px rgba(59, 130, 246, 0.3),
            0 0 0 0 rgba(59, 130, 246, 0.4);
    }

    50% {
        box-shadow:
            0 4px 20px rgba(59, 130, 246, 0.4),
            0 0 0 4px rgba(59, 130, 246, 0.1);
    }
}

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

.btn-blue:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 8px 30px rgba(59, 130, 246, 0.5),
        0 0 0 4px rgba(59, 130, 246, 0.15);
}

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

/* Navbar scrolled state button adjustments */
.navbar.scrolled .btn {
    padding: 10px 20px;
    font-size: 13px;
}

/* ============================================
   📱 PREMIUM MOBILE MENU
   Glassmorphism, Refined Animations
   ============================================ */

.mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(243, 244, 246, 0.8);
    border: 1px solid rgba(229, 231, 235, 0.5);
    border-radius: 12px;
    cursor: pointer;
    z-index: 1002;
    padding: 0;
    transition: all 0.3s ease;
}

.mobile-toggle:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

@media (min-width: 1024px) {
    .mobile-toggle {
        display: none;
    }
}

.hamburger {
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #1d4ba7);
    border-radius: 2px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #1d4ba7);
    border-radius: 2px;
    left: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger::before {
    top: -7px;
    width: 16px;
}

.hamburger::after {
    bottom: -7px;
    width: 12px;
}

/* Active Hamburger State - X Animation */
.mobile-toggle.active {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ba7 100%);
    border-color: transparent;
}

.mobile-toggle.active .hamburger {
    background: transparent;
}

.mobile-toggle.active .hamburger::before {
    width: 20px;
    background: #ffffff;
    transform: rotate(45deg);
    top: 0;
}

.mobile-toggle.active .hamburger::after {
    width: 20px;
    background: #ffffff;
    transform: rotate(-45deg);
    bottom: 0;
}

/* Mobile Slide-in Drawer - Glassmorphism */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    height: 100dvh;
    width: 100%;
    max-width: 320px;
    background: #ffffff;
    z-index: 2001;
    /* Above overlays */
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    padding: 0;
    /* Remove default padding for header */
    overflow-y: auto;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    border-bottom: 1px solid #f1f5f9;
}

.mobile-close-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.2s;
}

.mobile-close-btn:active {
    background: #f1f5f9;
    transform: scale(0.95);
}

.mobile-menu-drawer.open {
    transform: translateX(0);
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 32px 20px;
}

.mobile-nav-links li {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-drawer.open .mobile-nav-links li {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger animation for links */
.mobile-menu-drawer.open .mobile-nav-links li:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu-drawer.open .mobile-nav-links li:nth-child(2) {
    transition-delay: 0.15s;
}

.mobile-menu-drawer.open .mobile-nav-links li:nth-child(3) {
    transition-delay: 0.2s;
}

.mobile-menu-drawer.open .mobile-nav-links li:nth-child(4) {
    transition-delay: 0.25s;
}

.mobile-menu-drawer.open .mobile-nav-links li:nth-child(5) {
    transition-delay: 0.3s;
}

.mobile-nav-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
    color: #374151;
    text-decoration: none;
    padding: 16px 20px;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Hover background effect */
.mobile-nav-links a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(29, 75, 167, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px;
}

.mobile-nav-links a:hover::before,
.mobile-nav-links a:active::before {
    opacity: 1;
}

.mobile-nav-links a:hover,
.mobile-nav-links a:active {
    color: #1d4ba7;
    transform: translateX(8px);
}

/* Active indicator dot */
.mobile-nav-links a.active::after {
    content: '';
    position: absolute;
    right: 20px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #1d4ba7);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.4);
}

.mobile-actions {
    margin-top: auto;
    padding: 32px 28px;
    /* Added horizontal padding to match header */
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.35s;
}

.mobile-menu-drawer.open .mobile-actions {
    opacity: 1;
    transform: translateY(0);
}

.mobile-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 15px;
}

/* Mobile-specific button adjustments */
.mobile-actions .btn-black {
    background: #111827;
    color: #ffffff;
}

.mobile-actions .btn-black:hover {
    background: #1f2937;
}

/* --- Global Utility --- */
.mirrago-primary-color {
    color: #1D4BA7 !important;
}

.mirrago-primary-bg {
    background-color: #1D4BA7 !important;
}

.mirrago-primary-border {
    border-color: #1D4BA7 !important;
}

.mirrago-accent-color {
    color: #F59E0B !important;
}

.mirrago-smooth-transition {
    transition: all 0.3s ease-in-out !important;
}

.text-primary {
    color: #1D4BA7;
}

.bg-primary-light {
    background-color: #1D4BA71A;
}

/* --- Hero Section --- */
.vto-hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
}

.vto-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40"><path d="M0 0h40v40H0z" fill="none"/><path d="M0 0h20v20H0z M20 20h20v20H20z" fill="%23000" opacity="0.02"/></svg>');
    background-size: 40px;
    background-repeat: repeat;
    opacity: 0.05;
    pointer-events: none;
}

.vto-shape-top {
    position: absolute;
    top: 0;
    right: 0;
    width: 10%;
    height: 20%;
    background-image: linear-gradient(to bottom left, #bfdbfe, #e0e7ff);
    opacity: 0.3;
    border-bottom-left-radius: 100%;
    animation: floatTop 12s ease-in-out infinite alternate;
}

.vto-shape-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 10%;
    height: 20%;
    background-image: linear-gradient(to top right, #e0f7fa, #dbeafe);
    opacity: 0.4;
    border-top-right-radius: 100%;
    animation: floatBottom 15s ease-in-out infinite alternate;
}

@keyframes floatTop {
    0% {
        transform: translateY(0) scale(1) !important;
    }

    100% {
        transform: translateY(-10px) scale(1.05) !important;
    }
}

@keyframes floatBottom {
    0% {
        transform: translateY(0) scale(1) !important;
    }

    100% {
        transform: translateY(10px) scale(1.03) !important;
    }
}

.vto-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .vto-container {
        padding: 0 40px;
    }
}

@media (min-width: 1280px) {
    .vto-container {
        padding: 0 40px;
    }
}

.vto-content-box {
    text-align: left !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 32px !important;
    max-width: 520px !important;
    margin-left: auto !important;
    margin-right: 0 !important;
}

.vto-label {
    display: inline-flex !important;
    padding: 10px 20px !important;
    border-radius: 100px !important;
    background-color: #dbeafe !important;
    color: #1e40af !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 0.05em !important;
}

.vto-headline-image {
    width: 100% !important;
    max-width: 85% !important;
    height: auto !important;
    display: block !important;
}

.vto-description {
    color: #4b5563 !important;
    font-size: 18px !important;
    line-height: 1.6 !important;
    max-width: 38ch !important;
}

.vto-hero-image {
    position: relative !important;
    width: 100% !important;
    max-width: 1000px !important;
    flex-grow: 1 !important;
    margin-left: 0 !important;
    margin-right: auto !important;
}

.vto-main-image {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
}

.vto-app-buttons {
    display: flex !important;
    gap: 16px !important;
    padding-top: 20px !important;
}

.vto-app-button {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    color: white !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    padding: 12px 24px !important;
    border-radius: 12px !important;
    text-decoration: none !important;
}

.vto-app-store {
    background-color: #111827 !important;
}

.vto-play-store {
    background-image: linear-gradient(to right, #346bc9, #1d4ba7) !important;
}

.vto-app-icon {
    width: 20px !important;
    height: 20px !important;
}

.vto-bottom-fade {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 8rem !important;
    background-image: linear-gradient(to top, rgba(224, 242, 254, 0.6), transparent) !important;
    pointer-events: none !important;
}

@media (max-width: 768px) {
    .vto-container {
        width: 90% !important;
        grid-template-columns: 1fr !important;
        max-width: 540px !important;
        gap: 48px !important;
    }

    .vto-content-box {
        text-align: center !important;
        align-items: center !important;
        margin: 0 auto !important;
    }

    .vto-headline-image-container {
        max-width: 380px !important;
        margin: 0 auto !important;
    }

    .vto-description {
        font-size: 16px !important;
    }

    .vto-app-buttons {
        justify-content: center !important;
    }

    .vto-hero-image {
        max-width: 420px !important;
        margin: 0 auto !important;
    }
}

@media (max-width: 480px) {
    .vto-app-buttons {
        flex-direction: column !important;
        width: 100% !important;
    }

    .vto-app-button {
        width: 100% !important;
    }
}

/* --- How it Works --- */
.step-item {
    position: relative;
    padding-left: 16px;
    overflow: hidden;
}

.step-item.active .step-indicator {
    transform: scale-y(1);
}

.step-item.active .step-content {
    transform: translateX(8px);
}

.step-item.active h3 {
    color: #1D4BA7;
}

.step-item.active .step-number {
    transform: scale(1.05);
    box-shadow: 0 10px 25px -5px rgba(29, 75, 167, .25);
}

.step-content {
    transition: transform .3s ease-out;
}

#step-image-container {
    min-height: 600px;
    position: relative;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.step-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.step-image img {
    width: 100%;
    height: auto;
    object-position: center;
    max-height: 600px;
    border-radius: 20px;
}

.step-item .ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple .6s linear;
    background-color: rgba(29, 75, 167, .1);
}

@keyframes ripple {
    to {
        transform: scale(4) !important;
        opacity: 0 !important;
    }
}

@media (max-width:768px) {
    #step-image-container {
        min-height: 400px;
    }

    .step-image img {
        max-height: 400px;
    }

    .step-item {
        padding-left: 12px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        min-width: 50px;
        margin-right: 12px;
    }

    .step-number svg {
        width: 24px;
        height: 24px;
    }

    h3 {
        font-size: 16px;
    }

    p {
        font-size: 14px !important;
    }
}

/* --- Testimonials Section Styles --- */
.mirrago-testimonials-section {
    position: relative;
    overflow: hidden;
    background-color: #fff;
    padding: 2rem 0;
    z-index: 10;
}

.mirrago-testimonial-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 2.5rem;
    scroll-behavior: smooth;
    touch-action: pan-x;
    -webkit-user-select: none;
    user-select: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.mirrago-testimonial-track::-webkit-scrollbar {
    display: none !important;
}

.mirrago-testimonial-card {
    scroll-snap-align: start;
    flex-shrink: 0;
    border-radius: 22px;
    background-color: #fff;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.mirrago-nav-button {
    display: inline-flex !important;
    height: 3.5rem !important;
    width: 3.5rem !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 9999px !important;
    background-color: #ffffff !important;
    border: 2px solid #E2E8F0 !important;
    color: #1D4BA7 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05) !important;
}

.mirrago-nav-button:hover {
    background-color: #1D4BA7 !important;
    border-color: #1D4BA7 !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 15px -3px rgba(29, 75, 167, 0.2) !important;
}

.mirrago-control-bar {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .mirrago-control-bar {
        flex-direction: row;
        padding: 0 40px;
    }
}

@media (min-width: 1280px) {
    .mirrago-control-bar {
        padding: 0 40px;
    }
}

.mirrago-avatar {
    height: 3rem !important;
    width: 3rem !important;
    border-radius: 9999px !important;
    object-fit: cover !important;
}

.mirrago-thumbnail {
    height: 5rem !important;
    width: 7rem !important;
    border-radius: 0.75rem !important;
    object-fit: cover !important;
}

.mirrago-dots-container {
    display: flex !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    margin-top: 1rem !important;
    margin-bottom: 1.5rem !important;
}

.mirrago-dot {
    width: 0.75rem !important;
    height: 0.75rem !important;
    border-radius: 9999px !important;
    transition: all 0.3s ease-in-out !important;
}

.mirrago-tag-line {
    display: inline-flex !important;
    align-items: center !important;
    margin-bottom: 1rem !important;
    position: relative !important;
}

.mirrago-tag-line-text {
    padding: 0.375rem 1rem !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    border-radius: 9999px !important;
    color: #1D4BA7 !important;
    background-color: #E8F2FF !important;
}

.mirrago-main-heading {
    font-size: 1.875rem !important;
    line-height: 2.25rem !important;
    font-weight: 700 !important;
    margin-bottom: 1.5rem !important;
    position: relative !important;
    color: #1D4BA7 !important;
}

@media (min-width: 768px) {
    .mirrago-main-heading {
        font-size: 2.25rem !important;
    }
}

@media (min-width: 1024px) {
    .mirrago-main-heading {
        font-size: 3rem !important;
        line-height: 1 !important;
    }
}

.mirrago-heading-underline {
    position: absolute !important;
    bottom: -0.75rem !important;
    left: 0 !important;
    width: 6rem !important;
    height: 0.375rem !important;
    border-radius: 9999px !important;
    background: linear-gradient(to right, #346bc9, #1D4BA7) !important;
}

.mirrago-star-rating {
    display: flex !important;
    align-items: center !important;
    gap: 0.25rem !important;
    margin-top: 0.25rem !important;
    color: #F59E0B !important;
}

.mirrago-star {
    height: 1rem !important;
    width: 1rem !important;
    fill: currentColor !important;
}

/* --- Unique Section --- */
#mirragoCardContainer::-webkit-scrollbar {
    display: none;
}

#mirragoCardContainer {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

@media (max-width: 1024px) {
    .mirrago-main-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .mirrago-title-wrapper {
        text-align: center;
        margin-bottom: 1rem;
    }

    .mirrago-cards-container {
        width: 100%;
        max-width: 500px;
        height: auto;
        overflow: visible;
    }
}

@media (min-width: 1024px) {
    .mirrago-cards-container {
        height: 692px !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
    }
}

@media (max-width: 640px) {
    .mirrago-unique-section {
        padding: 0.5rem;
        min-height: auto;
    }

    .mirrago-main-container {
        padding: 1rem;
        gap: 1rem;
        min-height: auto;
    }

    .mirrago-title-wrapper {
        padding: 0.5rem;
        gap: 1rem;
        margin-bottom: 0.5rem;
    }

    .mirrago-cards-container {
        padding: 0.5rem;
        gap: 1rem;
        height: auto;
        max-width: 100%;
        overflow: visible;
    }

    .mirrago-feature-card {
        padding: 1rem;
        gap: 1rem;
        max-width: 100%;
    }

    .mirrago-card-image-container {
        height: 200px;
    }

    .mirrago-card-title {
        font-size: 1.125rem;
        line-height: 1.4;
    }

    .mirrago-card-description {
        font-size: 0.875rem;
        line-height: 1.4;
    }

    .mirrago-main-heading {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .mirrago-description {
        font-size: 0.875rem;
        line-height: 1.4;
    }
}

/* --- Fashion Grid --- */
.mirrago-heading {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    text-decoration: none;
}

.mirrago-heading::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 120px;
    height: 6px;
    border-radius: 9999px;
    background: linear-gradient(to right, #346bc9, #1D4BA7);
}

@media (min-width:768px) {
    .mirrago-heading::after {
        width: 160px;
        height: 7px;
    }
}

.nav-pill {
    background: #f3f4f6;
    color: #374151;
    border-radius: 9999px;
    border: 1px solid #e5e7eb;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .6);
    white-space: nowrap;
}

.nav-pill:hover {
    background: #e5e7eb;
    transform: translateY(-1px);
    color: #374151 !important;
}

.nav-pill.active {
    background: #e8f0ff;
    color: #1d4ed8;
    border-color: #bfdbfe;
    box-shadow: 0 1px 2px rgba(59, 130, 246, .12), inset 0 1px 0 rgba(255, 255, 255, .7);
    font-weight: 600;
}

.fashion-item {
    position: relative;
    overflow: hidden;
}

.fashion-item img {
    transition: transform .3s ease;
}

.fashion-item:hover img {
    transform: scale(1.1);
}

.fashion-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .4), transparent);
    transition: left .5s;
    z-index: 2;
}

.fashion-item:hover::before {
    left: 100%;
}

/* --- FAQ Section Styles --- */
.mg-panel.is-hidden {
    display: none;
}

.mg-tab.is-active {
    border-color: #1D4BA7 !important;
    background-color: #F1F5FF !important;
    box-shadow: 0 10px 15px -3px rgba(29, 75, 167, 0.1) !important;
}

.mg-item[open] {
    border-color: rgba(29, 75, 167, 0.2) !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05) !important;
}

.mg-summary::-webkit-details-marker {
    display: none;
}

.mg-summary {
    list-style: none;
}

.mg-content p {
    margin: 0;
}

/* Smooth transition for accordion */
.mg-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mg-item:hover {
    border-color: rgba(29, 75, 167, 0.2);
}

/* Hover effect for tabs that aren't active */
.mg-tab:not(.is-active):hover {
    background-color: #F8FAFC !important;
}

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

    .container {
        padding: 0 20px;
    }
}

/* --- Fashion Grid Header --- */
.mirrago-heading {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    text-decoration: none;
}

.mirrago-heading::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 120px;
    height: 6px;
    border-radius: 9999px;
    background: linear-gradient(to right, #346bc9, #1D4BA7);
}

@media (min-width: 768px) {
    .mirrago-heading::after {
        width: 160px;
        height: 7px;
    }
}

/* --- Problem Section CSS --- */
.problem-section-pro {
    padding: 80px 20px;
    background: #F0F7FF;
    font-family: 'Outfit', sans-serif;
    box-sizing: border-box;
}

.problem-section-pro * {
    box-sizing: border-box;
}

.problem-container {
    max-width: 1100px;
    margin: 0 auto;
}

.header-wrap {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.section-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #000000;
    margin: 0;
    line-height: 1.1;
}

.pulse-badge {
    background: #FEE2E2;
    color: #DC2626;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    border: 1px solid #FECACA;
    animation: subtlePulse 2s infinite;
}

@keyframes subtlePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.2);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(220, 38, 38, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
    }
}

.diagnostic-card {
    display: flex;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px -10px rgba(153, 27, 27, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.diagnostic-visual {
    flex: 2;
    background: linear-gradient(145deg, #DC2626, #991B1B);
    padding: 50px 40px;
    position: relative;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

@media (max-width: 900px) {
    #footer h4 {
        border-left: none !important;
        padding-left: 0 !important;
    }

    #footer .flex-col {
        align-items: center;
    }
}

/* --- Impact Section CSS --- */
.mirrago-pill-impact {
    background: #ebf2ff;
    padding: 100px 20px;
    font-family: 'Outfit', sans-serif;
    box-sizing: border-box;
}

.mirrago-pill-impact * {
    box-sizing: border-box;
}

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

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

.pill-badge {
    display: inline-block;
    background: #DBEAFE;
    color: #2563EB;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.impact-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #0F172A;
    margin: 0 0 15px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.impact-subtitle {
    font-size: 1.2rem;
    color: #64748B;
    line-height: 1.6;
    font-weight: 300;
}

.impact-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

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

.impact-main-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 25px 60px -15px rgba(59, 130, 246, 0.25);
    object-fit: cover;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.impact-main-image:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 35px 80px -20px rgba(59, 130, 246, 0.35);
}

.impact-stats-column {
    display: flex;
    flex-direction: column;
}

.pill-grid-system {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.impact-pill {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 30px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 15px 45px -10px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.impact-pill::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(29, 75, 167, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.impact-pill:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -15px rgba(29, 75, 167, 0.15);
    border-color: rgba(29, 75, 167, 0.2);
    background: #FFFFFF;
}

.impact-pill:hover::before {
    opacity: 1;
}

.pill-data {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.data-val {
    font-size: 2.25rem;
    font-weight: 900;
    color: #0F172A;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, #0F172A 0%, #1D4BA7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.data-lbl {
    font-size: 0.8rem;
    font-weight: 700;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pill-chart {
    font-size: 24px;
    color: #1D4BA7;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    background: rgba(29, 75, 167, 0.08);
    border-radius: 18px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.impact-pill:hover .pill-chart {
    background: #1D4BA7;
    color: #FFFFFF;
    transform: rotate(10deg) scale(1.1);
}

.chart-down {
    transform: rotate(0deg);
}

@media (max-width: 1024px) {
    .impact-two-column {
        gap: 40px;
    }

    .pill-grid-system {
        gap: 15px;
    }

    .impact-pill {
        padding: 20px 22px;
    }

    .data-val {
        font-size: 1.75rem;
    }

    .data-lbl {
        font-size: 0.8rem;
    }
}

@media (max-width: 900px) {
    .impact-two-column {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .impact-image-column {
        order: 1;
    }

    .impact-stats-column {
        order: 2;
    }

    .impact-main-image {
        max-width: 400px;
    }

    .pill-grid-system {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .impact-pill {
        padding: 24px 28px;
    }

    .data-val {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .mirrago-pill-impact {
        padding: 60px 16px;
    }

    .impact-header {
        margin-bottom: 40px;
    }

    .impact-title {
        font-size: 2rem;
    }

    .impact-subtitle {
        font-size: 1rem;
    }

    .impact-main-image {
        max-width: 100%;
        border-radius: 16px;
    }

    .pill-grid-system {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .impact-pill {
        border-radius: 16px;
        padding: 20px 24px;
    }

    .data-val {
        font-size: 1.75rem;
    }

    .pill-chart {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
}

/* --- Waitlist Section CSS --- */
/* --- PREMIUM BUSINESS HERO SECTION --- */
.business-hero-premium {
    background: linear-gradient(135deg, #4A90E2 0%, #5B9BD5 20%, #4A90E2 40%, #357ABD 60%, #4A90E2 80%, #5B9BD5 100%);
    min-height: 100vh;
    padding-top: 100px;
    margin-top: -90px;
}

@keyframes bounce-slow {

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

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

@keyframes float {

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

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

.animate-bounce-slow {
    animation: bounce-slow 4s ease-in-out infinite;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.business-hero-premium h1 {
    font-family: 'Outfit', sans-serif;
}

.business-hero-premium .container {
    max-width: 1400px;
}

@media (max-width: 1024px) {
    .business-hero-premium {
        min-height: auto;
        padding-top: 140px;
        padding-bottom: 80px;
    }
}

/* --- Carousel Dot Styles --- */
.mirrago-dot {
    background-color: #E2E8F0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mirrago-active-dot {
    background-color: #1D4BA7 !important;
    width: 24px !important;
}

.mirrago-inactive-dot {
    background-color: #E2E8F0 !important;
}

/* --- Redesigned Footer Styles --- */
#footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

#footer input::placeholder {
    color: #64748B;
}

#footer a {
    text-decoration: none;
}

#footer .footer-link-active {
    color: #1D4BA7 !important;
    font-weight: 600;
}

/* Social link hover effects */
#footer .fa-brands {
    font-size: 1.1rem;
}

/* Custom indicator for status pulsate */
@keyframes status-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

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

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

#footer .animate-pulse {
    animation: status-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Glassmorphism for newsletter */
#footer form input {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #footer .container {
        text-align: center;
    }

    #footer h4 {
        border-left: none !important;
        padding-left: 0 !important;
    }

    #footer .flex-col {
        align-items: center;
    }
}

/* --- LOGO MARQUEE ANIMATION --- */
@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

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

.brands-marquee-container {
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    padding: 20px 0;
    overflow: visible;
}

.brands-marquee-inner {
    display: flex;
    width: max-content;
    animation: marquee-scroll 40s linear infinite;
    padding: 10px 0;
    overflow: visible;
}

.brands-marquee-inner:hover {
    animation-play-state: paused;
}

.brand-logo-card {
    background: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 80px;
    transition: all 0.3s ease;
}

.brand-logo-card:hover {
    border-color: #1D4BA7;
    box-shadow: 0 10px 25px rgba(29, 75, 167, 0.1);
    transform: translateY(-5px);
}