/* assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #032C38;
    /* Brand Deep Teal/Navy */
    --primary-dark: #001f28; 
    --secondary: #EB1C3C;
    /* Brand Coral/Red */
    --accent: #E37434;
    /* Supporting Vibrant Orange */
    --vibrant-yellow: #FFC312;
    /* Brand yellow-orange gradient start */
    --vibrant-green: #91C6BC;
    --text: #0f172a;
    --text-muted: #475569;
    --light-bg: #ffffff;
    --ice: #f8fafc;
    --dark: #032C38;
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(3, 44, 56, 0.1);

    /* Luxury Tokens */
    --luxury-shadow: 0 25px 50px -12px rgba(3, 44, 56, 0.15), 0 10px 15px -3px rgba(3, 44, 56, 0.05);
    --shadow-sm: 0 1px 3px rgba(3, 44, 56, 0.12), 0 1px 2px rgba(3, 44, 56, 0.24);
    --shadow-md: 0 10px 15px -3px rgba(3, 44, 56, 0.12), 0 4px 6px -2px rgba(3, 44, 56, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(3, 44, 56, 0.12), 0 10px 10px -5px rgba(3, 44, 56, 0.04);

    --font-heading: 'Plus Jakarta Sans', 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 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;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}

/* Preserve Font Awesome icon font — never override it */
i.fa,
i.fas,
i.far,
i.fab,
i.fal,
i.fad,
[class^="fa-"],
[class*=" fa-"] {
    font-family: 'Font Awesome 5 Free', 'Font Awesome 5 Brands', 'Font Awesome 5 Pro' !important;
}

.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 with Gradient and Compact Sizing */
.top-announcement {
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 60%, var(--secondary) 100%);
    color: white;
    padding: 6px 0;
    font-size: 1rem;
    font-weight: 600;
    height: 32px;
    display: flex;
    align-items: center;
}

.announcement-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.top-links a {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    margin-left: 15px;
    transition: color 0.2s;
}

.top-links a:hover {
    color: var(--vibrant-yellow);
}

@media (max-width: 768px) {
    .top-announcement .top-links {
        display: none;
    }

    .announcement-flex {
        justify-content: center;
        text-align: center;
    }

    .top-announcement {
        height: 32px;
        padding: 4px 0;
        font-size: 0.72rem;
    }

    .navbar {
        top: 32px;
    }
}

/* Navbar with Premium Glassmorphism & Compact Sizing */
.navbar {
    padding: 0.75rem 0;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-bottom: 1px solid rgba(3, 44, 56, 0.08);
    position: fixed;
    top: 32px;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    top: 0;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px rgba(3, 44, 56, 0.06);
    border-bottom-color: rgba(3, 44, 56, 0.12);
}

/* Original Link Color Persistence & Elegant Underline animation */
.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: 6px 0;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary) 0%, var(--accent) 100%);
    transition: width 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav-links li a:hover {
    color: var(--primary);
}

.nav-links li a:hover::after {
    width: 100%;
}

.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;
}

.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(15px);
    background: #ffffff;
    min-width: 320px;
    padding: 8px 10px;
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12), 0 4px 12px rgba(15, 23, 42, 0.04);
    border: 1.5px solid #e2e8f0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1001;
}

.dropdown-link:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(6px);
}

.dropdown-menu.mega-menu {
    width: 880px;
    min-width: 880px;
    padding: 0;
    display: block;
    overflow: hidden;
    border-radius: 16px;
    border: 1.5px solid #e2e8f0;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12), 0 4px 14px rgba(15, 23, 42, 0.04);
}

.mega-flex {
    display: flex;
    min-height: auto;
    width: 100%;
}

.mega-main {
    flex: 1;
    padding: 24px 28px;
    background: #ffffff;
    box-sizing: border-box;
}

.mega-sidebar {
    width: 230px;
    flex-shrink: 0;
    background: #f8fafc;
    padding: 24px 20px;
    border-left: 1.5px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.mega-main .dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 14px;
    margin-bottom: 0;
    width: 100%;
    box-sizing: border-box;
}

.dropdown-item-premium {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 12px 18px;
    border-radius: 10px;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.02);
    box-sizing: border-box;
}

.dropdown-item-premium:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.dropdown-item-premium .icon-box {
    width: 32px;
    height: 32px;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dropdown-item-premium .icon-box img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
}

.dropdown-item-premium .text-box {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.dropdown-item-premium .text-box strong {
    font-size: 0.88rem;
    font-weight: 700;
    color: #0f172a;
    display: block;
    line-height: 1.25;
    margin-bottom: 2px;
}

.dropdown-item-premium .text-box span {
    font-size: 0.72rem;
    color: #64748b;
    font-weight: 500;
    line-height: 1.35;
    display: block;
}

.mega-sidebar h3 {
    font-weight: 800;
    color: #0f172a;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.mega-contact-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-contact-list li a {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #334155;
    padding: 8px 10px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.mega-contact-list li a:hover {
    background: #ffffff;
    border-color: #cbd5e1;
    color: #eb1c3c;
    transform: translateX(2px);
}

.mega-contact-list li a i.fa-phone-alt { color: #2563eb; }
.mega-contact-list li a i.fa-whatsapp { color: #16a34a; font-size: 0.95rem; }
.mega-contact-list li a i.fa-envelope { color: #ea580c; }

/* Simple & Vertical Dropdowns */
.dropdown-grid-vertical {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 12px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid transparent;
}

.dropdown-item:hover {
    background: #f8fafc;
    border-color: #e2e8f0;
    transform: translateX(4px);
}

.dropdown-item:hover strong {
    color: #e11d48;
}

.dropdown-icon-wrap {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: transparent !important;
}

.dropdown-icon-wrap img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    display: block;
}

.dropdown-item i {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.dropdown-item strong {
    font-size: 0.88rem;
    font-weight: 700;
    color: #0f172a;
    display: block;
    line-height: 1.25;
    margin-bottom: 2px;
    transition: color 0.2s ease;
}

.dropdown-item span {
    font-size: 0.74rem;
    color: #64748b;
    font-weight: 500;
    display: block;
    line-height: 1.35;
}

.dropdown-item-simple {
    padding: 6px 10px;
    font-size: 0.84rem;
    font-weight: 600;
    color: #334155;
    border-radius: 6px;
    transition: all 0.2s ease;
    display: block;
    text-decoration: none;
}

.dropdown-item-simple:hover {
    background: #f8fafc;
    color: #eb1c3c;
    transform: translateX(3px);
}

/* ==========================================================================
   MODERN PREMIUM SAAS FOOTER
   ========================================================================== */
/* ==========================================================================
   ULTRA-PREMIUM SAAS FOOTER (MATCHING EXACT REFERENCE MOCKUP)
   ========================================================================== */
.footer-wrap {
    position: relative;
    background: linear-gradient(135deg, #070a14 0%, #170d2b 30%, #2b081c 65%, #0a0618 100%);
    border-top: 1px solid rgba(225, 29, 72, 0.2);
    padding: 60px 0 30px;
    margin-top: 0;
    color: #ffffff;
    font-family: var(--font-body);
    overflow: hidden;
}

.footer-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15%;
    width: 500px;
    height: 320px;
    background: radial-gradient(circle, rgba(225, 29, 72, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.footer-wrap::after {
    content: '';
    position: absolute;
    bottom: 5%;
    right: 10%;
    width: 550px;
    height: 350px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

/* --- FOOTER CONTAINER --- */
.footer-fullwidth-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

/* --- CTA BANNER (READY TO GROW) --- */
.ready-section-fullwidth {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: 45px;
    box-sizing: border-box;
}

.ready-box-v3 {
    width: 100%;
    max-width: 100%;
    background: linear-gradient(135deg, #1f0f35 0%, #0e162f 45%, #2a0b1e 100%);
    border: 1.5px solid rgba(225, 29, 72, 0.35);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 30px rgba(225, 29, 72, 0.1);
    border-radius: 20px;
    padding: 32px 40px;
    margin-bottom: 0;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.ready-box-v3::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(235, 28, 60, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* 3D Chart Graphic */
.ready-left-visual {
    flex-shrink: 0;
}

.chart-3d-graphic {
    position: relative;
    width: 80px;
    height: 70px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    padding-bottom: 6px;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 100%;
}

.chart-bars .bar {
    width: 14px;
    border-radius: 4px 4px 1px 1px;
    background: linear-gradient(180deg, #60a5fa 0%, #3b82f6 100%);
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}

.chart-bars .bar-1 { height: 35%; background: linear-gradient(180deg, #818cf8 0%, #6366f1 100%); }
.chart-bars .bar-2 { height: 55%; background: linear-gradient(180deg, #a78bfa 0%, #8b5cf6 100%); }
.chart-bars .bar-3 { height: 75%; background: linear-gradient(180deg, #c084fc 0%, #a855f7 100%); }
.chart-bars .bar-4 { height: 100%; background: linear-gradient(180deg, #e879f9 0%, #d946ef 100%); }

.chart-arrow {
    position: absolute;
    top: -4px;
    right: -6px;
    color: #fbbf24;
    font-size: 1.6rem;
    filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.6));
    animation: bounceTrend 2.5s infinite ease-in-out;
}

@keyframes bounceTrend {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-4px) scale(1.08); }
}

/* Center Content */
.ready-center-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ready-pill-top {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 3px 14px;
    border-radius: 50px;
    font-size: 0.76rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 8px;
}

.ready-center-content h2 {
    font-size: 1.95rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
    font-family: var(--font-heading);
    line-height: 1.2;
}

.ready-center-content h2 .text-coral {
    color: #f43f5e;
}

.ready-center-content p {
    color: #e2e8f0;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.ready-badges-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.ready-badges-row span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #ffffff;
}

.ready-badges-row span i.text-green {
    color: #22c55e;
    font-size: 0.88rem;
}

/* Right Action */
.ready-right-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.doodle-curve-arrow {
    position: absolute;
    top: -24px;
    left: -20px;
}

.btn-ready-glow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f43f5e 0%, #eb1c3c 100%);
    color: #ffffff !important;
    font-weight: 800;
    font-size: 0.96rem;
    padding: 0.85rem 1.85rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(244, 63, 94, 0.45);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-ready-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(244, 63, 94, 0.6);
    color: #ffffff;
}

.ready-subtext {
    color: #cbd5e1;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 8px;
    white-space: nowrap;
}

/* --- 4-COLUMN MAIN FOOTER GRID --- */
.footer-grid-v3 {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
    gap: 2.8rem;
    margin-bottom: 40px;
}

.footer-col-brand .brand-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-col-brand .logo {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    padding: 4px 12px;
    border-radius: 8px;
}

.badge-made-in-india {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.74rem;
    font-weight: 700;
    white-space: nowrap;
}

.brand-tagline {
    font-size: 0.88rem;
    color: #e2e8f0;
    line-height: 1.6;
    margin-bottom: 18px;
    font-weight: 500;
}

/* 3 Stat Metric Boxes */
.footer-metric-pills {
    display: flex;
    gap: 8px;
}

.metric-pill {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid #1f293d;
    border-radius: 10px;
    padding: 8px 10px;
    text-align: center;
    flex: 1;
}

.metric-pill strong {
    font-size: 1.05rem;
    color: #ffffff;
    font-weight: 800;
    display: block;
    line-height: 1.2;
}

.metric-pill span {
    font-size: 0.72rem;
    color: #94a3b8;
    font-weight: 600;
    display: block;
    margin-top: 2px;
}

/* Links Columns */
.footer-h4 {
    font-family: var(--font-heading);
    font-size: 0.86rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 6px;
    text-transform: uppercase;
}

.footer-h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 22px;
    height: 2.5px;
    background: #e11d48;
    border-radius: 2px;
}

.footer-h4-white {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-list a {
    color: #ffffff !important;
    font-size: 0.86rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.footer-links-list a i {
    font-size: 0.85rem;
    color: #94a3b8;
    width: 16px;
    text-align: center;
    transition: all 0.2s ease;
}

.footer-links-list a:hover {
    color: #f43f5e !important;
    transform: translateX(3px);
}

.footer-links-list a:hover i {
    color: #f43f5e;
}

.footer-links-list a i.text-blue { color: #3b82f6; }
.footer-links-list a i.text-green { color: #22c55e; }
.footer-links-list a i.text-orange { color: #f97316; }

/* Support Hours Card */
.support-hours-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid #1f293d;
    border-radius: 10px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
}

.support-hours-card .clock-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.support-hours-card .clock-info strong {
    font-size: 0.8rem;
    color: #ffffff;
    display: block;
    line-height: 1.2;
}

.support-hours-card .clock-info span {
    font-size: 0.72rem;
    color: #cbd5e1;
    line-height: 1.35;
    display: block;
    margin-top: 2px;
}

/* Newsletter Column */
.newsletter-sub {
    color: #cbd5e1;
    font-size: 0.82rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.newsletter-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-input-group {
    position: relative;
    width: 100%;
}

.newsletter-input-group i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 0.88rem;
}

.newsletter-input-group input {
    width: 100%;
    background: #0b1120;
    border: 1.5px solid #1f293d;
    border-radius: 10px;
    padding: 10px 14px 10px 38px;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 500;
    outline: none;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.newsletter-input-group input::placeholder {
    color: #64748b;
}

.newsletter-input-group input:focus {
    border-color: #f43f5e;
    box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.15);
}

.btn-newsletter {
    width: 100%;
    background: linear-gradient(135deg, #f43f5e 0%, #eb1c3c 100%);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.88rem;
    padding: 10px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(244, 63, 94, 0.3);
}

.btn-newsletter:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(244, 63, 94, 0.45);
}

/* --- FREE TOOLS CONTAINER --- */
.footer-tools-box {
    background: rgba(11, 17, 32, 0.7);
    border: 1.5px solid #1f293d;
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 30px;
}

.footer-tools-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    flex-wrap: wrap;
    gap: 10px;
}

.tools-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.tools-title {
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    font-family: var(--font-heading);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tools-title i.text-yellow {
    color: #f59e0b;
}

.tools-subtitle {
    color: #94a3b8;
    font-size: 0.8rem;
    font-weight: 500;
}

.btn-view-tools {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid #1f293d;
    color: #ffffff !important;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.btn-view-tools:hover {
    background: #f43f5e;
    border-color: #f43f5e;
    color: #ffffff !important;
}

.footer-tools-pills-grid {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 8px;
}

.footer-tools-pills-grid a {
    background: #0b1120;
    border: 1px solid #1f293d;
    color: #ffffff !important;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-tools-pills-grid a i {
    font-size: 0.72rem;
    color: #94a3b8;
}

.footer-tools-pills-grid a:hover {
    background: #e11d48;
    border-color: #e11d48;
    color: #ffffff !important;
    transform: translateY(-1px);
}

.footer-tools-pills-grid a:hover i {
    color: #ffffff;
}

/* --- BOTTOM BAR --- */
.footer-bottom-bar-v3 {
    border-top: 1px solid #1f293d;
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    color: #94a3b8;
    font-size: 0.82rem;
    font-weight: 500;
}

.footer-copyright a {
    color: #ffffff;
    font-weight: 700;
    text-decoration: underline;
}

.footer-trust-chips {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-trust-chips span {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid #1f293d;
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.76rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-trust-chips span i.text-green { color: #22c55e; }
.footer-trust-chips span i.text-blue { color: #3b82f6; }
.footer-trust-chips span i.text-orange { color: #f97316; }
.footer-trust-chips span i.text-cyan { color: #06b6d4; }

.footer-social-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.follow-label {
    color: #cbd5e1;
    font-size: 0.8rem;
    font-weight: 700;
}

.footer-social-cluster {
    display: flex;
    gap: 8px;
}

.footer-social-cluster a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #1f293d;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-social-cluster a:hover {
    background: #e11d48;
    border-color: #e11d48;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1200px) {
    .footer-grid-v3 {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2rem;
    }

    .footer-col-brand {
        grid-column: span 3;
    }

    .ready-box-v3 {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 28px 20px;
    }

    .ready-left-visual {
        display: none;
    }

    .ready-center-content {
        align-items: center;
    }

    .ready-badges-row {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-grid-v3 {
        grid-template-columns: 1fr 1fr;
        gap: 1.8rem;
    }

    .footer-col-brand {
        grid-column: span 2;
    }

    .footer-bottom-bar-v3 {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 14px;
    }

    .footer-trust-chips {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-grid-v3 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-col-brand {
        grid-column: span 1;
    }

    .footer-metric-pills {
        flex-direction: column;
    }
}

@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(--primary);
    margin-bottom: 2px;
    transition: color 0.2s ease;
}

.dropdown-item-premium:hover div strong,
.dropdown-item-premium:hover .text-box strong,
.dropdown-item:hover div strong,
.dropdown-item:hover .text-box strong {
    color: var(--secondary);
}

.dropdown-item div span,
.text-box span {
    font-size: 1rem;
    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;
    }

    .top-announcement {
        padding: 6px 0;
        font-size: 0.78rem;
    }

    .announcement-flex {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }

    .top-links {
        gap: 14px;
        font-size: 0.76rem;
    }

    .mobile-sidebar .nav-links.active {
        right: 0;
        visibility: visible;
        pointer-events: auto;
    }

    .sidebar-header {
        position: sticky;
        top: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(12px);
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 16px 20px;
        border-bottom: 1px solid #f1f5f9;
        z-index: 10;
    }

    .sidebar-close {
        background: #f1f5f9;
        border: 1px solid #e2e8f0;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        color: #64748b;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.2s ease;
        font-size: 0.95rem;
    }

    .sidebar-close:hover {
        background: #fee2e2;
        color: #ef4444;
        border-color: #fecaca;
        transform: rotate(90deg);
    }

    /* Sidebar Launch Button CTA */
    .sidebar-cta-box {
        padding: 14px 18px 6px !important;
        border-bottom: none !important;
        width: 100%;
    }

    .btn-sidebar-launch,
    .btn-sidebar-launch span,
    .btn-sidebar-launch i {
        color: #ffffff !important;
    }

    .btn-sidebar-launch {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        background: linear-gradient(135deg, #e11d48 0%, #eb1c3c 100%) !important;
        color: #ffffff !important;
        padding: 11px 16px !important;
        border-radius: 12px !important;
        font-weight: 800 !important;
        font-size: 0.86rem !important;
        text-decoration: none !important;
        box-shadow: 0 6px 18px rgba(225, 29, 72, 0.28) !important;
        transition: all 0.25s ease !important;
    }

    .btn-sidebar-launch:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 22px rgba(225, 29, 72, 0.38) !important;
    }

    .nav-links > li:not(.sidebar-header):not(.sidebar-footer):not(.sidebar-cta-box) {
        width: 100%;
        border-bottom: 1px solid #f8fafc;
    }

    .nav-links > li:not(.sidebar-cta-box) > a {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 13px 20px !important;
        font-size: 0.92rem !important;
        color: #0f172a !important;
        font-weight: 700 !important;
        width: 100%;
        transition: all 0.2s ease;
    }

    .nav-links > li > a:hover {
        background: #f8fafc;
        color: var(--secondary) !important;
    }

    .menu-label {
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    .menu-label i {
        font-size: 0.95rem;
        width: 20px;
        text-align: center;
    }

    .text-blue { color: #3b82f6 !important; }
    .text-coral { color: #e11d48 !important; }
    .text-purple { color: #8b5cf6 !important; }
    .text-yellow { color: #f59e0b !important; }
    .text-orange { color: #ea580c !important; }
    .text-green { color: #10b981 !important; }

    /* --- Dropdown Toggle Arrow --- */
    .mobile-sidebar .dropdown-link > a i.fa-chevron-down {
        transition: transform 0.3s ease;
        font-size: 0.8rem;
        color: #94a3b8;
    }

    .mobile-sidebar .dropdown-link.active > a i.fa-chevron-down {
        transform: rotate(180deg);
        color: var(--secondary);
    }

    /* --- 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;
        padding: 4px 16px 12px !important;
    }

    /* --- Button Grid inside dropdown --- */
    .mobile-sidebar .dropdown-btn-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 6px !important;
        padding: 10px 10px !important;
        background: #f8fafc !important;
        border-radius: 12px !important;
        border: 1px solid #f1f5f9 !important;
    }

    .mobile-sidebar .dropdown-btn {
        background: #ffffff !important;
        border: 1px solid #e2e8f0 !important;
        padding: 8px 8px !important;
        border-radius: 8px !important;
        font-size: 0.75rem !important;
        font-weight: 600 !important;
        color: #334155 !important;
        text-decoration: none !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        white-space: normal !important;
        word-break: break-word !important;
        gap: 5px !important;
        transition: all 0.2s ease !important;
    }

    .mobile-sidebar .dropdown-btn:hover {
        background: #e11d48 !important;
        color: #ffffff !important;
        border-color: #e11d48 !important;
    }

    /* 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;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-actions {
        display: none;
    }

    /* Sidebar Footer Support Card */
    .sidebar-footer {
        margin-top: auto;
        padding: 16px 16px 28px !important;
        background: #f8fafc;
        width: 100%;
        border-top: 1px solid #e2e8f0;
    }

    .sidebar-support-card {
        background: #ffffff;
        border: 1.5px solid #e2e8f0;
        border-radius: 12px;
        padding: 12px 14px;
        box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
    }

    .sidebar-support-card h4 {
        font-size: 0.72rem;
        text-transform: uppercase;
        color: #64748b;
        font-weight: 800;
        letter-spacing: 0.08em;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
    }

    .sidebar-contact-pills {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .contact-pill-btn {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        padding: 7px 10px !important;
        border-radius: 8px !important;
        font-size: 0.82rem !important;
        font-weight: 700 !important;
        text-decoration: none !important;
        transition: all 0.2s ease !important;
    }

    .contact-pill-btn.whatsapp {
        background: #ecfdf5 !important;
        color: #059669 !important;
        border: 1px solid #a7f3d0 !important;
    }

    .contact-pill-btn.phone {
        background: #eff6ff !important;
        color: #2563eb !important;
        border: 1px solid #bfdbfe !important;
    }

    .contact-pill-btn.email {
        background: #f8fafc !important;
        color: #475569 !important;
        border: 1px solid #e2e8f0 !important;
    }

    .sidebar-bottom-meta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 14px;
        padding-top: 10px;
        border-top: 1px solid #e2e8f0;
    }

    .sidebar-social {
        display: flex;
        gap: 6px;
        margin-top: 0 !important;
    }

    .sidebar-social a {
        width: 32px !important;
        height: 32px !important;
        border-radius: 50% !important;
        background: #ffffff !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        color: #64748b !important;
        border: 1px solid #e2e8f0 !important;
        text-decoration: none !important;
        font-size: 0.78rem !important;
        transition: all 0.2s ease !important;
    }

    .sidebar-social a:hover {
        background: #e11d48 !important;
        color: #ffffff !important;
        border-color: #e11d48 !important;
    }

    .badge-made-in-india-dark {
        font-size: 0.72rem;
        font-weight: 700;
        color: #64748b;
    }
}

/* Desktop Navigation Styles */
@media (min-width: 993px) {

    .mobile-sidebar,
    .nav-overlay {
        display: none !important;
    }

    .desktop-nav {
        display: block;
        margin-left: auto;
    }

    .nav-actions {
        display: flex !important;
        align-items: center;
        margin-left: 20px;
    }

    .btn-demo {
        background: linear-gradient(135deg, #e11d48 0%, #eb1c3c 100%) !important;
        color: #ffffff !important;
        padding: 8px 20px !important;
        border-radius: 50px !important;
        font-size: 0.86rem !important;
        font-weight: 800 !important;
        text-decoration: none !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 8px !important;
        box-shadow: 0 4px 14px rgba(225, 29, 72, 0.28) !important;
        transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
    }

    .btn-demo:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 22px rgba(225, 29, 72, 0.42) !important;
        color: #ffffff !important;
    }

    .btn-demo i {
        font-size: 0.82rem;
        transition: transform 0.2s ease;
    }

    .btn-demo:hover i {
        transform: translateY(2px);
    }

    .sidebar-header,
    .sidebar-footer {
        display: none !important;
    }
}


/* --- ANNOUNCEMENT BAR (MATCHING REFERENCE) --- */
.top-announcement {
    background: linear-gradient(90deg, #0b1120 0%, #831843 50%, #991b1b 100%);
    padding: 9px 0;
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 700;
    position: relative;
    z-index: 100;
}

.announcement-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-links a {
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 0.88rem;
    transition: opacity 0.2s ease;
}

.top-links a:hover {
    opacity: 0.85;
}

/* --- HERO SECTION (100% FAITHFUL TO USER'S REFERENCE MOCKUP) --- */
.hero {
    padding: 130px 0 75px;
    background: #fcfdfe;
    background-image: radial-gradient(#e2e8f0 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    position: relative;
    overflow: hidden;
}

/* Left Pink Ambient Ring */
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -130px;
    transform: translateY(-50%);
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 32px solid rgba(244, 63, 94, 0.22);
    box-shadow: 0 0 50px rgba(244, 63, 94, 0.15);
    pointer-events: none;
    z-index: 1;
}

/* Right Blue Ambient Ring */
.hero::after {
    content: '';
    position: absolute;
    bottom: 30px;
    right: -130px;
    width: 290px;
    height: 290px;
    border-radius: 50%;
    border: 32px solid rgba(59, 130, 246, 0.22);
    box-shadow: 0 0 50px rgba(59, 130, 246, 0.15);
    pointer-events: none;
    z-index: 1;
}

/* Top Full-Width Header Area */
.hero-top-fullwidth {
    width: 100%;
    margin-bottom: 1.35rem;
    position: relative;
    z-index: 10;
}

/* Badge */
.hero-badge-pill {
    background: #fff0f2;
    border: 1px solid #fecdd3;
    padding: 6px 16px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 0.85rem;
    color: #e11d48;
    font-size: 0.88rem;
    font-weight: 700;
}

/* Title */
.hero-title-main {
    font-size: 3.4rem;
    font-family: var(--font-heading);
    font-weight: 900;
    color: #0f172a;
    line-height: 1.14;
    margin-bottom: 0;
    letter-spacing: -0.025em;
    max-width: 100%;
}

.hero-title-main .text-red-highlight {
    color: #e11d48;
}

/* Paragraph (Inside Left Column) */
.hero-desc-main {
    font-size: 1.02rem;
    line-height: 1.6;
    color: #475569;
    font-weight: 500;
    margin-bottom: 1.35rem;
    max-width: 520px;
}

/* Two-Column Grid Below Header */
.hero-grid-v2 {
    display: grid;
    grid-template-columns: 0.95fr 1.32fr;
    gap: 2.5rem;
    align-items: flex-start;
    position: relative;
    z-index: 10;
}

.hero-left-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* CTA Buttons - Single Line Compact */
.hero-btns-v2 {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
    margin-bottom: 1.25rem;
    width: auto;
}

.hero-btn-coral {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #e11d48 0%, #eb1c3c 100%);
    color: #ffffff !important;
    padding: 0.72rem 1.35rem;
    border-radius: 40px;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(225, 29, 72, 0.28);
    white-space: nowrap;
    flex-shrink: 0;
}

.hero-btn-coral:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(225, 29, 72, 0.38);
}

.hero-btn-android {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: #ffffff;
    color: #0f172a !important;
    padding: 0.72rem 1.2rem;
    border-radius: 40px;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    border: 1.5px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(15, 23, 42, 0.04);
    white-space: nowrap;
    flex-shrink: 0;
}

.hero-btn-android:hover {
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.07);
}

.hero-btn-android i {
    color: #0f172a;
    font-size: 0.82rem;
}

/* Trust Badges */
.hero-trust-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 1.6rem;
    color: #0f172a;
    font-size: 0.88rem;
    font-weight: 700;
}

.hero-trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-trust-row span i {
    color: #10b981;
    font-size: 1rem;
}

/* White Ratings Panel */
.rating-panel-clean {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 16px;
    padding: 1.15rem 1.5rem;
    border: 1.5px solid #e2e8f0;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
    max-width: 530px;
}

.rating-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.rating-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: #0f172a;
    font-family: var(--font-heading);
    line-height: 1.1;
}

.rating-number span {
    font-size: 1rem;
    color: #64748b;
    font-weight: 700;
}

.rating-label {
    font-size: 0.84rem;
    color: #475569;
    font-weight: 600;
}

.rating-stars {
    display: flex;
    gap: 3px;
    color: #f59e0b;
    font-size: 0.9rem;
    margin-top: 3px;
}

.rating-col-divider {
    width: 1.5px;
    height: 40px;
    background: #f1f5f9;
    margin: 0 1.25rem;
    flex-shrink: 0;
}

.rating-avatars {
    display: flex;
    align-items: center;
    margin-top: 4px;
}

.rating-avatars img {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    margin-left: -7px;
    object-fit: cover;
}

.rating-avatars img:first-child {
    margin-left: 0;
}

.avatar-plus {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #0f172a;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    margin-left: -7px;
}

.rating-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    padding: 3px 10px;
    border-radius: 100px;
    color: #047857;
    font-weight: 700;
    font-size: 0.78rem;
    margin-top: 4px;
    align-self: flex-start;
}

.live-pulse {
    width: 7px;
    height: 7px;
    background: #10b981;
    border-radius: 50%;
    display: inline-block;
}

/* ==========================================================================
   HERO RIGHT: CLEAN 6 LUXURY FEATURE CARDS (COMPACT, CRISP VISIBLE BORDER)
   ========================================================================== */
.hero-right-container {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}

.features-static-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
}

.feature-clean-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.15rem 1.05rem;
    border: 1.5px solid #e2e8f0;
    box-shadow: 0 3px 10px rgba(15, 23, 42, 0.03);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    position: relative;
}

.feature-circle-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2px;
}

.feature-circle-icon i {
    font-size: 1.05rem;
}

.icon-circle-yellow { background: #fef3c7; color: #d97706; }
.icon-circle-blue { background: #eff6ff; color: #2563eb; }
.icon-circle-green { background: #ecfdf5; color: #059669; }
.icon-circle-purple { background: #f5f3ff; color: #7c3aed; }
.icon-circle-orange { background: #fff7ed; color: #ea580c; }
.icon-circle-amber { background: #fefce8; color: #ca8a04; }

.feature-clean-card h4 {
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    font-family: var(--font-heading);
    line-height: 1.25;
}

.feature-clean-card p {
    font-size: 0.82rem;
    color: #64748b;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
}

/* ==========================================================================
   PLATFORM SHOWCASE SECTION (MATCHING REFERENCE MOCKUP LOWER HALF)
   ========================================================================== */
.platform-showcase-section {
    padding: 65px 0 75px;
    background: #fafbfc;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #f1f5f9;
}

.platform-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.38fr;
    gap: 2.5rem;
    align-items: center;
}

.platform-info h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.18;
    margin-bottom: 1.1rem;
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

.platform-info p {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.platform-pills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.platform-pill {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #0f172a;
    font-size: 0.94rem;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.025);
}

.platform-pill span.emoji {
    font-size: 1.25rem;
}

/* Dashboard Mockup UI - 100% Fully Responsive without Any Clipping */
.saas-dashboard-mockup {
    background: #ffffff;
    border-radius: 18px;
    border: 1.5px solid #e2e8f0;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.07);
    display: flex;
    overflow: hidden;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.saas-sidebar {
    width: 130px;
    background: #ffffff;
    border-right: 1px solid #f1f5f9;
    padding: 14px 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-shrink: 0;
}

.saas-sidebar .sidebar-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 900;
    color: #eb1c3c;
    margin-bottom: 12px;
    padding: 0 6px;
    font-size: 0.95rem;
    letter-spacing: -0.02em;
}

.saas-sidebar .sidebar-logo i {
    color: #64748b;
    font-size: 0.85rem;
}

.saas-sidebar .nav-item {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 6px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.saas-sidebar .nav-item i {
    font-size: 0.8rem;
    width: 14px;
}

.saas-sidebar .nav-item.active {
    background: #fff0f2;
    color: #e11d48;
    font-weight: 700;
}

.saas-main-content {
    flex: 1;
    min-width: 0;
    padding: 16px 18px;
    background: #f8fafc;
    overflow: hidden;
}

.saas-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    gap: 8px;
}

.saas-topbar h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.saas-date-badge {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.saas-kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 14px;
}

.saas-kpi-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 10px 8px;
    border: 1px solid #f1f5f9;
    min-width: 0;
    overflow: hidden;
}

.kpi-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
}

.kpi-text-meta {
    min-width: 0;
    overflow: hidden;
}

.saas-kpi-card h5 {
    font-size: 0.94rem;
    font-weight: 900;
    color: #0f172a;
    margin: 0 0 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.saas-kpi-card span.kpi-title {
    font-size: 0.68rem;
    color: #64748b;
    font-weight: 600;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.saas-kpi-card span.kpi-growth {
    font-size: 0.68rem;
    font-weight: 700;
    color: #10b981;
    display: block;
    margin-top: 3px;
    white-space: nowrap;
}

.kpi-icon-badge {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    flex-shrink: 0;
}

.kpi-icon-yellow { background: #fef3c7; color: #d97706; }
.kpi-icon-blue { background: #eff6ff; color: #2563eb; }
.kpi-icon-green { background: #ecfdf5; color: #059669; }
.kpi-icon-red { background: #fff0f2; color: #e11d48; }

.saas-chart-row {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 8px;
    min-width: 0;
}

.saas-chart-box {
    background: #ffffff;
    border-radius: 10px;
    padding: 10px 12px;
    border: 1px solid #f1f5f9;
    min-width: 0;
    overflow: hidden;
}

.saas-chart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #0f172a;
}

.saas-chart-header span.view-all {
    color: #2563eb;
    font-size: 0.7rem;
    font-weight: 700;
}

.chart-svg-container {
    width: 100%;
    height: 70px;
}

.top-selling-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 0;
    font-size: 0.76rem;
    gap: 6px;
}

.top-selling-item .item-info {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
    overflow: hidden;
}

.top-selling-item .item-icon {
    width: 24px;
    height: 24px;
    background: #f1f5f9;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #64748b;
    flex-shrink: 0;
}

.top-selling-item strong {
    color: #0f172a;
    font-size: 0.78rem;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.top-selling-item small {
    display: block;
    color: #64748b;
    font-size: 0.68rem;
}

.top-selling-item .item-val {
    font-weight: 800;
    color: #0f172a;
    font-size: 0.78rem;
    white-space: nowrap;
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS (DESKTOP / TABLET / MOBILE)
   ========================================================================== */
@media (max-width: 1200px) {
    .hero-grid-v2 {
        gap: 2rem;
    }
    
    .hero-title-main {
        font-size: 2.8rem;
    }

    .features-static-grid {
        gap: 0.95rem;
    }

    .feature-clean-card {
        padding: 1.4rem 1.1rem;
    }

    .platform-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero {
        padding: 125px 0 50px;
    }

    .hero-grid-v2 {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .hero-badge-pill {
        margin: 0 auto 1.25rem;
    }

    .hero-title-main {
        font-size: 2.65rem;
        margin: 0 auto 1.2rem;
    }

    .hero-desc-main {
        margin: 0 auto 1.5rem;
        max-width: 600px;
    }

    .hero-btns-v2 {
        justify-content: center;
    }

    .hero-trust-row {
        justify-content: center;
    }

    .rating-panel-clean {
        margin: 0 auto;
    }

    .hero-right-container {
        width: 100%;
        max-width: 640px;
        margin: 0 auto;
    }

    .features-static-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 110px 0 40px;
    }

    .hero-title-main {
        font-size: 2.25rem;
        line-height: 1.2;
    }

    .hero-desc-main {
        font-size: 1rem;
    }

    .features-static-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.85rem;
    }

    .feature-clean-card {
        padding: 1.2rem 1rem;
        text-align: left;
        align-items: flex-start;
    }

    .saas-sidebar {
        display: none;
    }

    .saas-kpi-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .saas-chart-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 95px 0 35px;
    }

    .hero-badge-pill {
        padding: 5px 12px;
        font-size: 0.82rem;
    }

    .hero-title-main {
        font-size: 2rem;
        line-height: 1.22;
        margin-bottom: 0.95rem;
    }

    .hero-desc-main {
        font-size: 0.95rem;
        line-height: 1.55;
        margin-bottom: 1.35rem;
    }

    .hero-btns-v2 {
        flex-direction: column;
        width: 100%;
        gap: 10px;
        margin-bottom: 1.1rem;
    }

    .hero-btn-coral,
    .hero-btn-android {
        width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 0.98rem;
    }

    .hero-trust-row {
        font-size: 0.82rem;
        gap: 10px 14px;
        margin-bottom: 1.5rem;
    }

    .rating-panel-clean {
        padding: 1rem 0.85rem;
        border-radius: 16px;
        gap: 0.5rem;
        width: 100%;
    }

    .rating-col-divider {
        height: 36px;
        margin: 0 0.5rem;
    }

    .rating-number {
        font-size: 1.25rem;
    }

    .rating-label {
        font-size: 0.74rem;
    }

    .rating-stars {
        font-size: 0.72rem;
    }

    .features-static-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.65rem;
    }

    .feature-clean-card {
        padding: 0.95rem 0.85rem;
        border-radius: 12px;
        gap: 6px;
        text-align: left;
        align-items: flex-start;
    }

    .feature-circle-icon {
        width: 38px;
        height: 38px;
        margin-bottom: 2px;
    }

    .feature-circle-icon i {
        font-size: 1rem;
    }

    .feature-clean-card h4 {
        font-size: 0.92rem;
        line-height: 1.25;
    }

    .feature-clean-card p {
        font-size: 0.76rem;
        line-height: 1.35;
    }

    .platform-info h2 {
        font-size: 1.8rem;
    }

    .platform-pills-grid {
        grid-template-columns: 1fr;
    }
}

/* --- THE MOMENTUM TICKER (SCROLLING FEATURES) --- */
.momentum-ticker {
    background: #ffffff;
    padding: 16px 0;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid #f1f5f9;
    width: 100%;
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: scroll-momentum 35s linear infinite;
    will-change: transform;
}

.ticker-track:hover {
    animation-play-state: paused;
}

.ticker-content {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    white-space: nowrap;
}

.ticker-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    margin: 0 6px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
    border: 1.5px solid #e2e8f0;
    flex-shrink: 0;
}

.ticker-pill img {
    width: 20px;
    height: 20px;
}

.ticker-pill span {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary);
    white-space: nowrap;
}

/* Vibrant Variations */
.pill-blue {
    background: rgba(145, 198, 188, 0.20);
    border-color: rgba(145, 198, 188, 0.7);
}

.pill-green {
    background: rgba(227, 116, 52, 0.08);
    border-color: rgba(227, 116, 52, 0.25);
}

.pill-yellow {
    background: rgba(246, 243, 194, 0.25);
    border-color: rgba(246, 243, 194, 0.6);
}

.pill-red {
    background: rgba(75, 157, 169, 0.06);
    border-color: rgba(75, 157, 169, 0.2);
}

.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.06);
    border-color: rgba(75, 157, 169, 0.18);
}

@keyframes scroll-momentum {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .momentum-ticker {
        padding: 10px 0;
    }

    .ticker-pill {
        gap: 6px;
        padding: 5px 10px;
        margin: 0 5px;
        border-radius: 6px;
    }

    .ticker-pill img {
        width: 16px;
        height: 16px;
    }

    .ticker-pill span {
        font-size: 0.78rem;
    }
}


@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: 950px;
    margin: 0 auto 3.5rem;
}

.section-title h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--secondary);
    white-space: nowrap;
}

@media (max-width: 900px) {
    .section-title h2 {
        white-space: normal;
        font-size: 2.1rem;
    }
}

.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: 0;
}

.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: 60px 0;
    background: #ffffff;
}

.setup-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.setup-card {
    padding: 1.5rem 1.3rem;
    border-radius: 14px;
    text-align: left;
    border: 1.5px solid #e2e8f0;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.03);
}

.setup-icon {
    width: 44px;
    height: 44px;
    background: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.setup-card h3 {
    font-size: 1.18rem;
    font-weight: 850;
    color: var(--secondary);
    margin-bottom: 0.6rem;
    font-family: var(--font-heading);
}

.setup-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.55;
    font-weight: 500;
}

/* Soft Pastel Backgrounds from user reference image */
.setup-card.bg-soft-blue {
    background: rgba(145, 198, 188, 0.15);
}

.setup-card.bg-soft-blue i {
    color: var(--primary);
}

.setup-card.bg-soft-pink {
    background: rgba(227, 116, 52, 0.08);
}

.setup-card.bg-soft-pink i {
    color: var(--secondary);
}

.setup-card.bg-soft-green {
    background: rgba(246, 243, 194, 0.15);
}

.setup-card.bg-soft-green i {
    color: var(--vibrant-yellow);
}

.setup-card.bg-soft-gray {
    background: #ffffff;
}

.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: 40px 0;
    background: #ffffff;
}

.badge-accent {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(75, 157, 169, 0.08);
    color: var(--primary);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
    letter-spacing: 0.08em;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 18px;
}

.bento-item {
    border-radius: 14px;
    padding: 1.6rem 1.4rem;
    position: relative;
    overflow: hidden;
    border: 1.5px solid #e2e8f0;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.03);
}

.bento-item:hover {
    transform: none;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.03);
}

.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: 44px;
    height: 44px;
    background: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    box-shadow: 0 4px 12px 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.25rem;
    font-weight: 850;
    margin-bottom: 0.65rem;
    line-height: 1.25;
    color: inherit;
    font-family: var(--font-heading);
}

.bento-item p {
    font-size: 0.92rem;
    opacity: 0.85;
    line-height: 1.55;
    margin-bottom: 0.75rem;
}

/* UI Visual for Big Card */
.ui-mockup {
    margin-top: 1.5rem;
    background: #ffffff;
    border-bottom: none;
    border-radius: 12px 12px 0 0;
    padding: 1.2rem;
    box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.03);
    border: 1.5px solid #e2e8f0;
}

.ui-line {
    height: 6px;
    background: #f1f5f9;
    border-radius: 4px;
    margin-bottom: 8px;
}

.ui-line.short {
    width: 60%;
}

.ui-total {
    margin-top: 1rem;
    font-weight: 900;
    font-size: 1.25rem;
    color: var(--primary);
}

.app-badges {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 1.2rem;
}

.app-badges img {
    height: 30px;
}

.app-badges span {
    font-weight: 700;
    font-size: 0.85rem;
}

@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: 25px 0;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    overflow: hidden;
}

.ticker-wrapper {
    display: flex;
    align-items: center;
    gap: 3rem;
    justify-content: center;
}

.ticker-label {
    font-size: 0.82rem;
    font-weight: 850;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    white-space: nowrap;
}

.ticker-logos {
    display: flex;
    align-items: center;
    gap: 3.5rem;
}

.ticker-logos img {
    height: 28px;
    opacity: 0.75;
    filter: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.ticker-logos img:hover {
    opacity: 1;
    transform: scale(1.08);
}

@media (max-width: 992px) {
    .ticker-wrapper {
        flex-direction: column;
        gap: 1.25rem;
        text-align: center;
    }

    .ticker-logos {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .brand-ticker {
        padding: 16px 0;
    }

    .ticker-wrapper {
        gap: 0.65rem;
    }

    .ticker-label {
        font-size: 0.72rem;
        letter-spacing: 0.08em;
    }

    .ticker-logos {
        gap: 1rem;
    }

    .ticker-logos img {
        height: 22px;
    }
}

/* 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: 50px 0 60px;
    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: 45px;
    position: relative;
    z-index: 1;
}

.badge-elite {
    display: inline-block;
    padding: 6px 14px;
    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.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
}

.section-header-elite h2 {
    font-size: 2.5rem;
    font-weight: 850;
    color: var(--primary);
    margin-bottom: 10px;
}

.section-header-elite h2 span {
    color: var(--secondary);
}

.section-header-elite p {
    color: #64748b;
    font-size: 1.05rem;
    max-width: 650px;
    margin: 0 auto;
}

.aurora-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.aurora-card {
    position: relative;
    padding: 24px 22px;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.03);
}

.aurora-card:hover {
    background: #ffffff;
    border-color: var(--secondary) !important;
    transform: none;
}

.aurora-num {
    position: absolute;
    top: -10px;
    right: 0;
    font-size: 4.5rem;
    font-weight: 900;
    color: rgba(75, 157, 169, 0.05);
    line-height: 1;
    z-index: 0;
    pointer-events: none;
}

.aurora-card:hover .aurora-num {
    color: rgba(75, 157, 169, 0.08);
    transform: none;
}

.aurora-icon {
    width: 44px;
    height: 44px;
    background: rgba(145, 198, 188, 0.30);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 16px;
    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 (Fixed for Premium Identity Match) */
.aurora-blue .aurora-icon {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.15);
}

.aurora-blue .aurora-accent {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.06);
}

.aurora-green .aurora-icon {
    color: #16a34a;
    background: rgba(22, 163, 74, 0.1);
    border-color: rgba(22, 163, 74, 0.15);
}

.aurora-green .aurora-accent {
    color: #16a34a;
    background: rgba(22, 163, 74, 0.06);
}

.aurora-pink .aurora-icon {
    color: #db2777;
    background: rgba(219, 39, 119, 0.1);
    border-color: rgba(219, 39, 119, 0.15);
}

.aurora-pink .aurora-accent {
    color: #db2777;
    background: rgba(219, 39, 119, 0.06);
}

.aurora-amber .aurora-icon {
    color: #d97706;
    background: rgba(217, 119, 6, 0.1);
    border-color: rgba(217, 119, 6, 0.15);
}

.aurora-amber .aurora-accent {
    color: #d97706;
    background: rgba(217, 119, 6, 0.06);
}

.aurora-purple .aurora-icon {
    color: #7c3aed;
    background: rgba(124, 58, 237, 0.1);
    border-color: rgba(124, 58, 237, 0.15);
}

.aurora-purple .aurora-accent {
    color: #7c3aed;
    background: rgba(124, 58, 237, 0.06);
}

.aurora-indigo .aurora-icon {
    color: #4f46e5;
    background: rgba(79, 70, 229, 0.1);
    border-color: rgba(79, 70, 229, 0.15);
}

.aurora-indigo .aurora-accent {
    color: #4f46e5;
    background: rgba(79, 70, 229, 0.06);
}

@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;
    }
}

@media (max-width: 576px) {
    .aurora-grid {
        gap: 15px;
    }

    .aurora-card {
        padding: 24px;
        border-radius: 20px;
    }

    .aurora-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
        margin-bottom: 15px;
    }

    .aurora-content h3 {
        font-size: 1.25rem;
        margin-bottom: 8px;
    }

    .aurora-content p {
        font-size: 0.88rem;
        margin-bottom: 15px;
    }
}


/* --- PRICING SECTION V4 (DUAL-TONE SPLIT) --- */
.plan-section {
    padding: 80px 0 120px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Split Background Canopy */
.plan-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
    background: linear-gradient(180deg, rgba(3, 44, 56, 0.05) 0%, rgba(145, 198, 188, 0.05) 60%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.plan-header {
    text-align: center;
    position: relative;
    z-index: 5;
    margin-bottom: 60px;
}

.plan-header h2 {
    font-size: 2.4rem;
    font-weight: 850;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 14px;
}

.plan-header p {
    color: #475569;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.6;
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    z-index: 10;
}

.pricing-tag {
    display: inline-block;
    margin-bottom: 10px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(235, 28, 60, 0.08);
    color: var(--secondary);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(235, 28, 60, 0.15);
}

.pricing-meta-note {
    margin: 8px 0 14px;
    color: #64748b;
    font-size: 0.88rem;
    text-align: center;
}

.plan-card {
    border-radius: 16px;
    padding: 0;
    text-align: left;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
    border: 1.5px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Color theme mappings (Brand Secondary Red) */
.plan-card.theme-starter {
    --theme-color: var(--secondary);
    background: var(--secondary);
}

.plan-card.theme-pro {
    --theme-color: var(--secondary);
    background: var(--secondary);
}

.plan-card.theme-enterprise {
    --theme-color: var(--secondary);
    background: var(--secondary);
}

.plan-card-top {
    padding: 20px 18px 30px;
    position: relative;
    text-align: left;
    z-index: 2;
}

.card-back-arrow {
    position: absolute;
    top: 18px;
    right: 18px;
    left: auto;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.card-back-arrow:hover {
    color: #ffffff;
}

.plan-card-top .plan-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.plan-card-top .plan-price {
    font-size: 2.6rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin-bottom: 0;
    background: none;
    -webkit-text-fill-color: initial;
    -webkit-background-clip: initial;
}

.plan-card-top .plan-price span {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
}

.card-wave-bg {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 70px;
    z-index: -1;
    pointer-events: none;
}

.card-wave-bg svg {
    width: 100%;
    height: 100%;
    display: block;
}

.card-wave-bg svg .wave-back {
    fill: rgba(255, 255, 255, 0.12);
}

.card-wave-bg svg .wave-front {
    fill: #ffffff;
}

.plan-card-bottom {
    background: #ffffff;
    border-radius: 16px 16px 0 0;
    padding: 16px 18px 20px;
    position: relative;
    z-index: 3;
    margin-top: -24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-notch {
    width: 36px;
    height: 4px;
    background: #e2e8f0;
    border-radius: 10px;
    margin: 0 auto 15px;
}

.plan-sub-title {
    text-align: left;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--theme-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    border-top: none;
    padding-top: 0;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #475569;
    font-size: 0.92rem;
    text-align: left;
}

.plan-features li i.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1.5px solid var(--theme-color);
    color: var(--theme-color);
    font-size: 0.65rem;
    flex-shrink: 0;
}

.plan-btn {
    width: 100%;
    padding: 13px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: capitalize;
    letter-spacing: normal;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    text-decoration: none;
    margin-top: auto;
    background: var(--theme-color);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.plan-btn:hover {
    opacity: 0.95;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    color: #ffffff;
}

/* Hover and Popular Animations */
.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(3, 44, 56, 0.08);
}

.plan-card.is-popular {
    transform: scale(1.03);
    z-index: 10;
    box-shadow: 0 25px 55px rgba(235, 28, 60, 0.15);
}

.plan-card.is-popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 15;
}

@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;
        z-index: 1 !important;
    }

    .plan-card:hover {
        transform: none !important;
    }

    .plan-card.is-popular {
        transform: none !important;
    }

    .plan-card.is-popular:hover {
        transform: none !important;
    }

    .plan-header h2 {
        font-size: 2.2rem !important;
        letter-spacing: normal;
    }
}

@media (max-width: 768px) {
    .plan-header h2 {
        font-size: 1.8rem !important;
    }
}


.btn-starter {
    background: rgba(145, 198, 188, 0.15);
    color: var(--primary);
    border: 1px solid rgba(145, 198, 188, 0.3);
}

.btn-starter:hover {
    background: var(--accent);
    color: var(--primary);
    box-shadow: 0 10px 20px rgba(145, 198, 188, 0.2);
}

.btn-pro {
    background: linear-gradient(135deg, var(--secondary) 0%, #d9243f 100%);
    color: white;
    box-shadow: 0 10px 20px rgba(235, 28, 60, 0.15);
}

.btn-pro:hover {
    background: linear-gradient(135deg, #d9243f 0%, var(--secondary) 100%);
    box-shadow: 0 15px 25px rgba(235, 28, 60, 0.25);
}

.btn-enterprise {
    background: var(--primary);
    color: white;
}

.btn-enterprise:hover {
    background: var(--primary-dark);
    box-shadow: 0 10px 20px rgba(3, 44, 56, 0.2);
}

.plan-btn:hover {
    transform: translateY(-3px);
}

/* --- FAQ SECTION V9 (THE BALANCED SIDEKICK) --- */
.faq-section {
    padding: 80px 0;
    background: #ffffff;
}

.faq-section {
    padding: 50px 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.faq-balanced-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-balanced-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.faq-balanced-header h2 {
    font-size: 3rem;
    font-weight: 850;
    color: var(--primary);
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.faq-balanced-header h2 span {
    color: var(--secondary);
}

.faq-balanced-header p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.7;
}

.faq-balanced-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.faq-balanced-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-balanced-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    border-left: 4px solid transparent;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(3, 44, 56, 0.01);
    overflow: hidden;
}

.faq-balanced-card:hover {
    border-color: #cbd5e1;
    border-left-color: var(--accent);
    box-shadow: 0 8px 20px rgba(3, 44, 56, 0.03);
}

.faq-balanced-card.is-open {
    border-color: #cbd5e1;
    border-left-color: var(--secondary);
    box-shadow: 0 12px 30px rgba(235, 28, 60, 0.06);
}

.faq-balanced-top {
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 20px;
}

.faq-q-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

.faq-number {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--secondary);
    background: rgba(235, 28, 60, 0.08);
    padding: 4px 10px;
    border-radius: 8px;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.faq-question-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq-balanced-card.is-open .faq-question-text {
    color: var(--secondary);
}

.faq-toggle-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.faq-balanced-card.is-open .faq-toggle-icon {
    background: var(--secondary);
    color: #ffffff;
    transform: rotate(135deg);
}

.faq-balanced-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, padding 0.4s ease;
    color: #475569;
    line-height: 1.7;
    font-size: 0.98rem;
}

.faq-balanced-card.is-open .faq-balanced-answer {
    max-height: 300px;
    opacity: 1;
    padding: 0 28px 24px 62px;
}

@media (max-width: 1100px) {
    .faq-balanced-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .faq-balanced-header h2 {
        font-size: 2.4rem;
    }

    .faq-balanced-top {
        padding: 20px;
    }

    .faq-balanced-card.is-open .faq-balanced-answer {
        padding: 0 20px 20px 20px;
    }

    .faq-question-text {
        font-size: 1rem;
    }

    .faq-number {
        padding: 2px 8px;
        font-size: 1rem;
    }
}

/* --- INVOICE PREVIEW SHOWCASE --- */
.invoice-preview-showcase {
    padding: 80px 0;
    background: linear-gradient(180deg, #fdf5f5 0%, #f8e9e9 100%);
    overflow: hidden;
}

.preview-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.preview-header h2 {
    font-size: 3.5rem;
    font-weight: 950;
    color: var(--primary);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 15px;
}

/* --- INVOICE PREVIEW SHOWCASE --- */
.invoice-preview-showcase {
    padding: 70px 0;
    background: #ffffff;
    position: relative;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.preview-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 30px;
}

.preview-header h2 {
    font-family: var(--font-heading);
    font-size: 2.35rem;
    color: #0f172a;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.preview-header h2 span {
    color: #e11d48;
}

.preview-header p {
    color: #64748b;
    font-size: 0.96rem;
    line-height: 1.6;
    margin: 0;
}

/* Tabs */
.preview-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.preview-tab-btn {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    color: #334155;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.02);
}

.preview-tab-btn i {
    font-size: 0.95rem;
    color: #64748b;
    transition: color 0.25s;
}

.preview-tab-btn:hover {
    border-color: #cbd5e1;
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.06);
}

.preview-tab-btn.active {
    background: linear-gradient(135deg, #e11d48 0%, #eb1c3c 100%);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(225, 29, 72, 0.32);
}

.preview-tab-btn.active i {
    color: #ffffff;
}

/* Display */
.preview-display {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 36px;
    align-items: center;
    max-width: 1140px;
    margin: 0 auto;
}

/* Mockup Papers container */
.preview-mockup-container {
    background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 24px;
    border: 1.5px solid #e2e8f0;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.06);
    padding: 24px;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.preview-mockup-container img {
    max-height: 440px;
    width: auto !important;
    max-width: 100%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.mockup-paper {
    display: none;
    opacity: 0;
    transform: scale(0.96) translateY(8px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
    text-align: center;
}

.mockup-paper.active {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* Details Panel styling */
.preview-details {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    padding: 28px 30px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.details-panel {
    display: none;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.details-panel.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.details-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(225, 29, 72, 0.08);
    color: #e11d48;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.details-panel h3 {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.details-panel p {
    color: #64748b;
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 16px;
}

.details-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.details-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #334155;
    font-size: 0.88rem;
    line-height: 1.45;
}

.details-list li i.text-green {
    color: #10b981;
    font-size: 0.95rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.details-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    border-top: 1px solid #f1f5f9;
    padding-top: 16px;
}

.d-stat {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 8px 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.d-label {
    font-size: 0.72rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
}

.d-stat strong {
    font-size: 0.88rem;
    color: #0f172a;
    font-weight: 800;
}

/* Details Panel styling */
.preview-details {
    padding-left: 10px;
}

.details-panel {
    display: none;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.details-panel.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.details-panel h3 {
    font-size: 1.8rem;
    font-weight: 850;
    color: var(--primary);
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.details-panel p {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.details-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.details-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.4;
}

.details-list li i {
    margin-top: 4px;
    font-size: 0.9rem;
}

.details-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    border-top: 1px solid rgba(3, 44, 56, 0.08);
    padding-top: 20px;
}

.d-stat {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.4;
}

.d-stat strong {
    display: block;
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 2px;
}

@media (max-width: 1100px) {
    .preview-display {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .preview-mockup-container {
        min-height: auto;
        padding: 30px 15px;
    }

    .preview-details {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .preview-header h2 {
        font-size: 2.5rem;
    }

    .preview-tab-btn {
        padding: 10px 18px;
        font-size: 0.9rem;
    }

    .details-panel h3 {
        font-size: 1.5rem;
    }
}

/* --- 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: 20px 16px;
        border-radius: 20px;
    }

    .bento-icon {
        margin-bottom: 1rem;
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .bento-item h3 {
        font-size: 1.2rem;
        margin-bottom: 6px;
    }

    .bento-item p {
        font-size: 0.82rem;
        line-height: 1.4;
    }

    .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;
    }
}

.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;
}


/* Tools Dropdown Menu Styling */
.dropdown-menu-large {
    width: 600px !important;
    min-width: 600px !important;
    padding: 1.5rem !important;
    left: auto !important;
    right: -30px !important;
    transform: translateX(0) translateY(20px) !important;
}

.dropdown-link:hover .dropdown-menu-large {
    transform: translateX(0) translateY(5px) !important;
}

.dropdown-grid-large {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px 24px !important;
}

.dropdown-grid-vertical {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
}

@media (max-width: 992px) {
    .dropdown-menu-large {
        width: 100% !important;
        min-width: 100% !important;
        padding: 0 !important;
        position: static !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
    }

    .dropdown-link:hover .dropdown-menu-large {
        transform: none !important;
    }

    .dropdown-grid-large {
        display: block !important;
    }

    /* Mobile dropdown layout enhancement to prevent horizontal overflow */
    .mobile-sidebar .dropdown-btn-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
        padding: 12px 16px 16px !important;
        background: #f8fafc !important;
        border-top: 1px solid #f1f5f9 !important;
    }

    .mobile-sidebar .dropdown-btn {
        background: #ffffff !important;
        border: 1px solid #e2e8f0 !important;
        padding: 8px 10px !important;
        border-radius: 8px !important;
        font-size: 0.78rem !important;
        font-weight: 600 !important;
        color: #334155 !important;
        text-decoration: none !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        white-space: normal !important;
        word-break: break-word !important;
        transition: all 0.25s ease !important;
        height: 100% !important;
    }
}

/* ==========================================================================
   COMPREHENSIVE FULL-SITE MOBILE & RESPONSIVE PERFECTION (ZERO WASTED GAPS)
   ========================================================================== */
@media (max-width: 992px) {
    /* Header & Navigation */
    .hero {
        padding: 95px 0 30px !important;
    }
    .hero-top-fullwidth .hero-title-main {
        font-size: 2.3rem !important;
    }
    .hero-grid-v2 {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    .hero-left-actions {
        width: 100% !important;
    }
    .hero-desc-main {
        max-width: 100% !important;
        margin-bottom: 1.2rem !important;
    }
    .hero-btns-v2 {
        width: 100% !important;
        flex-wrap: wrap !important;
    }
    .hero-cards-grid-v2 {
        width: 100% !important;
        grid-template-columns: repeat(3, 1fr) !important;
    }
    
    /* Platform & Discovery */
    .platform-grid {
        grid-template-columns: 1fr !important;
        gap: 1.8rem !important;
    }
    .features-grid,
    .aurora-industry-grid,
    .bento-grid-v2 {
        grid-template-columns: 1fr 1fr !important;
        gap: 14px !important;
    }
    
    /* Footer Full Width Container */
    .footer-fullwidth-container {
        padding: 0 24px !important;
    }
    .ready-box-v3 {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        padding: 24px 20px !important;
        gap: 16px !important;
    }
    .ready-left-visual {
        display: none !important;
    }
    .ready-center-content {
        align-items: center !important;
        text-align: center !important;
    }
    .ready-badges-row {
        justify-content: center !important;
    }
    .ready-right-action {
        width: 100% !important;
    }
    .btn-ready-glow {
        width: 100% !important;
        justify-content: center !important;
        max-width: 340px !important;
    }
    .doodle-curve-arrow {
        display: none !important;
    }
    .footer-grid-v3 {
        grid-template-columns: 1fr 1fr !important;
        gap: 20px !important;
    }
    .footer-col-brand {
        grid-column: span 2 !important;
    }
}

@media (max-width: 768px) {
    /* 1. HERO SECTION & RATING BAR (COMPACT & SLEEK) */
    .hero {
        padding: 85px 0 15px !important;
    }
    .hero-top-fullwidth .hero-title-main {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }
    .hero-desc-main {
        font-size: 0.92rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1.1rem !important;
    }
    .hero-trust-row {
        gap: 8px 12px !important;
        font-size: 0.78rem !important;
        margin-bottom: 1.1rem !important;
    }
    .rating-panel-clean {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 8px 12px !important;
        gap: 6px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        border-radius: 12px !important;
        margin-bottom: 1.2rem !important;
        box-shadow: 0 4px 14px rgba(15, 23, 42, 0.03) !important;
    }
    .rating-col {
        align-items: center !important;
        text-align: center !important;
        flex: 1 !important;
    }
    .rating-col .rating-number {
        font-size: 1.1rem !important;
        line-height: 1 !important;
    }
    .rating-col .rating-number span {
        font-size: 0.78rem !important;
    }
    .rating-col .rating-label {
        font-size: 0.68rem !important;
        margin-top: 1px !important;
    }
    .rating-col-divider {
        display: block !important;
        width: 1px !important;
        height: 26px !important;
        margin: 0 2px !important;
        background: #e2e8f0 !important;
    }
    .rating-stars {
        font-size: 0.65rem !important;
        gap: 2px !important;
        margin-top: 2px !important;
    }
    .rating-avatars {
        margin-top: 2px !important;
    }
    .rating-avatars img {
        width: 18px !important;
        height: 18px !important;
        margin-left: -5px !important;
    }
    .avatar-plus {
        width: 18px !important;
        height: 18px !important;
        font-size: 0.6rem !important;
        margin-left: -5px !important;
    }
    .rating-live-badge {
        padding: 2px 6px !important;
        font-size: 0.68rem !important;
        margin-top: 2px !important;
    }

    /* Hero Cards Grid */
    .hero-cards-grid-v2,
    .features-static-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
        margin-bottom: 0 !important;
    }
    .feature-clean-card {
        padding: 10px 10px !important;
        border-radius: 10px !important;
        gap: 4px !important;
    }
    .feature-circle-icon {
        width: 32px !important;
        height: 32px !important;
    }
    .feature-circle-icon i {
        font-size: 0.88rem !important;
    }
    .feature-clean-card h4 {
        font-size: 0.85rem !important;
    }
    .feature-clean-card p {
        font-size: 0.72rem !important;
        line-height: 1.3 !important;
    }

    /* 2. PLATFORM SHOWCASE (ZERO GAP FROM HERO) */
    .platform-showcase-section {
        padding: 25px 0 30px !important;
        margin-top: 0 !important;
    }
    .platform-info h2 {
        font-size: 1.65rem !important;
        line-height: 1.2 !important;
        margin-bottom: 0.6rem !important;
    }
    .platform-info p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1.2rem !important;
    }
    .platform-pills-grid {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }
    .platform-pill {
        padding: 9px 12px !important;
        font-size: 0.86rem !important;
        border-radius: 10px !important;
    }

    /* 3. DISCOVERY & BENTO GRID */
    .feature-discovery {
        padding: 25px 0 !important;
    }
    .section-title {
        margin: 0 auto 1.25rem !important;
    }
    .section-title h2 {
        font-size: 1.65rem !important;
        white-space: normal !important;
    }
    .section-title p {
        font-size: 0.9rem !important;
    }
    .bento-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    .bento-item {
        padding: 1.1rem 1rem !important;
        border-radius: 12px !important;
    }
    .bento-big,
    .bento-wide {
        grid-column: auto !important;
        grid-row: auto !important;
    }

    /* 4. AURORA INDUSTRY SOLUTIONS */
    .industry-solutions-aurora {
        padding: 25px 0 20px !important;
    }
    .section-header-elite {
        margin-bottom: 18px !important;
    }
    .section-header-elite h2 {
        font-size: 1.65rem !important;
    }
    .aurora-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    .aurora-card {
        padding: 16px !important;
        border-radius: 14px !important;
    }

    /* 5. INVOICE PREVIEW SHOWCASE (ULTRA-PREMIUM MOBILE PRESENTATION) */
    .invoice-preview-showcase {
        padding: 25px 0 20px !important;
        margin-bottom: 0 !important;
    }
    .preview-header {
        margin: 0 auto 16px !important;
        text-align: center !important;
    }
    .preview-header h2 {
        font-size: 1.7rem !important;
        line-height: 1.2 !important;
        margin-bottom: 6px !important;
    }
    .preview-header p {
        font-size: 0.86rem !important;
        line-height: 1.45 !important;
    }
    .preview-tabs {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        gap: 6px !important;
        width: 100% !important;
        max-width: 420px !important;
        margin: 0 auto 16px !important;
        background: rgba(255, 255, 255, 0.7) !important;
        padding: 4px !important;
        border-radius: 50px !important;
        border: 1px solid rgba(226, 232, 240, 0.8) !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02) !important;
    }
    .preview-tab-btn {
        flex: 1 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 7px 6px !important;
        font-size: 0.74rem !important;
        font-weight: 700 !important;
        border-radius: 50px !important;
        white-space: nowrap !important;
        gap: 5px !important;
        border: none !important;
        box-shadow: none !important;
        transition: all 0.2s ease !important;
    }
    .preview-tab-btn i {
        font-size: 0.78rem !important;
    }
    .preview-tab-btn.active {
        background: var(--secondary) !important;
        color: #ffffff !important;
        box-shadow: 0 4px 12px rgba(235, 28, 60, 0.3) !important;
    }
    .preview-display {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }
    .preview-mockup-container {
        height: auto !important;
        max-height: none !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        border-radius: 0 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    .mockup-paper {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        border: none !important;
        background: transparent !important;
        box-shadow: none !important;
        display: none;
    }
    .mockup-paper.active {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    .mockup-paper img {
        width: 100% !important;
        max-width: 360px !important;
        height: auto !important;
        max-height: none !important;
        border-radius: 14px !important;
        box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12) !important;
        border: 1.5px solid #e2e8f0 !important;
        display: block !important;
        margin: 0 auto !important;
    }
    #mockup-thermal.active img {
        max-width: 230px !important;
    }
    .preview-details {
        padding-left: 0 !important;
        background: #ffffff !important;
        border: 1.5px solid #e2e8f0 !important;
        border-radius: 16px !important;
        padding: 16px 14px !important;
        box-shadow: 0 8px 24px rgba(15, 23, 42, 0.03) !important;
        box-sizing: border-box !important;
    }
    .details-panel h3 {
        font-size: 1.15rem !important;
        font-weight: 800 !important;
        color: #0f172a !important;
        margin-bottom: 6px !important;
    }
    .details-panel p {
        font-size: 0.84rem !important;
        color: #64748b !important;
        line-height: 1.45 !important;
        margin-bottom: 10px !important;
    }
    .details-list {
        margin-bottom: 12px !important;
        padding: 0 !important;
        list-style: none !important;
    }
    .details-list li {
        font-size: 0.82rem !important;
        margin-bottom: 6px !important;
        gap: 8px !important;
        display: flex !important;
        align-items: flex-start !important;
    }
    .details-stats {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 6px !important;
        padding-top: 10px !important;
        margin-bottom: 0 !important;
        border-top: 1px solid #f1f5f9 !important;
    }
    .d-stat {
        background: #f8fafc !important;
        padding: 6px 4px !important;
        border-radius: 8px !important;
        text-align: center !important;
        font-size: 0.72rem !important;
        border: 1px solid #f1f5f9 !important;
    }
    .d-stat strong {
        font-size: 0.8rem !important;
        color: #0f172a !important;
        display: block !important;
        margin-bottom: 1px !important;
    }

    /* 6. DUAL-TONE PRICING SECTION (PERFECT FULL-WIDTH CARDS & TIGHT PADDING) */
    .plan-section {
        padding: 25px 0 30px !important;
        margin-top: 0 !important;
    }
    .plan-section::before {
        height: 180px !important;
    }
    .plan-header {
        margin-bottom: 18px !important;
    }
    .plan-header h2 {
        font-size: 1.65rem !important;
        margin-bottom: 6px !important;
    }
    .plan-header p {
        font-size: 0.88rem !important;
        line-height: 1.45 !important;
    }
    .plan-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
        align-items: center !important;
        padding: 0 !important;
        overflow-x: visible !important;
        width: 100% !important;
    }
    .plan-card {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        border-radius: 16px !important;
        transform: none !important;
    }
    .plan-card-top {
        padding: 16px 16px 22px !important;
    }
    .plan-card-top .plan-name {
        font-size: 0.95rem !important;
    }
    .plan-card-top .plan-price {
        font-size: 2.1rem !important;
    }
    .plan-card-top .plan-price span {
        font-size: 0.95rem !important;
    }
    .plan-card-bottom {
        padding: 14px 16px 16px !important;
        margin-top: -20px !important;
    }
    .plan-sub-title {
        font-size: 0.85rem !important;
        margin-bottom: 10px !important;
    }
    .plan-features {
        margin-bottom: 14px !important;
    }
    .plan-features li {
        font-size: 0.86rem !important;
        margin-bottom: 8px !important;
        gap: 8px !important;
    }
    .plan-btn {
        padding: 11px !important;
        font-size: 0.92rem !important;
        border-radius: 10px !important;
    }

    /* 7. FAQ SECTION */
    .faq-section {
        padding: 25px 0 30px !important;
    }
    .faq-balanced-header {
        margin: 0 auto 18px !important;
    }
    .faq-balanced-header h2 {
        font-size: 1.65rem !important;
        margin-bottom: 6px !important;
    }
    .faq-balanced-header p {
        font-size: 0.88rem !important;
    }
    .faq-balanced-grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }
    .faq-balanced-top {
        padding: 14px 16px !important;
        gap: 12px !important;
    }
    .faq-question-text {
        font-size: 0.92rem !important;
    }
    .faq-number {
        font-size: 0.82rem !important;
        padding: 2px 6px !important;
    }
    .faq-toggle-icon {
        width: 26px !important;
        height: 26px !important;
        font-size: 0.82rem !important;
    }
    .faq-balanced-card.is-open .faq-balanced-answer {
        padding: 0 16px 14px 44px !important;
        font-size: 0.84rem !important;
    }

    /* 8. FOOTER MOBILE */
    .footer-tools-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px !important;
    }
    .footer-bottom-bar-v3 {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 14px !important;
    }
    .footer-trust-chips {
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 6px !important;
    }
}

@media (max-width: 576px) {
    .footer-fullwidth-container {
        padding: 0 14px !important;
    }
    .hero-top-fullwidth .hero-title-main {
        font-size: 1.75rem !important;
    }
    .hero-badge-pill {
        font-size: 0.74rem !important;
        padding: 3px 10px !important;
    }
    .hero-btns-v2 {
        flex-direction: column !important;
        gap: 8px !important;
    }
    .hero-btn-coral,
    .hero-btn-android {
        width: 100% !important;
        justify-content: center !important;
        padding: 0.75rem 1rem !important;
        font-size: 0.84rem !important;
    }
    .ready-box-v3 {
        padding: 20px 14px !important;
        border-radius: 14px !important;
    }
    .ready-center-content h2 {
        font-size: 1.35rem !important;
    }
    .ready-badges-row {
        gap: 6px 10px !important;
        font-size: 0.74rem !important;
    }
    .footer-grid-v3 {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }
    .footer-col-brand {
        grid-column: span 1 !important;
    }
    .footer-metric-pills {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 5px !important;
    }
    .metric-pill {
        padding: 6px 3px !important;
    }
    .metric-pill strong {
        font-size: 0.9rem !important;
    }
    .metric-pill span {
        font-size: 0.62rem !important;
    }
    .footer-tools-box {
        padding: 14px 10px !important;
    }
    .footer-tools-pills-grid a {
        font-size: 0.7rem !important;
        padding: 3px 7px !important;
    }
}