/* assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #4B9DA9;
    /* Deep Navy */
    --primary-dark: #3E8691;
    --secondary: #E37434;
    /* Vibrant Orange */
    --accent: #91C6BC;
    /* Ice Blue */
    --vibrant-yellow: #F6F3C2;
    --vibrant-green: #91C6BC;
    --text: #1e293b;
    --text-muted: #475569;
    --light-bg: #ffffff;
    --ice: #ffffff;
    --dark: #4B9DA9;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(75, 157, 169, 0.1);

    /* Luxury Tokens */
    --luxury-shadow: 0 25px 50px -12px rgba(75, 157, 169, 0.15), 0 10px 15px -3px rgba(75, 157, 169, 0.05);
    --shadow-sm: 0 1px 3px rgba(75, 157, 169, 0.12), 0 1px 2px rgba(75, 157, 169, 0.24);
    --shadow-md: 0 10px 15px -3px rgba(75, 157, 169, 0.12), 0 4px 6px -2px rgba(75, 157, 169, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(75, 157, 169, 0.12), 0 10px 10px -5px rgba(75, 157, 169, 0.04);

    --font-heading: 'Bricolage Grotesque', sans-serif;
    --font-body: 'Manrope', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.6;
    background: #fff;
    overflow-x: hidden;
}

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

.container-large {
    max-width: 1380px;
}

/* Luxury Button System */
.btn-primary {
    background: var(--primary);
    color: #fff;
    padding: 16px 36px;
    border-radius: 16px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s var(--ease-out-expo);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    background: var(--secondary);
    box-shadow: var(--hard-shadow);
}

.btn-pill-sm {
    padding: 8px 18px;
    border-radius: 50px;
    background: var(--primary);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s var(--ease-out-expo);
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}

ul {
    list-style: none;
}

/* Unified Header Design - Restored Original Palette */
.top-announcement {
    background: var(--primary);
    /* Back to original solid navy */
    color: white;
    padding: 10px 0;
    font-size: 0.82rem;
    font-weight: 600;
}

.announcement-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-links a {
    color: #ffffff;
    font-weight: 600;
}

/* Navbar with Original Subtle Split */
.navbar {
    padding: 1.25rem 0;
    background: linear-gradient(105deg, var(--light-bg) 70%, rgba(145, 198, 188, 0.45) 70.2%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(75, 157, 169, 0.14);
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.navbar.scrolled {
    padding: 0.85rem 0;
    top: 0;
    background: linear-gradient(105deg, #ffffff 75%, #ffffff 75.2%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Original Link Color Persistence */
.nav-links li a {
    color: #475569;
}

.navbar.nav-up {
    transform: translateY(-100%);
    top: 0;
}

.navbar.nav-down {
    transform: translateY(0);
}

.navbar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: -0.04em;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2.2rem;
    align-items: center;
    margin-left: auto;
}

.nav-links li a {
    font-family: var(--font-heading);
    font-weight: 600;
    color: #475569;
    font-size: 0.88rem;
    letter-spacing: -0.01em;
    transition: all 0.3s;
    position: relative;
    padding: 8px 0;
}

.nav-links li a:hover {
    color: var(--primary);
}

.dropdown-link {
    position: relative;
}

.dropdown-link>a i {
    font-size: 0.65rem;
    margin-left: 0.25rem;
    opacity: 0.6;
    transition: transform 0.3s;
}

.dropdown-link:hover>a i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: white;
    min-width: 260px;
    padding: 1rem;
    border-radius: 16px;
    box-shadow: 0 20px 50px -10px rgba(15, 23, 42, 0.15);
    border: 1px solid rgba(226, 232, 240, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1001;
}

.dropdown-link:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

.dropdown-menu.mega-menu {
    width: 840px;
    min-width: 840px;
    padding: 0;
    display: block;
    /* Ensure it stays block for flex children */
}

.mega-flex {
    display: flex;
    min-height: 480px;
}

.mega-main {
    flex: 2;
    padding: 2.25rem;
    background: #ffffff;
}

.mega-sidebar {
    width: 240px;
    flex-shrink: 0;
    background: #fcfdfe;
    padding: 2.25rem 1.75rem;
    border-left: 1px solid #f1f5f9;
}

.mega-main .dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2rem;
    margin-bottom: 2.5rem;
}

.dropdown-item-premium,
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    text-decoration: none;
    transition: all 0.3s;
    padding: 0.5rem;
    border-radius: 12px;
}

.dropdown-item-premium:hover,
.dropdown-item:hover {
    background: #ffffff;
    transform: translateX(5px);
}

.icon-box,
.dropdown-item i {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* --- THE ELEGANT WAVE FOOTER (PREMIUM CLASSIC) --- */
.footer-wrap {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, rgba(145, 198, 188, 0.16) 100%);
    padding-top: 110px;
}

.footer-wave {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 102px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,160L48,176C96,192,192,224,288,224C384,224,480,192,576,165.3C672,139,768,117,864,128C960,139,1056,181,1152,186.7C1248,192,1344,160,1392,144L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
}

.footer-wrap .footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    padding: 36px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(75, 157, 169, 0.14);
    border-radius: 28px;
    box-shadow: 0 18px 40px rgba(75, 157, 169, 0.12);
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(75, 157, 169, 0.16);
}

.footer-wrap .footer-h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 850;
    color: var(--primary);
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.footer-wrap .footer-links ul li {
    margin-bottom: 15px;
}

.footer-wrap .footer-links a {
    color: #39515a;
    font-size: 0.95rem;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-wrap .footer-links a:hover {
    color: var(--secondary);
    transform: translateX(4px);
}

.footer-wrap .footer-brand-side {
    padding-right: 12px;
}

.footer-wrap .footer-brand-side p {
    font-size: 0.95rem;
    color: #58717a;
    line-height: 1.7;
    margin-top: 16px;
}

.footer-wrap .support-hours {
    margin-top: 15px;
    color: #58717a;
    font-size: 13px;
    line-height: 1.6;
}

.footer-wrap .support-hours i {
    color: var(--primary);
}

.footer-wrap .footer-bottom-bar {
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-wrap .footer-copyright {
    color: #69838b;
    font-size: 0.85rem;
}

.footer-wrap .footer-social-cluster {
    display: flex;
    gap: 12px;
}

.footer-wrap .footer-social-cluster a {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: 1px solid rgba(75, 157, 169, 0.22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 8px 18px rgba(75, 157, 169, 0.14);
}

.footer-wrap .footer-social-cluster a:hover {
    background: var(--secondary);
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 14px 26px rgba(227, 116, 52, 0.25);
}

/* CTA Row above footer */
.ready-box {
    text-align: center;
    margin-bottom: 80px;
    background: var(--primary);
    padding: 60px;
    border-radius: 40px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 26px 50px rgba(75, 157, 169, 0.28);
}

.ready-box::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(246, 243, 194, 0.36) 0%, transparent 70%);
    pointer-events: none;
}

.ready-box>* {
    position: relative;
    z-index: 1;
}

.ready-box h2 {
    font-size: 2.5rem;
    font-weight: 850;
    margin-bottom: 14px;
    letter-spacing: -0.03em;
}

.ready-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.03rem;
}

.btn-ready {
    display: inline-block;
    padding: 18px 40px;
    background: #ffffff;
    color: #2f6f78;
    border-radius: 100px;
    font-weight: 850;
    font-size: 1.1rem;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.16);
    transition: all 0.35s;
}

.ready-box-action {
    margin-top: 30px;
}

.btn-ready:hover {
    transform: translateY(-3px) scale(1.03);
    background: var(--vibrant-yellow);
    color: #2a646d;
}

@media (max-width: 992px) {
    .footer-wrap .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding: 28px;
    }

    .ready-box {
        padding: 40px 20px;
    }

    .ready-box h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 640px) {
    .footer-wrap .footer-grid {
        grid-template-columns: 1fr;
        border-radius: 22px;
    }

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

.dropdown-item div strong,
.text-box strong {
    display: block;
    font-size: 0.94rem;
    font-family: var(--font-heading);
    color: var(--secondary);
    margin-bottom: 2px;
}

.dropdown-item div span,
.text-box span {
    font-size: 0.8rem;
    color: #94a3b8;
    line-height: 1.3;
}

.mega-footer-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 25px;
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
    border: 1px solid #e0e7ff;
    border-radius: 16px;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.mega-footer-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.1);
    border-color: #bfdbfe;
}

.banner-tag {
    display: flex;
    align-items: center;
    gap: 12px;
}

.banner-tag i {
    font-size: 1.4rem;
    color: #91C6BC;
}

.banner-tag span {
    font-weight: 700;
    color: #4B9DA9;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
}

.btn-pill-sm {
    background: var(--secondary);
    color: white !important;
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(227, 116, 52, 0.22);
    flex-shrink: 0;
}

.btn-pill-sm:hover {
    background: var(--vibrant-yellow);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(246, 243, 194, 0.28);
}

.faq-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 600;
}

.faq-info i {
    font-size: 1.2rem;
}

.mega-sidebar h3 {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.mega-sidebar ul li {
    margin-bottom: 1rem;
}

.mega-sidebar ul li a {
    font-size: 0.95rem;
    font-weight: 600;
    color: #475569;
    transition: all 0.2s;
}

.mega-sidebar ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.menu-toggle {
    background: #f1f5f9;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    font-size: 1.2rem;
    color: var(--secondary);
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
}

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

    .navbar {
        z-index: 10000;
    }

    .desktop-nav {
        display: none !important;
    }

    body.menu-open #mobile-toggle {
        display: none !important;
    }

    /* Standalone Sidebar */
    .mobile-sidebar .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: #ffffff;
        background-image:
            radial-gradient(at 0% 0%, rgba(75, 157, 169, 0.03) 0px, transparent 50%),
            radial-gradient(at 100% 0%, rgba(227, 116, 52, 0.03) 0px, transparent 50%);
        flex-direction: column;
        padding: 0;
        gap: 0;
        align-items: flex-start;
        transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: -15px 0 50px rgba(0, 0, 0, 0.1);
        z-index: 200000;
        /* ABOVE EVERYTHING */
        display: flex;
        overflow-y: auto;
        overflow-x: hidden;
        /* Prevent horizontal clipping */
        visibility: hidden;
        pointer-events: none;
    }

    .mobile-sidebar .nav-links.active {
        right: 0;
        visibility: visible;
        pointer-events: auto;
    }

    .sidebar-header {
        position: sticky;
        top: 0;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 20px 24px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        z-index: 10;
    }

    .sidebar-header img {
        height: 38px;
    }

    .sidebar-close {
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        width: 40px;
        height: 40px;
        border-radius: 12px;
        color: #64748b;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s;
    }

    .sidebar-close:hover {
        background: #fee2e2;
        color: #ef4444;
        border-color: #fecaca;
    }

    .nav-links>li:not(.sidebar-header):not(.sidebar-footer) {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.02);
    }

    .nav-links>li>a {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        padding: 15px 24px !important;
        font-size: 0.95rem !important;
        /* Smaller text */
        color: #1e293b !important;
        font-weight: 700 !important;
        width: 100%;
        transition: all 0.3s;
    }

    /* --- Dropdown Toggle Arrow --- */
    .mobile-sidebar .dropdown-link>a i.fa-chevron-down {
        transition: transform 0.3s ease;
    }

    .mobile-sidebar .dropdown-link.active>a i.fa-chevron-down {
        transform: rotate(180deg);
    }

    /* --- Dropdown Panel (collapsed by default) --- */
    .mobile-sidebar .dropdown-link .dropdown-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: static !important;
        width: 100% !important;
        box-shadow: none !important;
        border: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
        background: transparent !important;
        transform: none !important;
    }

    .mobile-sidebar .dropdown-link.active .dropdown-menu {
        max-height: 800px;
    }

    /* --- Button Grid inside dropdown --- */
    .mobile-sidebar .dropdown-btn-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        padding: 12px 24px 16px;
        background: #f8fafc;
        border-top: 1px solid #f1f5f9;
    }

    .mobile-sidebar .dropdown-btn {
        background: #ffffff;
        border: 1px solid #e2e8f0;
        padding: 10px 14px !important;
        border-radius: 8px !important;
        font-size: 0.82rem !important;
        font-weight: 600 !important;
        color: #334155 !important;
        text-decoration: none !important;
        display: inline-flex !important;
        align-items: center;
        white-space: nowrap;
        transition: all 0.25s ease;
    }

    .mobile-sidebar .dropdown-btn:hover,
    .mobile-sidebar .dropdown-btn:active {
        background: var(--primary);
        color: #fff !important;
        border-color: var(--primary);
    }

    .nav-links li[data-side="alt"] a::after {
        content: '\f105';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        font-size: 0.8rem;
        opacity: 0.3;
    }

    /* Sidebar Overlay */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(15, 23, 42, 0.6);
        backdrop-filter: blur(4px);
        z-index: 150000;
        /* ABOVE top-announcement, BELOW Sidebar */
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-actions {
        display: none;
    }

    .sidebar-footer {
        margin-top: auto;
        padding: 30px 24px 40px;
        background: #f8fafc;
        width: 100%;
        border-top: 1px solid #e2e8f0;
    }

    .sidebar-contact h4 {
        font-size: 0.75rem;
        text-transform: uppercase;
        color: #94a3b8;
        font-weight: 800;
        letter-spacing: 0.1em;
        margin-bottom: 20px;
    }

    .sidebar-contact a {
        display: flex !important;
        align-items: center;
        gap: 12px;
        padding: 10px 0 !important;
        font-size: 0.95rem !important;
        color: #475569 !important;
        font-weight: 600 !important;
    }

    .sidebar-social {
        display: flex;
        gap: 12px;
        margin-top: 25px;
    }

    .sidebar-social a {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        background: white;
        display: flex !important;
        align-items: center;
        justify-content: center;
        color: #64748b !important;
        border: 1px solid #e2e8f0;
    }

    .sidebar-tagline {
        margin-top: 25px;
        font-size: 0.8rem;
        color: #cbd5e1;
        font-weight: 700;
        text-align: center;
        border-top: 1px dotted #e2e8f0;
        padding-top: 15px;
    }
}

/* Desktop Navigation Styles */
@media (min-width: 993px) {

    .mobile-sidebar,
    .nav-overlay {
        display: none !important;
    }

    .desktop-nav {
        display: block;
        margin-left: auto;
    }

    .sidebar-header,
    .sidebar-footer {
        display: none !important;
    }
}


/* --- BREATHTAKING HERO (ELITE UPGRADE) --- */
.hero {
    padding: 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.hero-grid-v2 {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}


.hero-visual {
    display: flex;
    gap: 20px;
    height: 600px;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}

.scroller-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.scroller-up .scroller-inner {
    animation: scrollUp 20s linear infinite;
}

.scroller-down .scroller-inner {
    animation: scrollDown 20s linear infinite;
}

@keyframes scrollUp {
    from {
        transform: translateY(0);
    }

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

@keyframes scrollDown {
    from {
        transform: translateY(calc(-50% - 10px));
    }

    to {
        transform: translateY(0);
    }
}

.visual-card {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    text-align: center;
    transition: all 0.3s;
}

.visual-card img {
    width: 50px;
    margin-bottom: 12px;
}

.visual-card h4 {
    font-size: 1rem;
    color: var(--secondary);
    margin-bottom: 4px;
}

.visual-card span {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Specific Card Styles */
.visual-card.bg-blue {
    background: rgba(46, 114, 182, 0.04);
    border-color: rgba(46, 114, 182, 0.1);
}

.visual-card.bg-navy {
    background: var(--secondary);
    border: none;
}

.visual-card.bg-navy h4 {
    color: white;
}

.visual-card.bg-navy span {
    color: rgba(255, 255, 255, 0.6);
}

/* Left Content V2 Refinement */
.hero-btns-v2 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary) !important;
    padding: 0.8rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--primary);
    color: white !important;
}

.hero-stats-row {
    display: flex;
    gap: 2.5rem;
    border-top: 1px solid #f1f5f9;
    padding-top: 2rem;
}

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

.h-stat strong {
    font-size: 1.4rem;
    color: var(--secondary);
    font-weight: 850;
}

.h-stat span {
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 600;
}

@media (max-width: 992px) {
    .hero {
        padding: 150px 0 60px;
    }

    .hero-grid-v2 {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-visual {
        height: auto;
        max-width: 100%;
        margin: 0 auto;
        flex-direction: column;
        gap: 15px;
        mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    }

    .scroller-col {
        flex-direction: row;
        width: 100%;
        overflow: hidden;
    }

    .scroller-inner {
        flex-direction: row;
        width: max-content;
        gap: 15px;
    }

    .scroller-up .scroller-inner {
        animation: scrollLeft 25s linear infinite;
    }

    .scroller-down .scroller-inner {
        animation: scrollRight 25s linear infinite;
    }

    .visual-card {
        width: 180px;
        flex-shrink: 0;
        padding: 1rem;
    }

    .hero-stats-row {
        justify-content: center;
        gap: 2rem;
    }

    .hero-btns-v2 {
        justify-content: center;
    }
}

@keyframes scrollLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 7.5px));
    }
}

@keyframes scrollRight {
    from {
        transform: translateX(calc(-50% - 7.5px));
    }

    to {
        transform: translateX(0);
    }
}

/* Stats Overview Section (Unique Asymmetric Design) */

/* --- THE MOMENTUM TICKER (SCROLLING FEATURES) --- */
.momentum-ticker {
    background: #ffffff;
    padding: 35px 0;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid #f1f5f9;
}

.ticker-track {
    display: flex;
    width: fit-content;
}

.ticker-content {
    display: flex;
    white-space: nowrap;
    animation: scroll-momentum 40s linear infinite;
    will-change: transform;
}

.ticker-pill {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 28px;
    margin: 0 15px;
    border-radius: 100px;
    background: #ffffff;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.05);
    border: 1px solid #f1f5f9;
}

.ticker-pill img {
    width: 32px;
    height: 32px;
}

.ticker-pill span {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--secondary);
    white-space: nowrap;
}

/* Vibrant Variations */
.pill-blue {
    background: rgba(145, 198, 188, 0.35);
    border-color: rgba(145, 198, 188, 0.95);
}

.pill-green {
    background: rgba(227, 116, 52, 0.10);
    border-color: rgba(227, 116, 52, 0.28);
}

.pill-yellow {
    background: rgba(246, 243, 194, 0.18);
    border-color: rgba(246, 243, 194, 0.38);
}

.pill-red {
    background: rgba(75, 157, 169, 0.05);
    border-color: rgba(75, 157, 169, 0.14);
}

.pill-purple {
    background: rgba(227, 116, 52, 0.08);
    border-color: rgba(227, 116, 52, 0.2);
}

.pill-navy {
    background: rgba(75, 157, 169, 0.05);
    border-color: rgba(75, 157, 169, 0.12);
}

@keyframes scroll-momentum {
    0% {
        transform: translateX(0);
    }

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

@media (max-width: 768px) {
    .momentum-ticker {
        padding: 25px 0;
    }

    .ticker-item {
        font-size: 1.1rem;
        margin: 0 25px;
    }
}

.stats-overview {
    padding-bottom: 120px;
    margin-top: -20px;
    position: relative;
    z-index: 20;
}

@media (max-width: 768px) {
    .stats-overview {
        padding-bottom: 50px;
        margin-top: 50px;
    }
}

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

.stat-card {
    background: #ffffff;
    padding: 3rem 2rem 2.5rem;
    border-radius: 35px;
    box-shadow: 0 14px 30px rgba(75, 157, 169, 0.08);
    border: 1px solid rgba(75, 157, 169, 0.14);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: visible;
}

.stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.08));
    pointer-events: none;
}

.stat-card:nth-child(1) {
    background: linear-gradient(160deg, rgba(145, 198, 188, 0.62), #ffffff 74%);
    border-color: rgba(75, 157, 169, 0.24);
}

.stat-card:nth-child(2) {
    background: linear-gradient(160deg, rgba(227, 116, 52, 0.34), #ffffff 74%);
    border-color: rgba(227, 116, 52, 0.28);
}

.stat-card:nth-child(3) {
    background: linear-gradient(160deg, rgba(246, 243, 194, 0.92), #ffffff 76%);
    border-color: rgba(75, 157, 169, 0.2);
}

.stat-card:nth-child(4) {
    background: linear-gradient(160deg, rgba(75, 157, 169, 0.44), #ffffff 76%);
    border-color: rgba(75, 157, 169, 0.28);
}

/* Staggered Effect */
.stat-card:nth-child(even) {
    transform: translateY(30px);
}

.stat-card:hover {
    transform: scale(1.05) translateY(0);
    background: white;
    box-shadow: 0 22px 45px rgba(75, 157, 169, 0.16) !important;
    border-color: var(--primary);
}

.stat-card:nth-child(even):hover {
    transform: scale(1.05) translateY(30px);
}

/* Floating Icon - Clean Style */
.stat-icon {
    width: 65px;
    height: 65px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 8px 16px rgba(75, 157, 169, 0.14);
    border: 2px solid rgba(75, 157, 169, 0.12);
    /* Branded border instead */
    z-index: 2;
    transition: all 0.3s;
}

.stat-card:nth-child(1) .stat-icon {
    background: rgba(145, 198, 188, 0.28);
}

.stat-card:nth-child(2) .stat-icon {
    background: rgba(227, 116, 52, 0.14);
}

.stat-card:nth-child(3) .stat-icon {
    background: rgba(246, 243, 194, 0.9);
}

.stat-card:nth-child(4) .stat-icon {
    background: rgba(75, 157, 169, 0.2);
}

.stat-icon.icon-green {
    color: var(--secondary);
    border-color: rgba(227, 116, 52, 0.22);
}

.stat-icon.icon-blue {
    color: var(--primary);
    border-color: rgba(75, 157, 169, 0.22);
}

.stat-icon.icon-purple {
    color: var(--vibrant-yellow);
    border-color: rgba(246, 243, 194, 0.25);
}

.stat-card:hover .stat-icon {
    transform: translateX(-50%) translateY(-10px) rotate(10deg);
}

.stat-info h3 {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 700;
    /* Lower weight as requested */
    color: var(--primary);
    margin-bottom: 5px;
    letter-spacing: -0.01em;
}

.stat-info p {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    color: #5f7680;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

@media (max-width: 1100px) {
    .plan-grid {
        grid-template-columns: repeat(3, 280px);
        padding-bottom: 40px;
        overflow-x: auto;
        justify-content: flex-start;
        padding-left: 20px;
        padding-right: 20px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .plan-grid::-webkit-scrollbar {
        display: none;
    }

    .plan-card {
        scroll-snap-align: center;
        width: 280px;
        min-width: 280px;
        flex-shrink: 0;
    }

    .plan-card.is-popular {
        transform: scale(1);
        border: 2px solid var(--primary);
    }
}

@media (max-width: 768px) {
    .plan-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 80px;
    }

    .stat-card:nth-child(even) {
        transform: none;
    }

    .stat-card:nth-child(even):hover {
        transform: scale(1.05);
    }
}

@media (max-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2x2 on mobile as requested */
        gap: 30px 15px;
        /* Tighter gap for mobile */
    }

    .stat-card {
        padding: 1.5rem 1rem;
    }

    .stat-info h3 {
        font-size: 1.15rem;
    }

    .stat-info p {
        font-size: 0.85rem;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1rem;
        top: -25px;
    }
}

/* Features */
.section {
    padding: 8rem 0;
}

.section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.section-title h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    padding: 3.5rem;
    border-radius: 32px;
    background: white;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    border-color: rgba(227, 116, 52, 0.3);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(145, 198, 188, 0.35);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 1.05rem;
    color: var(--text-muted);
}

/* Footer */
.footer {
    background: var(--secondary);
    padding: 6rem 0 3rem;
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.footer-logo {
    color: white;
    margin-bottom: 1.5rem;
    display: block;
}

.footer h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer ul li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #94a3b8;
}

.footer-links a:hover {
    color: var(--primary);
}

.social-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 1.5rem;
}

.social-links i {
    font-size: 1.5rem;
    color: #94a3b8;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 3rem;
    text-align: center;
    color: #94a3b8;
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

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

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

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

/* Setup Process Section Overlay */
.setup-process {
    padding: 100px 0;
    background: #ffffff;
}

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

.setup-card {
    padding: 2.8rem 2.2rem;
    border-radius: 24px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.setup-card:hover {
    transform: translateY(-8px);
}

.setup-icon {
    width: 55px;
    height: 55px;
    background: #ffffff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.8rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.setup-card h3 {
    font-size: 1.35rem;
    font-weight: 850;
    color: var(--secondary);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.setup-card p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 500;
}

/* Soft Pastel Backgrounds from user reference image */
.setup-card.bg-soft-blue {
    background: rgba(145, 198, 188, 0.35);
}

.setup-card.bg-soft-blue i {
    color: var(--primary);
}

.setup-card.bg-soft-pink {
    background: rgba(227, 116, 52, 0.10);
}

.setup-card.bg-soft-pink i {
    color: var(--secondary);
}

.setup-card.bg-soft-green {
    background: rgba(246, 243, 194, 0.18);
}

.setup-card.bg-soft-green i {
    color: var(--vibrant-yellow);
}

.setup-card.bg-soft-gray {
    background: #ffffff;
    border: 1px solid rgba(75, 157, 169, 0.08);
}

.setup-card.bg-soft-gray i {
    color: var(--primary);
}

@media (max-width: 992px) {
    .setup-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

/* Feature Discovery - Bento Grid System */
.feature-discovery {
    padding: 30px 0;
    background: #ffffff;
}

.badge-accent {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(75, 157, 169, 0.08);
    color: var(--primary);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 25px;
}

.bento-item {
    border-radius: 32px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.bento-item:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.1);
}

.bento-big {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
}

.bento-wide {
    grid-column: span 2;
    display: flex;
    align-items: center;
}

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

.bento-icon {
    width: 54px;
    height: 54px;
    background: #ffffff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    color: var(--primary);
}

.bento-icon.color-pink {
    color: var(--secondary);
}

.bento-icon.color-green {
    color: var(--primary);
}

.bento-icon.color-yellow {
    color: var(--vibrant-yellow);
}

.bento-icon.color-purple {
    color: var(--secondary);
}

.bento-icon.color-blue {
    color: var(--primary);
}

.bento-icon.bg-blue {
    background: var(--primary);
    color: white;
}

.bento-item h3 {
    font-size: 1.6rem;
    font-weight: 850;
    margin-bottom: 1.2rem;
    line-height: 1.2;
    color: inherit;
    font-family: var(--font-heading);
}

.bento-item p {
    font-size: 1.05rem;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* UI Visual for Big Card */
.ui-mockup {
    margin-top: 3rem;
    background: #ffffff;
    border-bottom: none;
    border-radius: 20px 20px 0 0;
    padding: 2rem;
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
}

.ui-line {
    height: 8px;
    background: #f1f5f9;
    border-radius: 4px;
    margin-bottom: 12px;
}

.ui-line.short {
    width: 60%;
}

.ui-total {
    margin-top: 1.5rem;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--primary);
}

.app-badges {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 2rem;
}

.app-badges img {
    height: 35px;
}

.app-badges span {
    font-weight: 700;
    font-size: 0.9rem;
}

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

    .bento-wide {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-big,
    .bento-wide {
        grid-column: auto;
        grid-row: auto;
    }
}

/* Brand Ticker (Updated - Brand Blue Theme) */
.brand-ticker {
    padding: 35px 0;
    background: #ffffff;
    border-top: 1px solid rgba(75, 157, 169, 0.08);
    border-bottom: 1px solid rgba(75, 157, 169, 0.08);
    overflow: hidden;
}

.ticker-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
    justify-content: center;
}

.ticker-label {
    font-size: 0.88rem;
    font-weight: 850;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    white-space: nowrap;
}

.ticker-logos {
    display: flex;
    align-items: center;
    gap: 4.5rem;
}

.ticker-logos img {
    height: 32px;
    opacity: 0.75;
    filter: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.ticker-logos img:hover {
    opacity: 1;
    filter: none;
    transform: scale(1.15);
}

@media (max-width: 992px) {
    .ticker-wrapper {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .ticker-logos {
        gap: 2rem;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Industry Solutions (Premium Grid) */
.industry-solutions {
    padding: 100px 0;
    background: #ffffff;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.industry-card {
    padding: 2.5rem;
    background: #fcfdfe;
    border: 1.5px solid #f1f5f9;
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.industry-card:hover {
    background: #ffffff;
    border-color: #3677b8;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(54, 119, 184, 0.08);
}

.industry-icon {
    width: 65px;
    height: 65px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

/* Sophisticated Soft Backgrounds */
.bg-blue-soft {
    background: #ffffff;
    color: #91C6BC;
}

.bg-green-soft {
    background: #ecfdf5;
    color: #10b981;
}

.bg-pink-soft {
    background: #fff1f2;
    color: #f43f5e;
}

.bg-yellow-soft {
    background: #fffbeb;
    color: #f59e0b;
}

.bg-purple-soft {
    background: #f5f3ff;
    color: #8b5cf6;
}

.bg-indigo-soft {
    background: #eef2ff;
    color: #6366f1;
}

.industry-info h3 {
    font-size: 1.45rem;
    font-weight: 850;
    color: #1e293b;
    margin-bottom: 0.6rem;
}

.industry-info p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    font-weight: 500;
}

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

@media (max-width: 768px) {
    .industry-grid {
        grid-template-columns: 1fr;
    }

    .industry-card {
        padding: 2rem;
    }
}

/* Aurora Industry Solutions (Elite Design with Contextual BG) */
.industry-solutions-aurora {
    padding: 30px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Background Atmospheric Glows */
.industry-solutions-aurora::before {
    content: none;
    position: absolute;
    top: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(54, 119, 184, 0.15) 0%, transparent 70%);
    z-index: 0;
}

.section-header-elite {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.badge-elite {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(145, 198, 188, 0.35);
    border: 1px solid rgba(75, 157, 169, 0.08);
    color: var(--primary);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
}

.section-header-elite h2 {
    font-size: 3rem;
    font-weight: 850;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-header-elite h2 span {
    color: var(--secondary);
}

.section-header-elite p {
    color: #64748b;
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
}

.aurora-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.aurora-card {
    position: relative;
    padding: 45px 35px;
    background: #ffffff;
    border: 1px solid rgba(75, 157, 169, 0.10);
    border-radius: 32px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.aurora-card:hover {
    background: #ffffff;
    border-color: rgba(227, 116, 52, 0.28);
    transform: translateY(-10px) scale(1.02);
}

.aurora-num {
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(75, 157, 169, 0.04);
    line-height: 1;
    z-index: 0;
    transition: all 0.5s ease;
}

.aurora-card:hover .aurora-num {
    color: rgba(75, 157, 169, 0.08);
    transform: scale(1.1);
}

.aurora-icon {
    width: 60px;
    height: 60px;
    background: rgba(145, 198, 188, 0.30);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.aurora-content {
    position: relative;
    z-index: 1;
}

.aurora-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}

.aurora-content p {
    color: #64748b;
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.aurora-accent {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(75, 157, 169, 0.06);
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Aurora Color Identity */
.aurora-blue .aurora-icon {
    color: var(--primary);
    border-color: rgba(75, 157, 169, 0.18);
}

.aurora-blue .aurora-accent {
    color: var(--primary);
    background: rgba(75, 157, 169, 0.08);
}

.aurora-green .aurora-icon {
    color: var(--secondary);
    border-color: rgba(227, 116, 52, 0.25);
}

.aurora-green .aurora-accent {
    color: var(--secondary);
    background: rgba(227, 116, 52, 0.10);
}

.aurora-pink .aurora-icon {
    color: var(--vibrant-yellow);
    border-color: rgba(246, 243, 194, 0.3);
}

.aurora-pink .aurora-accent {
    color: var(--vibrant-yellow);
    background: rgba(246, 243, 194, 0.16);
}

.aurora-amber .aurora-icon {
    color: var(--secondary);
    border-color: rgba(227, 116, 52, 0.2);
}

.aurora-amber .aurora-accent {
    color: var(--secondary);
    background: rgba(227, 116, 52, 0.10);
}

.aurora-purple .aurora-icon {
    color: var(--primary);
    border-color: rgba(75, 157, 169, 0.2);
}

.aurora-purple .aurora-accent {
    color: var(--primary);
    background: rgba(75, 157, 169, 0.08);
}

.aurora-indigo .aurora-icon {
    color: var(--accent);
    border-color: rgba(145, 198, 188, 0.7);
}

.aurora-indigo .aurora-accent {
    color: var(--primary);
    background: rgba(145, 198, 188, 0.38);
}

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

@media (max-width: 768px) {
    .aurora-grid {
        grid-template-columns: 1fr;
    }

    .section-header-elite h2 {
        font-size: 2.2rem;
    }
}


/* --- PRICING SECTION V4 (DUAL-TONE SPLIT - LIKE IMAGE) --- */
.plan-section {
    padding: 100px 0 160px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* The Blue Canopy (Split Background) */
.plan-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 550px;
    background: linear-gradient(180deg, rgba(145, 198, 188, 0.55) 0%, rgba(246, 243, 194, 0.14) 55%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.plan-header {
    text-align: center;
    position: relative;
    z-index: 5;
    margin-bottom: 80px;
}

.plan-header h2 {
    font-size: 3rem;
    font-weight: 850;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.plan-header p {
    color: #475569;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 10;
}

.pricing-tag {
    display: inline-block;
    margin-bottom: 12px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(145, 198, 188, 0.26);
    color: #3E8691;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pricing-meta-note {
    margin: 10px 0 18px;
    color: #64748b;
    font-size: 0.9rem;
    text-align: center;
}

.plan-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 35px;
    /* Reduced vertical padding */
    text-align: center;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid #f1f5f9;
}

.plan-card.is-popular {
    border-color: var(--primary);
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 30px 60px -12px rgba(75, 157, 169, 0.18);
    position: relative;
    /* Essential for badge */
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--secondary), var(--vibrant-yellow));
    color: white;
    padding: 6px 18px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 10px 20px rgba(227, 116, 52, 0.24);
    white-space: nowrap;
}

@media (max-width: 1100px) {
    .plan-grid {
        display: flex !important;
        grid-template-columns: none !important;
        overflow-x: auto !important;
        gap: 20px !important;
        padding: 20px 20px 40px !important;
        scroll-snap-type: x mandatory !important;
        scrollbar-width: none !important;
        -webkit-overflow-scrolling: touch !important;
    }
    .plan-grid::-webkit-scrollbar { display: none !important; }
    .plan-card {
        min-width: 290px !important;
        width: 290px !important;
        flex-shrink: 0 !important;
        scroll-snap-align: center !important;
        transform: none !important;
        margin: 0 !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
        z-index: 1 !important;
    }

    .plan-header h2 {
        font-size: 2.2rem !important;
        letter-spacing: normal;
    }
}

.plan-card.is-popular:hover {
    transform: scale(1.03) translateY(-10px);
}

@media (max-width: 768px) {
    .plan-header h2 {
        font-size: 1.8rem !important;
    }
}

.plan-name {
    font-size: 1.3rem;
    /* Slightly smaller */
    font-weight: 850;
    color: #1e293b;
    margin-bottom: 20px;
}

.plan-price {
    font-size: 2.8rem;
    /* Slightly smaller from 3rem */
    font-weight: 800;
    color: #1e293b;
    /* Neutral dark color for all */
    margin-bottom: 5px;
}

/* Removed the colorful overrides for Pro and Enterprise prices */

.plan-price span {
    font-size: 1rem;
    color: #94a3b8;
    font-weight: 500;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    /* Reduced margin from 40px */
    border-top: 1px solid #f1f5f9;
    padding-top: 25px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    /* Reduced from 18px */
    color: #64748b;
    font-size: 0.95rem;
    text-align: left;
}

.plan-features li i {
    font-size: 1rem;
}

/* Feature check colors based on card (Vibrant Upgrades) */
.plan-card li i.check-starter {
    color: var(--vibrant-yellow);
}

.plan-card li i.check-pro {
    color: var(--primary);
}

.plan-card li i.check-enterprise {
    color: var(--accent);
}

/* Responsive CTA Buttons (Custom Upgrade) */
.plan-btn {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.plan-btn i {
    font-size: 1.1rem;
}

.plan-cta-desktop {
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-cta-mobile {
    display: none;
    align-items: center;
    gap: 10px;
}

@media (max-width: 768px) {
    .plan-cta-desktop {
        display: none;
    }

    .plan-cta-mobile {
        display: flex;
    }
}

.btn-starter {
    background: var(--vibrant-yellow);
    color: #000;
    /* Dark text for contrast on yellow */
}

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

.btn-enterprise {
    background: var(--accent);
    color: var(--primary);
}

.plan-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* --- FAQ SECTION V9 (THE BALANCED SIDEKICK - INSPIRED BY IMAGE) --- */
.faq-section {
    padding: 60px 0;
    background: #ffffff;
}

.faq-balanced-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-balanced-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.faq-balanced-header h2 {
    font-size: 3.5rem;
    font-weight: 850;
    color: #0f172a;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
}

.faq-balanced-header p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.7;
}

.faq-balanced-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.faq-balanced-visual {
    flex: 0 0 45%;
}

.faq-balanced-visual img {
    width: 100%;
    border-radius: 120px 20px 120px 20px;
    /* Stylish Irregular Radius as requested */
    box-shadow: 0 40px 80px -20px rgba(15, 23, 42, 0.1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-balanced-visual img:hover {
    transform: scale(1.02) rotate(-1deg);
}

.faq-balanced-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-balanced-card {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    transition: all 0.4s ease;
}

.faq-balanced-card.is-open {
    border-color: #0f172a;
}

.faq-balanced-top {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-balanced-card span {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.4;
}

.faq-toggle-icon {
    font-size: 1.5rem;
    color: #64748b;
    font-weight: 300;
    transition: all 0.3s;
    width: 25px;
    text-align: center;
}

.faq-balanced-card.is-open .faq-toggle-icon {
    color: #0f172a;
}

.faq-balanced-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    color: #64748b;
    line-height: 1.8;
    font-size: 1.05rem;
}

.faq-balanced-card.is-open .faq-balanced-answer {
    max-height: 500px;
    padding: 0 30px 30px 30px;
}

@media (max-width: 1100px) {
    .faq-balanced-grid {
        flex-direction: column;
        gap: 60px;
    }

    .faq-balanced-visual {
        flex: none;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .faq-balanced-header h2 {
        font-size: 2.8rem;
    }
}

/* --- THE VANTAGE MOSAIC (BENTO GRID - RESTORED) --- */
.vantage-showcase {
    padding: 60px 0;
    background: #ffffff;
    overflow: hidden;
}

.vantage-header {
    text-align: left;
    max-width: 800px;
    margin-bottom: 80px;
}

.vantage-header h2 {
    font-size: 4rem;
    font-weight: 950;
    color: #0f172a;
    line-height: 1.1;
    letter-spacing: -0.05em;
    margin-bottom: 20px;
}

.vantage-header h2 span {
    color: var(--primary);
}

.vantage-header p {
    color: #64748b;
    font-size: 1.25rem;
    max-width: 600px;
}

/* Feature Mosaic Grid */
.vantage-mosaic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 380px);
    gap: 30px;
}

.vantage-tile {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 40px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    display: flex;
    flex-direction: column;
}

.vantage-tile:hover {
    transform: scale(0.98);
    background: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 40px 80px rgba(15, 23, 42, 0.08);
}

/* Tile Sizing */
.vantage-tile-hero {
    grid-column: span 2;
    grid-row: span 2;
}

.vantage-tile-sm-1 {
    grid-column: span 1;
}

.vantage-tile-sm-2 {
    grid-column: span 1;
}

.vantage-tile-wide {
    grid-column: span 2;
}

/* Tile Content */
.vantage-tile-icon {
    width: 60px;
    height: 60px;
    background: #ffffff;
    color: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.vantage-tile h3 {
    font-size: 1.8rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 15px;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.vantage-tile p {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.6;
}

.vantage-hero-visual {
    margin-top: auto;
    position: relative;
    right: -50px;
    bottom: -50px;
    transform: rotate(-5deg);
}

.vantage-hero-visual img {
    width: 120%;
    border-radius: 20px;
    box-shadow: 0 40px 100px rgba(15, 23, 42, 0.2);
}

.vantage-status-pulse {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(145, 198, 188, 0.5) 0%, transparent 70%);
    border-radius: 50%;
    animation: vantage-float 4s ease-in-out infinite;
}

@keyframes vantage-float {

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

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

@media (max-width: 1100px) {
    .vantage-mosaic-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 25px;
    }

    .vantage-tile-hero,
    .vantage-tile-sm-1,
    .vantage-tile-sm-2,
    .vantage-tile-wide {
        grid-column: span 2;
    }

    .vantage-hero-visual {
        right: 0;
        bottom: 0;
        transform: none;
        width: 100%;
        margin-top: 30px;
    }

    .vantage-hero-visual img {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .vantage-header h2 {
        font-size: 2.5rem;
        letter-spacing: -0.03em;
    }

    .vantage-tile {
        padding: 35px;
        border-radius: 30px;
    }

    .vantage-tile h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .vantage-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .vantage-header h2 {
        font-size: 2.2rem;
    }

    .vantage-header p {
        font-size: 1rem;
        margin: 0 auto;
    }

    .vantage-tile {
        padding: 30px 20px;
    }

    .vantage-tile-icon {
        width: 50px;
        height: 50px;
        border-radius: 15px;
        margin-bottom: 20px;
        font-size: 1.2rem;
        margin-left: auto;
        margin-right: auto;
    }

    .vantage-tile h3 {
        font-size: 1.4rem;
        margin-bottom: 12px;
        text-align: center;
    }

    .vantage-tile p {
        font-size: 0.95rem;
        text-align: center;
    }

    .vantage-tile-hero {
        background: linear-gradient(165deg, #ffffff 0%, #f1f5f9 100%);
        padding-bottom: 0;
    }

    .vantage-hero-visual {
        margin: 25px -20px 0;
        width: calc(100% + 40px);
        transform: rotate(-1deg);
        right: 0;
        bottom: 0;
    }

    .vantage-hero-visual img {
        border-radius: 0;
        box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
    }

    .vantage-status-pulse {
        width: 60px;
        height: 60px;
        right: 20px;
        bottom: 20px;
    }
}

/* --- ULTRA RESPONSIVE FIX (380px & BELOW) --- */
@media (max-width: 420px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 110px 0 30px;
    }

    .hero-content h1 {
        font-size: 2.1rem !important;
        line-height: 1.15;
        letter-spacing: -0.04em;
    }

    .hero-content p {
        font-size: 0.88rem;
        padding: 0;
        margin-bottom: 25px;
    }

    .hero-btns-v2 {
        padding: 0;
    }

    .btn-primary {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 0.95rem;
        border-radius: 12px;
    }

    .hero-stats-row {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 0 !important;
        justify-content: space-between !important;
        margin-top: 2rem !important;
        background: #f8fafc !important;
        padding: 14px 10px !important;
        border-radius: 14px !important;
        width: 100% !important;
    }

    .h-stat {
        flex: 1 !important;
        text-align: center !important;
    }

    .h-stat strong {
        font-size: 0.95rem !important;
        /* Smaller to fit 350px */
        display: block !important;
    }

    .h-stat span {
        font-size: 0.6rem !important;
        /* Smaller to fit 350px */
    }

    .section-title h2 {
        font-size: 1.7rem !important;
    }

    .bento-grid {
        padding: 0;
        gap: 15px;
    }

    .bento-item {
        padding: 25px;
    }

    .footer-wrap .footer-grid {
        padding: 24px 16px;
    }

    .navbar {
        padding: 0.6rem 0;
    }

    .logo img {
        height: 34px !important;
    }

    .top-announcement span {
        display: none;
        /* Hide 'New Update' text on small screens */
    }

    .announcement-flex {
        justify-content: center;
    }

    .top-links {
        gap: 15px;
    }

    .top-links a {
        font-size: 0.75rem;
    }

    /* Global Page Hero Overrides */
    .main-title,
    .q-title,
    .hero-title {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        margin-bottom: 15px !important;
    }

    .main-para,
    .q-subtitle,
    .hero-para {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        margin-bottom: 25px !important;
    }

    .hero-colorful,
    .quotation-hero,
    [class*="-hero"] {
        padding: 100px 0 50px !important;
    }

    /* Fix flex buttons on small screens */
    .hero-btns,
    [style*="display: flex; gap: 15px;"] {
        flex-direction: column !important;
        gap: 10px !important;
    }

    .hero-btns a,
    [style*="display: flex; gap: 15px;"] a {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
    }
}