/*
Theme Name: AI Marketing Experts Luxury
Theme URI: https://aimarketingexperts.in/
Description: A premium, fast, and lead-generation focused theme for AI Marketing Experts. White and luxury blue color scheme.
Version: 1.0.0
Author: APS-WAAN
Author URI: https://aimarketingexperts.in/
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: custom-background, luxury, clean, translation-ready, accessibility-ready
*/

/* Core Design System & Tokens */
:root {
    --bg-primary: #f8fafc;
    --bg-secondary: #ffffff;
    --bg-accent: #eff6ff;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --color-blue-dark: #1e3a8a;
    --color-blue-royal: #2563eb;
    --color-blue-light: #3b82f6;
    --color-gold: #d97706;
    --border-color: rgba(37, 99, 235, 0.08);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-premium: 0 10px 30px -10px rgba(37, 99, 235, 0.08);
}

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

html {
    overflow-x: clip;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
    padding-top: 6.25rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* Typography & Growth Visuals */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-blue-dark);
}

/* Header & Sleek Glassmorphism Floating Navbar (Centered Modern Capsule Pill) */
.navbar-area {
    position: fixed;
    top: clamp(0.5rem, 1.2vw, 1.25rem);
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    max-width: calc(100% - 2rem);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 99px;
    box-shadow: 0 12px 35px -5px rgba(15, 23, 42, 0.09), 0 0 0 1px rgba(37, 99, 235, 0.05);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: clamp(0.4rem, 0.6vw, 0.65rem) clamp(0.75rem, 1.2vw, 1.25rem);
    box-sizing: border-box;
}

.navbar-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(0.6rem, 1vw, 1.25rem);
    padding: 0;
    margin: 0;
    position: relative;
}

.logo-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    z-index: 2;
}

.logo-brand img {
    height: clamp(36px, 3vw, 44px);
    max-height: 46px;
    width: auto;
    border-radius: 8px;
    filter: contrast(1.15) brightness(1.05) drop-shadow(0 2px 8px rgba(37, 99, 235, 0.18));
    image-rendering: -webkit-optimize-contrast;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-brand:hover img {
    transform: scale(1.05);
}

.logo-brand-text-cursive {
    font-family: 'Caveat', 'Dancing Script', cursive, sans-serif;
    font-size: clamp(1.35rem, 4.5vw, 1.75rem);
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 60%, #3b82f6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.01em;
    display: inline-block;
    white-space: nowrap;
    text-decoration: none;
    transition: transform 0.25s ease;
}

.logo-brand:hover .logo-brand-text-cursive {
    transform: scale(1.03);
}

/* Mobile Center Cursive Title Container */
.navbar-mobile-center-title {
    display: none;
}

@media (max-width: 1280px) {
    .navbar-area {
        width: min(calc(100% - 1.5rem), 1420px);
    }

    .navbar-container {
        justify-content: space-between;
    }

    .navbar-mobile-center-title {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        pointer-events: auto;
        z-index: 1;
        width: max-content;
        max-width: calc(100% - 100px);
        text-align: center;
    }
}

.nav-links {
    display: flex;
    gap: clamp(0.15rem, 0.35vw, 0.65rem);
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
    flex-shrink: 0;
}

.nav-links li {
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}

.nav-links li:last-child {
    margin-left: clamp(0.2rem, 0.5vw, 0.65rem);
}

.nav-links li a {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 600;
    font-size: clamp(0.82rem, 0.88vw, 0.94rem);
    color: #1e293b;
    background: transparent;
    border: none;
    padding: clamp(0.4rem, 0.52vw, 0.52rem) clamp(0.45rem, 0.6vw, 0.78rem);
    border-radius: 8px;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.2;
}

.nav-links li a:hover {
    color: var(--color-blue-royal);
    background: rgba(37, 99, 235, 0.06);
}

.nav-links li a.cta-btn {
    background: var(--color-blue-royal) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: clamp(0.8rem, 0.86vw, 0.92rem) !important;
    padding: clamp(0.48rem, 0.58vw, 0.62rem) clamp(1rem, 1.25vw, 1.5rem) !important;
    border-radius: 99px !important;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.32) !important;
    transition: all 0.25s ease !important;
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: 0.03em;
}

.nav-links li a.cta-btn:hover {
    background: var(--color-blue-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4) !important;
}

/* Luxury Nav Item Dropdowns with Hover Bridge (Centered to Navbar) */
.nav-item-dropdown {
    position: static;
    padding-bottom: 14px;
    margin-bottom: -14px;
}

.nav-chevron {
    font-size: 0.68rem;
    margin-left: 0.25rem;
    opacity: 0.7;
    transition: transform 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}

.nav-item-dropdown:hover .nav-chevron {
    transform: rotate(180deg);
    color: var(--color-blue-royal);
    opacity: 1;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%) translateY(12px) scale(0.98);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 22px;
    padding: 0.95rem;
    min-width: 290px;
    box-shadow: 0 24px 70px -10px rgba(15, 23, 42, 0.16), 0 0 0 1px rgba(37, 99, 235, 0.06);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1), transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.22s;
    z-index: 10000;
    display: flex;
    flex-direction: column;
}

/* Invisible Hover Bridge: ensures continuous cursor path so dropdown never closes unexpectedly */
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -24px;
    left: 0;
    width: 100%;
    height: 30px;
    background: transparent;
    display: block;
}

.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-item-dropdown:focus-within .nav-dropdown-menu,
.nav-item-dropdown.active .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0) scale(1);
}

/* 2-Column Luxury Dropdown with Featured Promo Card */
.nav-dropdown-menu.luxury-dropdown-with-promo {
    width: min(900px, calc(100vw - 32px));
    padding: 1.35rem;
}

.luxury-dropdown-body {
    display: grid;
    grid-template-columns: 1fr 270px;
    gap: 1.5rem;
    align-items: stretch;
    margin-bottom: 0.95rem;
}

.luxury-dropdown-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
}

.luxury-menu-header {
    margin-bottom: 0.65rem;
}

.luxury-menu-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-blue-royal);
    padding: 0.25rem 0.65rem;
    background: rgba(37, 99, 235, 0.08);
    border-radius: 99px;
}

.luxury-dropdown-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.35rem;
    min-width: 0;
}

.dropdown-column {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.dropdown-col-title {
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #64748b;
    margin-bottom: 0.45rem;
    padding-left: 0.45rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.dropdown-col-title i {
    font-size: 0.8rem;
    color: var(--color-blue-royal);
}

/* Modern Card Item in Dropdown (Spacious & Crisp) */
.dropdown-link-card {
    display: flex !important;
    align-items: center;
    gap: 0.75rem;
    padding: 0.55rem 0.65rem !important;
    border-radius: 12px !important;
    background: transparent !important;
    border: 1px solid transparent !important;
    text-decoration: none !important;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
    text-align: left;
    margin-bottom: 0.1rem;
    box-sizing: border-box;
    width: 100%;
}

.dropdown-link-card:hover {
    background: #f8fafc !important;
    border-color: rgba(37, 99, 235, 0.12) !important;
    transform: translateX(3px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.dropdown-card-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
    flex-grow: 1;
    overflow: hidden;
}

.dropdown-card-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #0f172a;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: color 0.2s ease;
    line-height: 1.25;
    white-space: nowrap;
}

.dropdown-link-card:hover .dropdown-card-title {
    color: var(--color-blue-royal);
}

.dropdown-card-desc {
    font-size: 0.72rem;
    color: #64748b;
    font-weight: 500;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Dropdown Icon Badges with Rich Vibrant Gradients */
.dropdown-icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.dropdown-icon-wrap.icon-blue {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(59, 130, 246, 0.2));
    color: #2563eb;
}
.dropdown-link-card:hover .dropdown-icon-wrap.icon-blue {
    background: #2563eb;
    color: #ffffff;
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.dropdown-icon-wrap.icon-indigo {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(129, 140, 248, 0.2));
    color: #4f46e5;
}
.dropdown-link-card:hover .dropdown-icon-wrap.icon-indigo {
    background: #4f46e5;
    color: #ffffff;
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.dropdown-icon-wrap.icon-purple {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.12), rgba(168, 85, 247, 0.2));
    color: #9333ea;
}
.dropdown-link-card:hover .dropdown-icon-wrap.icon-purple {
    background: #9333ea;
    color: #ffffff;
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(147, 51, 234, 0.3);
}

.dropdown-icon-wrap.icon-rose {
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.12), rgba(251, 113, 133, 0.2));
    color: #e11d48;
}
.dropdown-link-card:hover .dropdown-icon-wrap.icon-rose {
    background: #e11d48;
    color: #ffffff;
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(225, 29, 72, 0.3);
}

.dropdown-icon-wrap.icon-emerald {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(52, 211, 153, 0.2));
    color: #059669;
}
.dropdown-link-card:hover .dropdown-icon-wrap.icon-emerald {
    background: #059669;
    color: #ffffff;
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.dropdown-icon-wrap.icon-amber {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(251, 191, 36, 0.2));
    color: #d97706;
}
.dropdown-link-card:hover .dropdown-icon-wrap.icon-amber {
    background: #d97706;
    color: #ffffff;
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}

.dropdown-icon-wrap.icon-cyan {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.12), rgba(56, 189, 248, 0.2));
    color: #0284c7;
}
.dropdown-link-card:hover .dropdown-icon-wrap.icon-cyan {
    background: #0284c7;
    color: #ffffff;
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

/* Feature Badges */
.nav-badge {
    font-size: 0.58rem;
    font-weight: 800;
    padding: 0.12rem 0.38rem;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1;
    flex-shrink: 0;
}

.badge-ai {
    background: linear-gradient(135deg, #7c3aed, #2563eb);
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(124, 58, 237, 0.3);
}

.badge-hot {
    background: linear-gradient(135deg, #f97316, #ef4444);
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(249, 115, 22, 0.3);
}

.badge-new {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.3);
}

/* ==========================================
   FEATURED PROMO CARD (25-Point Free Tool Card)
   ========================================== */
.dropdown-promo-card {
    background: linear-gradient(155deg, #0f172a 0%, #1e3a8a 38%, #581c87 75%, #ea580c 135%);
    border-radius: 18px;
    padding: 1.45rem 1.35rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 14px 35px -6px rgba(15, 23, 42, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.dropdown-promo-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 45px -6px rgba(15, 23, 42, 0.38), 0 0 0 1px rgba(255, 255, 255, 0.25) inset;
}

.dropdown-promo-card::before {
    content: '';
    position: absolute;
    top: -25%;
    right: -25%;
    width: 170px;
    height: 170px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.32) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.promo-card-top {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.22rem 0.65rem;
    border-radius: 99px;
    width: fit-content;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.promo-title {
    color: #ffffff !important;
    font-family: var(--font-body) !important;
    font-size: 1.15rem !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
    margin: 0.35rem 0 0 0 !important;
}

.promo-desc {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.78rem !important;
    line-height: 1.5 !important;
    margin: 0 !important;
    font-weight: 400 !important;
}

.promo-cta-btn {
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%) !important;
    color: #ffffff !important;
    font-weight: 800 !important;
    font-size: 0.84rem !important;
    padding: 0.68rem 1.1rem !important;
    border-radius: 99px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.55rem !important;
    text-decoration: none !important;
    margin-top: 1.25rem !important;
    box-shadow: 0 4px 16px rgba(234, 88, 12, 0.4) !important;
    transition: all 0.25s ease !important;
    position: relative;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
}

.promo-cta-btn:hover {
    background: linear-gradient(135deg, #fbbf24 0%, #f97316 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(234, 88, 12, 0.55) !important;
    color: #ffffff !important;
}

.promo-cta-btn i {
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.promo-cta-btn:hover i {
    transform: translateX(3px);
}

/* Mini footer in dropdowns */
.luxury-dropdown-mini-footer {
    margin-top: 0.75rem;
    padding-top: 0.65rem;
    border-top: 1px solid rgba(226, 232, 240, 0.85);
}

.mini-footer-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.45rem 0.75rem;
    border-radius: 10px;
    background: rgba(37, 99, 235, 0.04);
    color: var(--color-blue-royal) !important;
    font-size: 0.78rem;
    font-weight: 700;
    transition: all 0.2s ease;
    text-decoration: none !important;
}

.mini-footer-link:hover {
    background: rgba(37, 99, 235, 0.09);
    transform: translateX(2px);
}

/* ==========================================
   AI SEO SERVICES MEGA MENU (High Fidelity Light Mode)
   ========================================== */
.nav-item-dropdown.nav-item-megamenu:hover .nav-dropdown-menu.seo-megamenu-dropdown,
.nav-item-dropdown.nav-item-megamenu:focus-within .nav-dropdown-menu.seo-megamenu-dropdown {
    transform: translateX(-50%) translateY(0) scale(1);
}

.nav-dropdown-menu.seo-megamenu-dropdown {
    width: min(1180px, calc(100vw - 32px));
    max-width: min(1180px, calc(100vw - 32px));
    min-width: unset;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 22px;
    padding: 1.35rem 1.4rem 1.1rem 1.4rem;
    box-shadow: 0 24px 70px -10px rgba(15, 23, 42, 0.16), 0 0 0 1px rgba(37, 99, 235, 0.06);
    display: flex;
    flex-direction: column;
    gap: 0;
    left: 50%;
    transform: translateX(-50%) translateY(12px) scale(0.98);
}

.seo-megamenu-main-row {
    display: grid;
    grid-template-columns: 1fr 275px;
    gap: 1.65rem;
    align-items: stretch;
    margin-bottom: 0.95rem;
}

.seo-megamenu-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
    min-width: 0;
}

.seo-megamenu-col {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.seo-megamenu-footer {
    border-top: 1px solid rgba(226, 232, 240, 0.85);
    padding-top: 0.85rem;
    margin-top: 0.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.25rem;
}

.seo-megamenu-social {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.social-follow-label {
    font-size: 0.76rem;
    font-weight: 800;
    color: var(--text-secondary, #64748b);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.seo-social-icons {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.seo-social-icons a {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(37, 99, 235, 0.06);
    border: 1px solid rgba(37, 99, 235, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-blue-royal) !important;
    font-size: 0.8rem;
    transition: all 0.2s ease;
    text-decoration: none;
}

.seo-social-icons a:hover {
    background: var(--color-blue-royal);
    border-color: var(--color-blue-royal);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

.seo-megamenu-card-banner {
    background: linear-gradient(135deg, #f0f7ff 0%, #e0effe 100%) !important;
    border: 1px solid rgba(37, 99, 235, 0.22) !important;
    border-radius: 14px;
    padding: 0.7rem 1.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.1rem;
    text-decoration: none !important;
    color: #0f172a !important;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.08);
    transition: all 0.25s ease;
    flex-grow: 1;
    max-width: 440px;
}

.seo-megamenu-card-banner:hover {
    background: linear-gradient(135deg, #e0effe 0%, #dbeafe 100%) !important;
    border-color: #2563eb !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(37, 99, 235, 0.18);
}

.seo-card-banner-content {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.seo-card-banner-title {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: #0f172a !important;
}

.seo-card-orb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #ffffff !important;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35);
}

.seo-card-banner-sub {
    font-size: 0.74rem;
    color: #475569 !important;
    font-weight: 500;
}

.seo-card-banner-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #2563eb !important;
    color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    flex-shrink: 0;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

.seo-megamenu-card-banner:hover .seo-card-banner-btn {
    background: #1d4ed8 !important;
    transform: translateX(3px);
}

@media (max-width: 1280px) {
    .nav-dropdown-menu.seo-megamenu-dropdown {
        width: min(980px, calc(100vw - 24px));
        padding: 1.15rem 1.15rem 0.85rem 1.15rem;
    }
    .seo-megamenu-main-row {
        grid-template-columns: 1fr 240px;
        gap: 1rem;
    }
    .seo-megamenu-grid {
        gap: 0.6rem;
    }
    .nav-dropdown-menu.luxury-dropdown-with-promo {
        width: min(800px, calc(100vw - 24px));
        padding: 1.15rem;
    }
    .luxury-dropdown-body {
        grid-template-columns: 1fr 240px;
        gap: 1rem;
    }
    .luxury-dropdown-grid-2 {
        gap: 0.65rem;
    }
    .dropdown-link-card {
        padding: 0.52rem 0.62rem !important;
        gap: 0.65rem;
    }
    .dropdown-card-title {
        font-size: 0.82rem;
    }
    .dropdown-card-desc {
        font-size: 0.68rem;
    }
    .promo-title {
        font-size: 1.05rem !important;
    }
}

@media (max-width: 991px) {
    .nav-dropdown-menu.seo-megamenu-dropdown,
    .nav-dropdown-menu.luxury-dropdown-with-promo,
    .nav-dropdown-menu.luxury-dropdown-2col {
        display: none !important;
    }
}



/* Category Filter Tabs */
.category-tab-bar {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.category-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.6rem;
    border-radius: 99px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.category-tab-btn:hover {
    color: var(--color-blue-royal);
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateY(-2px);
}

.category-tab-btn.active {
    background: linear-gradient(135deg, var(--color-blue-royal) 0%, var(--color-blue-dark) 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.35);
    transform: translateY(-2px);
}

.category-tab-btn .tab-count {
    background: rgba(255, 255, 255, 0.2);
    color: inherit;
    padding: 0.15rem 0.55rem;
    border-radius: 99px;
    font-size: 0.76rem;
    font-weight: 800;
}

.category-tab-btn:not(.active) .tab-count {
    background: rgba(37, 99, 235, 0.1);
    color: var(--color-blue-royal);
}

.cta-btn {
    background: var(--color-blue-royal) !important;
    color: #ffffff !important;
    padding: 0.7rem 1.8rem;
    border-radius: 99px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
    border: none !important;
    outline: none !important;
}

.cta-btn:hover {
    transform: translateY(-2px);
    background: #1d4ed8 !important;
    color: #ffffff !important;
    box-shadow: 0 6px 22px rgba(37, 99, 235, 0.4);
}

/* Staggered Mobile Menu (Krishna Automobiles Vibe) */
.mobile-nav-toggle {
    display: none;
    cursor: pointer;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 12px;
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
    color: var(--color-blue-dark);
    z-index: 1001;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.mobile-nav-toggle:hover {
    background: var(--color-blue-royal);
    color: #ffffff;
}

@media (max-width: 1280px) {
    .nav-links {
        display: none !important;
    }
    
    .mobile-nav-toggle {
        display: flex !important;
    }
}

/* Hero Section with Growth Visualization - Faithful MVP Reference */
.hero-section {
    padding: 6.5rem 2rem 4rem;
    max-width: 1360px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.95fr;
    gap: 3.5rem;
    align-items: center;
}

@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding-top: 6rem;
        gap: 3rem;
    }
}

.hero-top-badges {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 0.85rem;
}

.hero-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.42rem 1.05rem;
    background: rgba(239, 246, 255, 0.9);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 99px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #1e40af;
}

.hero-top-badges {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-bottom: 1.85rem;
}

.hero-location-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.42rem 1.05rem;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 99px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #1e293b;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.hero-location-pill:hover {
    border-color: #2563eb;
    color: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.12);
}

.hero-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.42rem 1.05rem;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 99px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #334155;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
    margin-bottom: 0;
}

.hero-stars {
    color: #f59e0b;
    display: flex;
    gap: 2px;
    font-size: 0.76rem;
}

.hero-title {
    margin-bottom: 1.6rem;
    font-family: var(--font-heading);
    letter-spacing: -0.03em;
    line-height: 1.15;
    word-break: normal;
    overflow-wrap: break-word;
}

.hero-main-line {
    display: block;
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    font-weight: 800;
    color: #1e3a8a;
    line-height: 1.12;
}

.hero-brand-line {
    display: block;
    font-size: clamp(2.2rem, 5.2vw, 4.6rem);
    font-weight: 800;
    color: #1d4ed8;
    line-height: 1.12;
    margin-top: 0.15rem;
}

.hero-brand-highlight {
    display: inline-block;
    position: relative;
    color: #1d4ed8;
}

.hero-brand-highlight .hand-drawn-underline {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 18px;
    pointer-events: none;
    overflow: visible;
}

.underline-path {
    stroke: #f97316 !important;
    stroke-width: 6px !important;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 2px 6px rgba(249, 115, 22, 0.35));
}

.hero-sub-line {
    display: block;
    font-size: clamp(1.15rem, 2.2vw, 1.85rem);
    font-weight: 700;
    color: #2563eb;
    margin-top: 1.5rem;
    line-height: 1.35;
}

.hero-desc {
    font-size: 1.08rem;
    line-height: 1.75;
    color: #475569;
    margin-bottom: 1.8rem;
    max-width: 620px;
    font-weight: 450;
}

.hero-actions-row {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.8rem;
}

.hero-explore-link {
    font-size: 1.05rem;
    font-weight: 700;
    color: #2563eb;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.hero-explore-link:hover {
    color: #1d4ed8;
    transform: translateX(3px);
}

.hero-trust-strip {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.trust-pill-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.95rem;
    background: rgba(248, 250, 252, 0.9);
    border: 1px solid rgba(226, 232, 240, 0.85);
    border-radius: 99px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #334155;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.25s ease;
}

.trust-pill-link {
    cursor: pointer;
    text-decoration: none;
}

.trust-pill-link:hover {
    background: #ffffff;
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
    transform: translateY(-1px);
    color: var(--color-blue-royal);
}

.hero-telemetry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 540px;
}

.hero-stat-card {
    background: rgba(248, 250, 252, 0.85);
    border: 1px solid rgba(226, 232, 240, 0.85);
    border-radius: 16px;
    padding: 1.1rem 1.25rem;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.03);
}

.hero-stat-card .stat-number {
    font-size: 1.65rem;
    font-weight: 800;
    color: #1e3a8a;
    font-family: var(--font-heading);
    line-height: 1.1;
    margin-bottom: 0.35rem;
}

.hero-stat-card .stat-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-visuals {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

/* Growth Graph Animation SVG styling */
.growth-chart-svg {
    width: 100%;
    max-width: 450px;
    filter: drop-shadow(0 15px 30px rgba(37, 99, 235, 0.15));
}

.graph-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawPath 3.5s ease-out forwards infinite alternate;
}

@keyframes drawPath {
    to {
        stroke-dashoffset: 0;
    }
}

/* Handwritten Services Layout */
.section-wrapper {
    padding: 6rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Luxury Card Grid & Spotlight Animations */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.spotlight-card,
.service-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.85);
    border-radius: 24px;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03), 0 1px 3px rgba(15, 23, 42, 0.02);
    position: relative;
    overflow: hidden;
}

.spotlight-card:hover,
.service-card:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow: 0 20px 45px -10px rgba(37, 99, 235, 0.12), 0 0 0 1px rgba(37, 99, 235, 0.15) inset;
}

.spotlight-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    transition: left 0.75s ease;
    pointer-events: none;
}

.spotlight-card:hover::after {
    left: 150%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-blue-royal), var(--color-blue-light));
    opacity: 0;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(37, 99, 235, 0.15);
    box-shadow: 0 20px 40px -15px rgba(37, 99, 235, 0.15);
}

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

.card-icon {
    width: 60px;
    height: 60px;
    background-color: var(--bg-accent);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-blue-royal);
    font-size: 1.5rem;
    margin-bottom: 1.8rem;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.service-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background-color: var(--bg-accent);
    color: var(--color-blue-royal);
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
}

/* AI SEO Services (3 Columns, No Dropdowns) */
.seo-services-wrapper {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 7rem 2rem;
}

.seo-container {
    max-width: 1300px;
    margin: 0 auto;
}

.seo-columns-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

@media (max-width: 991px) {
    .seo-columns-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.seo-column {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 3rem 2.5rem;
    border-radius: 20px;
}

.seo-column-title {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.seo-list {
    list-style: none;
}

.seo-list li {
    margin-bottom: 1.2rem;
}

.seo-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1rem;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.95rem;
}

.seo-list a:hover {
    border-color: var(--color-blue-royal);
    color: var(--color-blue-royal);
    transform: translateX(4px);
}

.seo-list a i {
    font-size: 0.8rem;
    opacity: 0.6;
    transition: var(--transition-smooth);
}

.seo-list a:hover i {
    opacity: 1;
    transform: translateX(3px);
}

/* Footer Section */
.luxury-footer {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    padding: 6rem 2rem 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--border-color);
}

@media (max-width: 767px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.footer-brand h2 {
    font-size: 1.8rem;
    color: var(--color-blue-dark);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.footer-brand a {
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.footer-brand a:hover {
    color: var(--color-blue-royal);
}

.footer-col h3 {
    font-size: 1.1rem;
    color: var(--color-blue-dark);
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--color-blue-royal);
    padding-left: 4px;
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

@media (max-width: 767px) {
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Service Detail & Animation Helpers */
.service-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
    outline: none !important;
    border: none !important;
    transition: var(--transition-smooth);
}

.service-card-link:focus, .service-card-link:active, .service-card-link:hover {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.service-card-link * {
    outline: none !important;
}

.pipeline-step {
    transition: var(--transition-smooth);
}

.pipeline-step:hover {
    transform: translateY(-5px);
    border-color: var(--color-blue-royal) !important;
    box-shadow: 0 15px 35px -10px rgba(37, 99, 235, 0.12) !important;
}

/* React Bits - StrokeText Component Styles */
.stroke-text {
  display: block;
  width: 100%;
  line-height: 0;
}

.stroke-text--hover {
  cursor: pointer;
}

.stroke-text__svg {
  display: block;
  width: 100%;
  height: var(--stroke-text-height, 160px);
}

.stroke-text__stroke,
.stroke-text__fill {
  user-select: none;
}

/* React Bits - ScrollExpand Component Styles */
.scroll-expand {
  position: relative;
  width: 100%;
  height: 100%;
}

.scroll-expand--scroller {
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overscroll-behavior: contain;
}

.scroll-expand--scroller::-webkit-scrollbar {
  display: none;
}

.scroll-expand__track {
  position: relative;
  width: 100%;
}

.scroll-expand__stage {
  position: sticky;
  top: 0;
  width: 100%;
  overflow: hidden;
  --se-title-size: 4rem;
}

.scroll-expand__frame {
  position: absolute;
  inset: 0;
  clip-path: inset(21% 29% 21% 29% round 24px);
  will-change: clip-path;
}

.scroll-expand__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transform-origin: center;
  user-select: none;
  -webkit-user-drag: none;
}

.scroll-expand__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.1) 45%, rgba(0, 0, 0, 0.35));
  opacity: 0;
}

.scroll-expand__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6%;
  opacity: 0;
  will-change: opacity, transform;
}

.scroll-expand__title {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0 6%;
  text-align: center;
  font-size: var(--se-title-size);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
  pointer-events: none;
  will-change: opacity, transform;
}

.scroll-expand__hint {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.25rem;
  text-align: center;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.55);
  pointer-events: none;
  will-change: opacity, transform;
}

/* ==========================================================================
   FUTURISTIC AI INTERACTIVE COMPONENTS & DESIGN TOKENS
   ========================================================================== */

/* Glowing Pulse Indicator */
.pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #10b981;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* 3D Spotlight Card Effect */
.spotlight-card {
    position: relative;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s ease;
    box-shadow: var(--shadow-premium);
}

.spotlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(37, 99, 235, 0.08), transparent 40%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

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

.spotlight-card:hover {
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 20px 45px -10px rgba(37, 99, 235, 0.12);
}

/* AI Interactive Terminal Simulator */
.ai-terminal {
    background: #ffffff;
    border: 1px solid rgba(37, 99, 235, 0.1);
    border-radius: 20px;
    box-shadow: 0 20px 50px -10px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(37, 99, 235, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.terminal-header {
    background: #f8fafc;
    border-bottom: 1px solid rgba(37, 99, 235, 0.08);
    padding: 0.9rem 1.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.terminal-dots {
    display: flex;
    gap: 6px;
}

.terminal-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.terminal-body {
    padding: 2rem;
}

.terminal-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.chip-btn {
    background: var(--bg-accent);
    color: var(--color-blue-royal);
    border: 1px solid rgba(37, 99, 235, 0.15);
    padding: 0.45rem 1rem;
    border-radius: 99px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.chip-btn:hover, .chip-btn.active {
    background: var(--color-blue-royal);
    color: #ffffff;
    border-color: var(--color-blue-royal);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.terminal-console {
    background: #070a12;
    color: #e2e8f0;
    border-radius: 12px;
    padding: 1.4rem 1.6rem;
    font-family: 'Fira Code', 'Courier New', Courier, monospace;
    font-size: 0.88rem;
    line-height: 1.65;
    min-height: 195px;
    box-shadow: inset 0 2px 14px rgba(0,0,0,0.65), 0 0 25px rgba(37, 99, 235, 0.05);
    position: relative;
    border: 1px solid rgba(37, 99, 235, 0.12);
}

.terminal-prompt-line {
    color: #94a3b8;
    margin-bottom: 0.9rem;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.4rem;
    font-weight: 600;
}

.term-host {
    color: #10b981;
    text-shadow: 0 0 8px rgba(16, 185, 129, 0.3);
}

.term-cmd {
    color: #38bdf8;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(56, 189, 248, 0.3);
}

.term-flag {
    color: #fbbf24;
}

.term-val {
    color: #fb923c;
}

.term-cursor {
    color: #38bdf8;
    font-weight: 700;
    margin-left: 2px;
    animation: termCursorBlink 0.9s infinite steps(1);
}

@keyframes termCursorBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.terminal-output-text {
    color: #f1f5f9;
    white-space: pre-line;
    font-size: 0.84rem;
    line-height: 1.7;
}

.term-log-step {
    color: #38bdf8;
    font-weight: 700;
}

.term-log-ai {
    color: #ec4899;
    font-weight: 700;
}

.term-log-success {
    color: #10b981;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

/* Infinite Tech Stack Marquee */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 2.5rem 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-secondary), transparent);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-secondary), transparent);
}

.marquee-track {
    display: inline-flex;
    gap: 3.5rem;
    animation: marqueeScroll 45s linear infinite !important;
    will-change: transform;
    align-items: center;
}

/* Continuously run without pausing on hover */
.marquee-container:hover .marquee-track {
    animation-play-state: running !important;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.05rem;
    color: #1e293b;
    opacity: 0.92;
    text-decoration: none;
    transition: var(--transition-smooth);
    padding: 0.4rem 0.85rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.marquee-item:hover {
    color: var(--color-blue-royal);
    background: #ffffff;
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.12);
    transform: translateY(-2px);
    opacity: 1;
}

.marquee-brand-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    border-radius: 5px;
    flex-shrink: 0;
    display: inline-block;
}

.marquee-icon-box {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

/* Interactive ROI Calculator */
.roi-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3.5rem;
    box-shadow: var(--shadow-premium);
}

.roi-slider-container {
    margin-bottom: 2rem;
}

.roi-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.roi-slider {
    width: 100%;
    height: 8px;
    border-radius: 99px;
    background: #e2e8f0;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.roi-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-blue-royal);
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.35);
    border: 3px solid #ffffff;
}

.roi-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

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

.roi-stat-box {
    background: var(--bg-accent);
    border: 1px solid rgba(37, 99, 235, 0.1);
    border-radius: 16px;
    padding: 1.8rem 1.4rem;
    text-align: center;
}

.roi-stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--color-blue-dark);
    margin-bottom: 0.3rem;
}

/* Battle Card Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    box-shadow: var(--shadow-premium);
    background: var(--bg-secondary);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.comparison-table th, .comparison-table td {
    padding: 1.4rem 1.8rem;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: var(--bg-primary);
    font-size: 1.1rem;
    font-weight: 700;
}

.comparison-table th.highlight-col, .comparison-table td.highlight-col {
    background: #f0f7ff;
    color: var(--color-blue-dark);
    font-weight: 600;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

/* FAQ Accordion */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-blue-dark);
    user-select: none;
}

.faq-question:hover {
    color: var(--color-blue-royal);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
    padding: 0 2rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-item.active {
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 10px 30px -10px rgba(37, 99, 235, 0.08);
}

.faq-item.active .faq-answer {
    max-height: 250px;
    padding-bottom: 1.5rem;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Bento Grid System */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

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

@media (max-width: 991px) {
    .bento-span-2 {
        grid-column: span 1;
    }
}

/* ==========================================================================
   ANIMATED HAND-DRAWN BRUSH UNDERLINE & SERVICE IMAGE CARDS
   ========================================================================== */

.highlight-underline-wrapper {
    position: relative;
    display: inline-block;
    color: var(--color-blue-dark);
    white-space: nowrap;
}

.hand-drawn-underline {
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 18px;
    overflow: visible;
    pointer-events: none;
    z-index: 2;
}

.underline-path {
    stroke: #f97316; /* Vibrant Coral / Orange matching reference */
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
}

/* Service Stock Image Frame & Badges */
.service-image-cover {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 1.2rem;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.spotlight-card:hover .service-image-cover {
    transform: scale(1.03);
}

.subservice-pill-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.subservice-pill {
    background: var(--bg-accent);
    color: var(--color-blue-dark);
    border: 1px solid rgba(37, 99, 235, 0.12);
    padding: 0.35rem 0.85rem;
    border-radius: 99px;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.subservice-pill:hover {
    background: var(--color-blue-royal);
    color: #ffffff !important;
    border-color: var(--color-blue-royal);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

.subservice-pill i.fa-arrow-up-right-from-square {
    font-size: 0.68rem;
    opacity: 0.7;
    transition: transform 0.2s ease;
}

.subservice-pill:hover i.fa-arrow-up-right-from-square {
    opacity: 1;
    transform: translate(1px, -1px);
}

/* ==========================================================================
   REACT BITS: SHINY TEXT, MAGNET, STAR BORDER, DECRYPTED TEXT
   ========================================================================== */

/* Shiny Text Sheen Sweep */
.shiny-text {
    background: linear-gradient(
        120deg,
        rgba(30, 58, 138, 0.8) 0%,
        rgba(37, 99, 235, 1) 25%,
        #60a5fa 50%,
        rgba(37, 99, 235, 1) 75%,
        rgba(30, 58, 138, 0.8) 100%
    );
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shinyTextSweep 3.5s linear infinite;
    display: inline-block;
}

@keyframes shinyTextSweep {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* Decrypted Text Styling */
.decrypted-text {
    display: inline-block;
    font-family: var(--font-heading);
    cursor: default;
    user-select: none;
}

/* Magnetic Button Wrapper */
.magnet-btn {
    display: inline-block;
    transition: transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform;
}

/* Star Border Button Effect */
.star-border-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    border-radius: 99px;
    background: linear-gradient(90deg, #2563eb, #f97316, #10b981, #2563eb);
    background-size: 300% 300%;
    animation: starBorderRotate 4s ease infinite;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.25);
}

@keyframes starBorderRotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.star-border-btn > * {
    background: #ffffff;
    border-radius: 99px;
    padding: 0.9rem 2.2rem;
    font-weight: 700;
    color: var(--color-blue-dark);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: var(--transition-smooth);
}

.star-border-btn:hover > * {
    background: var(--bg-accent);
    color: var(--color-blue-royal);
}

/* ==========================================================================
   3D LOGO FLIP LOADING SCREEN STYLES (PURE FOOLPROOF CSS + JS HYBRID)
   ========================================================================== */
#premium-loader.logo-flip-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background-color: #ffffff;
    z-index: 999999;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    animation: autoDismissLoader 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes autoDismissLoader {
    0% { opacity: 1; visibility: visible; }
    75% { opacity: 1; visibility: visible; }
    100% { opacity: 0; visibility: hidden; pointer-events: none; }
}

.loader-flip-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    text-align: center;
}

.logo-flip-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    perspective: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-flip-glow {
    position: absolute;
    inset: -24px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.3) 0%, rgba(249, 115, 22, 0.18) 45%, transparent 70%);
    border-radius: 50%;
    animation: pulseLoaderGlow 1.4s ease-in-out infinite alternate;
    pointer-events: none;
    filter: blur(8px);
}

@keyframes pulseLoaderGlow {
    0% { transform: scale(0.85); opacity: 0.5; }
    100% { transform: scale(1.18); opacity: 0.95; }
}

.logo-flip-card {
    width: 105px;
    height: 105px;
    border-radius: 22px;
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.25), 0 0 0 1px rgba(37, 99, 235, 0.12);
    transform-style: preserve-3d;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: logo3DFlip 1.2s cubic-bezier(0.45, 0.05, 0.55, 0.95) forwards;
}

@keyframes logo3DFlip {
    0% { transform: rotateY(0deg) scale(0.9); }
    50% { transform: rotateY(180deg) scale(1.05); }
    100% { transform: rotateY(360deg) scale(1); }
}

.logo-flip-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 14px;
    filter: contrast(1.2) brightness(1.08) drop-shadow(0 2px 8px rgba(37, 99, 235, 0.15));
    image-rendering: -webkit-optimize-contrast;
}

.loader-brand-title {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.loader-progress-bar {
    width: 220px;
    height: 5px;
    background: rgba(37, 99, 235, 0.08);
    border-radius: 99px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

.loader-progress-fill {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #2563eb 0%, #3b82f6 50%, #f97316 100%);
    border-radius: 99px;
    transform-origin: left center;
    transform: scaleX(0);
    animation: loaderProgressFill 1.3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    box-shadow: 0 0 12px rgba(37, 99, 235, 0.5);
}

@keyframes loaderProgressFill {
    0% { transform: scaleX(0); }
    15% { transform: scaleX(0.18); }
    45% { transform: scaleX(0.55); }
    80% { transform: scaleX(0.88); }
    100% { transform: scaleX(1); }
}

/* ==========================================================================
   Luxury Comparison Table Component
   ========================================================================== */
.comparison-table-wrapper {
    background: #ffffff;
    border-radius: 24px;
    overflow-x: auto;
    box-shadow: 0 20px 45px -12px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.1);
    margin: 2rem 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 680px;
}

.comparison-table thead {
    background: #f8fafc;
    border-bottom: 2px solid rgba(37, 99, 235, 0.08);
}

.comparison-table th {
    padding: 1.6rem 2.2rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-blue-dark);
    font-family: var(--font-heading);
    letter-spacing: -0.2px;
}

.comparison-table th.highlight-col {
    background: rgba(239, 246, 255, 0.95);
    color: var(--color-blue-royal);
    border-left: 2px solid rgba(37, 99, 235, 0.15);
    border-right: 2px solid rgba(37, 99, 235, 0.15);
}

.comparison-table td {
    padding: 1.8rem 2.2rem;
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.7;
    border-bottom: 1px solid rgba(226, 232, 240, 0.7);
    vertical-align: middle;
}

.comparison-table td.highlight-col {
    background: rgba(239, 246, 255, 0.5);
    border-left: 2px solid rgba(37, 99, 235, 0.15);
    border-right: 2px solid rgba(37, 99, 235, 0.15);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover td {
    background: rgba(241, 245, 249, 0.5);
}

.comparison-table tr:hover td.highlight-col {
    background: rgba(239, 246, 255, 0.85);
}

.tech-stack-pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    align-items: center;
}

.comparison-table .subservice-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.42rem 0.9rem;
    background: rgba(239, 246, 255, 0.85);
    border: 1px solid rgba(37, 99, 235, 0.14);
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-blue-dark);
    white-space: nowrap;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.comparison-table .subservice-pill:hover {
    background: var(--color-blue-royal);
    color: #ffffff;
    border-color: var(--color-blue-royal);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

/* ==========================================================================
   Free AI & SEO Audit Tool, Sidebar & FAQ Accordion Components
   ========================================================================== */

.tools-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1.2rem;
    background: rgba(37, 99, 235, 0.08);
    color: var(--color-blue-royal);
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.faq-accordion-group {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
    background: var(--bg-primary);
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.faq-trigger {
    width: 100%;
    text-align: left;
    padding: 1.2rem 1.5rem;
    background: none;
    border: none;
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--color-blue-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: var(--transition-smooth);
}

.faq-trigger:hover {
    color: var(--color-blue-royal);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0 1.5rem;
}

.faq-content p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
    padding-bottom: 1.2rem;
    margin: 0;
}

@media (max-width: 992px) {
    .sidebar-wrapper {
        margin-bottom: 2.5rem;
    }
    div[style*="grid-template-columns: 340px 1fr"],
    div[style*="grid-template-columns: 320px 1fr"] {
        grid-template-columns: 1fr !important;
    }
    div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
}

/* ==========================================================================
   ADVANCED TEXT EFFECTS & REACT BITS TYPOGRAPHY
   ========================================================================== */

.stroke-text {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    width: 100%;
    max-width: 100%;
}

.stroke-text__svg {
    display: block;
    width: 100%;
    height: auto;
    height: var(--stroke-text-height, 120px);
    max-height: 160px;
    margin: 0 auto;
    overflow: visible;
}

.stroke-text__stroke,
.stroke-text__fill {
    user-select: none;
}

.stroke-text-heading {
    display: block;
    width: 100%;
    margin: 0 auto 0.5rem auto;
    max-width: 100%;
    line-height: 1.15;
}

/* ==========================================================================
   HERO TRUST PILL STRIP & GUARANTEE BADGES
   ========================================================================== */

.hero-trust-strip {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2.2rem;
}

.trust-pill-item {
    background: #ffffff;
    border: 1px solid rgba(37, 99, 235, 0.12);
    padding: 0.45rem 0.95rem;
    border-radius: 99px;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.04);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--color-blue-dark);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.trust-pill-item:hover {
    transform: translateY(-2px);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.08);
}

.trust-pill-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.shiny-text {
    background: linear-gradient(120deg, #1e3a8a 0%, #2563eb 25%, #60a5fa 50%, #2563eb 75%, #1e3a8a 100%);
    background-size: 250% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shiny-text-shimmer 4s ease-in-out infinite;
    display: inline-block;
}

@keyframes shiny-text-shimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.text-glow-word {
    position: relative;
    display: inline-block;
    color: var(--color-blue-dark);
    transition: all 0.3s ease;
}

.text-glow-word:hover {
    color: var(--color-blue-royal);
    text-shadow: 0 0 20px rgba(37, 99, 235, 0.25);
    transform: translateY(-2px);
}

.highlight-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.15rem 0.75rem;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.2);
    color: var(--color-blue-royal);
    border-radius: 99px;
    font-size: 0.6em;
    vertical-align: middle;
    letter-spacing: 0.05em;
    font-weight: 800;
    margin-left: 0.3rem;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.08);
}

.dynamic-word-cycler {
    display: inline-block;
    color: var(--color-blue-royal);
    font-weight: 800;
    position: relative;
    border-bottom: 2px dashed rgba(37, 99, 235, 0.3);
    padding-bottom: 2px;
}

.hero-effect-title {
    font-family: var(--font-heading);
    letter-spacing: -0.025em;
    text-wrap: balance;
}

/* ==========================================================================
   VISUAL AI GROWTH COMMAND CENTER & LIVE SIMULATOR (LAYMAN-FRIENDLY)
   ========================================================================== */

.ai-growth-dashboard {
    background: #ffffff;
    border-radius: 28px;
    border: 1px solid rgba(37, 99, 235, 0.14);
    box-shadow: 0 25px 60px -15px rgba(37, 99, 235, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    overflow: hidden;
    width: 100%;
    max-width: 580px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ai-growth-dashboard:hover {
    box-shadow: 0 30px 70px -15px rgba(37, 99, 235, 0.18);
}

.dashboard-topbar {
    padding: 1rem 1.4rem;
    background: rgba(239, 246, 255, 0.6);
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-status-indicator {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: #ffffff !important;
}

.dashboard-pulse-orb {
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: dashboard-pulse 2s infinite;
}

@keyframes dashboard-pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.dashboard-speed-badge {
    padding: 0.25rem 0.75rem;
    background: #ffffff;
    border-radius: 99px;
    border: 1px solid rgba(37, 99, 235, 0.15);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-blue-royal);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.dashboard-body {
    padding: 1.6rem 1.5rem;
}

.dashboard-tabs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
    margin-bottom: 1.4rem;
}

.dashboard-tab-btn {
    padding: 0.75rem 0.9rem;
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-blue-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: left;
}

.dashboard-tab-btn:hover {
    background: rgba(239, 246, 255, 0.8);
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateY(-1px);
}

.dashboard-tab-btn.active {
    background: var(--color-blue-royal);
    color: #ffffff;
    border-color: var(--color-blue-royal);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

.dashboard-tab-btn.active i {
    color: #ffffff !important;
}

.visual-pipeline-container {
    background: #f8fafc;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 18px;
    padding: 1.2rem;
    margin-bottom: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.visual-step-row {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.75rem 0.9rem;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.visual-step-row:hover {
    border-color: rgba(37, 99, 235, 0.25);
    transform: translateX(3px);
}

.visual-step-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--color-blue-royal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.visual-step-content {
    flex-grow: 1;
}

.visual-step-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.15rem;
}

.visual-step-label strong {
    font-size: 0.88rem;
    color: var(--color-blue-dark);
}

.visual-step-tag {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border-radius: 99px;
}

.visual-step-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.live-outcome-toast {
    padding: 0.85rem 1.1rem;
    background: #ffffff;
    border: 1px solid rgba(37, 99, 235, 0.22);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.06);
    margin-bottom: 1.2rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.live-outcome-toast:hover {
    border-color: #2563eb;
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.12);
}

.toast-avatar {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #10b981;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.toast-info {
    flex: 1;
}

.toast-info strong {
    font-size: 0.86rem;
    color: #1e3a8a;
    display: block;
    font-weight: 700;
    margin-bottom: 0.1rem;
}

.toast-info span {
    font-size: 0.76rem;
    color: #64748b;
    font-weight: 500;
}

.toast-arrow {
    color: #94a3b8;
    font-size: 0.85rem;
}

.dashboard-kpi-footer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
    text-align: center;
}

.dashboard-kpi-footer .kpi-num {
    font-size: 1.25rem;
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1.1;
    margin-bottom: 0.25rem;
}

.dashboard-kpi-footer .kpi-lbl {
    font-size: 0.68rem;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ==========================================================================
   COMPREHENSIVE MOBILE & RESPONSIVE SUITE
   ========================================================================== */

/* Enhanced Mobile Menu Drawer (NextLeap Structure) */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: #ffffff;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu-inner {
    max-width: 520px;
    margin: 0 auto;
    padding: 1.5rem 1.25rem 6.5rem;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    background: #ffffff;
}

.mobile-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.mobile-drawer-close {
    background: rgba(37, 99, 235, 0.08);
    color: #2563eb;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    border: 1px solid rgba(37, 99, 235, 0.15);
    cursor: pointer;
    transition: all 0.25s ease;
}

.mobile-drawer-close:hover {
    transform: rotate(90deg);
    background: #2563eb;
    color: #ffffff;
}

.mobile-drawer-nav {
    display: flex;
    flex-direction: column;
}

.drawer-nav-item {
    border-bottom: 1px solid #f1f5f9;
    padding: 0.8rem 0;
}

.drawer-nav-item > a {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
}

.drawer-nav-item > a:hover {
    color: #2563eb;
    transform: translateX(4px);
}

.drawer-nav-highlight {
    background: rgba(37, 99, 235, 0.06);
    border: 1px solid rgba(37, 99, 235, 0.18);
    border-radius: 12px;
    padding: 0.75rem 1rem !important;
    margin: 0.4rem 0;
}

.drawer-nav-highlight > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #2563eb !important;
    font-weight: 800;
}

.drawer-nav-link-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drawer-nav-link-row > a {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    text-decoration: none;
    flex-grow: 1;
    transition: color 0.2s ease;
}

.drawer-nav-link-row > a:hover {
    color: #2563eb;
}

.accordion-toggle-btn {
    background: rgba(37, 99, 235, 0.08);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 0.78rem;
    color: #2563eb;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.has-accordion.open .accordion-toggle-btn {
    background: #2563eb;
    color: #ffffff;
    transform: rotate(180deg);
}

.drawer-submenu {
    display: none;
    padding: 0.5rem 0 0.5rem 0.75rem;
    flex-direction: column;
    gap: 0.35rem;
    border-left: 2px solid #2563eb;
    margin-top: 0.5rem;
    margin-left: 0.4rem;
}

.has-accordion.open .drawer-submenu {
    display: flex;
    animation: fadeInSubmenu 0.25s ease;
}

.drawer-submenu a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: #334155;
    text-decoration: none;
    padding: 0.45rem 0.75rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.drawer-submenu a i {
    font-size: 0.82rem;
    color: #2563eb;
    width: 18px;
    text-align: center;
}

.drawer-submenu a:hover {
    background: rgba(37, 99, 235, 0.06);
    color: #2563eb;
    transform: translateX(4px);
}

/* Modern Contact Info Section */
.mobile-drawer-contact {
    margin-top: 1.8rem;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

.drawer-section-title {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.drawer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.85rem;
}

.drawer-contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(37, 99, 235, 0.08);
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.drawer-contact-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.drawer-contact-text label {
    font-size: 0.72rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.drawer-contact-text span,
.drawer-contact-text a {
    font-size: 0.92rem;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.2s ease;
}

.drawer-contact-text a:hover {
    color: #2563eb;
}

/* Dual Action CTA Buttons */
.drawer-cta-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1.25rem;
    margin-bottom: 1.5rem;
    width: 100%;
}

.drawer-get-started-btn {
    background: var(--color-blue-royal, #2563eb) !important;
    color: #ffffff !important;
    font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif) !important;
    font-weight: 700 !important;
    font-size: 0.92rem !important;
    line-height: 1.2 !important;
    padding: 0.72rem 1.25rem !important;
    border-radius: 99px !important;
    text-decoration: none !important;
    text-align: center !important;
    flex: 1 1 auto;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3) !important;
    transition: all 0.2s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    white-space: nowrap !important;
}

.drawer-get-started-btn:hover {
    background: var(--color-blue-dark, #1e3a8a) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.4) !important;
}

.drawer-arrow-btn {
    background: rgba(37, 99, 235, 0.08) !important;
    color: #2563eb !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    border: 1px solid rgba(37, 99, 235, 0.2) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.9rem !important;
    text-decoration: none !important;
    flex-shrink: 0 !important;
    transition: all 0.2s ease !important;
}

.drawer-arrow-btn:hover {
    background: #2563eb !important;
    color: #ffffff !important;
    transform: translateY(-1px);
}

/* Hide Floating Ask AI Trigger & Widget when Mobile Menu is Active */
body.mobile-menu-open #dh-chat-trigger,
body.mobile-menu-open #digitalhive-chat-widget,
.mobile-menu-overlay.active ~ #dh-chat-trigger,
.mobile-menu-overlay.active ~ #digitalhive-chat-widget {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: scale(0.8) !important;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s !important;
}

/* Touch & Mobile Viewport Rules */
html, body {
    max-width: 100vw !important;
    overflow-x: hidden !important;
}

#page, .site, .site-main, .section-wrapper, .navbar-area, footer {
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* Fluid Stroke Text Scaling on Mobile */
.stroke-text {
    display: inline-block !important;
    max-width: 100% !important;
    overflow: hidden !important;
    vertical-align: middle;
}

.stroke-text__svg {
    max-width: 100% !important;
    height: auto !important;
    display: inline-block !important;
}

@media (max-width: 991px) {
    body {
        padding-top: 5.5rem;
    }

    .navbar-area {
        top: 0.65rem;
        width: min(calc(100% - 1.5rem), 720px);
        padding: 0.45rem 1rem;
        border-radius: 99px;
    }

    .navbar-container {
        justify-content: space-between;
    }

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

    .mobile-nav-toggle {
        display: flex !important;
    }

    .hero-section {
        grid-template-columns: 1fr !important;
        text-align: center;
        padding: 5rem 1.5rem 3rem !important;
        gap: 2.5rem !important;
    }
    
    .hero-top-badges {
        justify-content: center;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
        max-width: 650px;
    }
    
    .hero-actions-row {
        justify-content: center;
    }

    .hero-trust-strip {
        justify-content: center;
    }
    
    .section-wrapper {
        padding: 3.5rem 1.5rem !important;
    }

    .section-header h2 {
        font-size: clamp(1.75rem, 4vw, 2.2rem) !important;
    }

    /* All 2-Column Split Layouts to 1-Column on Tablet/Mobile */
    div[style*="grid-template-columns: 1.15fr 0.85fr"],
    div[style*="grid-template-columns: 0.8fr 1.2fr"],
    div[style*="grid-template-columns: 1.2fr 1fr"],
    div[style*="grid-template-columns: 1fr 1fr"],
    div[style*="grid-template-columns: 320px 1fr"],
    div[style*="grid-template-columns: 340px 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 2.2rem !important;
    }

    .bento-span-2 {
        grid-column: span 1 !important;
    }

    .roi-card div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 5rem;
    }

    .navbar-area {
        top: 0.5rem;
        width: calc(100% - 1.25rem);
        padding: 0.4rem 0.85rem;
        border-radius: 99px;
        box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(37, 99, 235, 0.08);
    }

    .navbar-container {
        padding: 0;
        gap: 0.4rem;
        min-height: 38px;
    }

    .logo-brand {
        display: flex;
        align-items: center;
        gap: 0.45rem;
    }

    .logo-brand img {
        height: 32px !important;
        max-height: 34px !important;
        border-radius: 8px;
    }

    .logo-brand-text-cursive {
        font-size: clamp(1.15rem, 4.2vw, 1.4rem) !important;
    }

    .mobile-nav-toggle {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
        border-radius: 10px;
        flex-shrink: 0;
    }
    
    .hero-section {
        padding: 3.8rem 1rem 2rem !important;
        gap: 2rem !important;
        text-align: center !important;
    }
    
    .section-wrapper {
        padding: 2.8rem 1rem !important;
    }
    
    .hero-title {
        margin-bottom: 1rem !important;
        line-height: 1.15 !important;
        text-align: center !important;
    }

    .hero-main-line {
        font-size: clamp(1.6rem, 6.2vw, 2.15rem) !important;
        line-height: 1.15 !important;
        margin-bottom: 0.2rem !important;
    }

    .hero-brand-highlight {
        font-size: clamp(1.65rem, 6.8vw, 2.3rem) !important;
        line-height: 1.15 !important;
        width: auto !important;
        max-width: 100% !important;
        display: inline-block !important;
        margin-bottom: 0.4rem !important;
    }

    .hero-brand-highlight .hand-drawn-underline {
        bottom: -6px !important;
        height: 12px !important;
        min-width: unset !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .hero-sub-line {
        font-size: clamp(0.95rem, 3.8vw, 1.22rem) !important;
        line-height: 1.35 !important;
        margin-top: 0.5rem !important;
    }

    .hero-desc {
        font-size: 0.92rem !important;
        line-height: 1.65 !important;
        margin-bottom: 1.4rem !important;
        padding: 0 0.5rem !important;
    }
    
    .hero-top-badges {
        gap: 0.5rem;
        margin-bottom: 0.4rem !important;
        justify-content: center !important;
    }

    .hero-location-pill {
        font-size: 0.76rem !important;
        padding: 0.32rem 0.8rem !important;
    }

    .hero-rating-badge {
        font-size: 0.76rem !important;
        padding: 0.32rem 0.8rem !important;
        margin-bottom: 1rem !important;
    }

    .hero-actions-row {
        margin-bottom: 1.5rem !important;
    }

    .hero-trust-strip {
        flex-direction: column;
        width: 100%;
        gap: 0.65rem;
        margin-bottom: 1rem !important;
    }

    .trust-pill-item {
        width: 100%;
        justify-content: space-between;
        padding: 0.7rem 1rem;
        border-radius: 14px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    }

    .hero-telemetry-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.6rem !important;
        width: 100%;
    }

    .hero-stat-card {
        padding: 0.9rem 0.6rem !important;
        border-radius: 14px !important;
    }

    .hero-stat-card .stat-number {
        font-size: 1.25rem !important;
    }

    .hero-stat-card .stat-label {
        font-size: 0.62rem !important;
        letter-spacing: 0.02em !important;
    }

    /* Interactive Command Center Dashboard on Mobile */
    .ai-growth-dashboard {
        padding: 1.15rem !important;
        border-radius: 20px !important;
    }
    
    .dashboard-topbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding-bottom: 0.75rem;
    }
    
    .dashboard-tabs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.45rem;
        margin-bottom: 1rem;
    }
    
    .dashboard-tab-btn {
        padding: 0.55rem 0.65rem;
        font-size: 0.76rem;
        border-radius: 10px;
    }
    
    .visual-step-row {
        padding: 0.65rem 0.75rem;
        gap: 0.75rem;
        border-radius: 12px;
        margin-bottom: 0.5rem;
    }

    .visual-step-icon {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
        border-radius: 8px;
    }
    
    .visual-step-label strong {
        font-size: 0.82rem;
    }
    
    .visual-step-tag {
        font-size: 0.68rem;
        padding: 0.15rem 0.5rem;
    }

    .visual-step-desc {
        font-size: 0.76rem;
        line-height: 1.45;
    }
    
    .dashboard-kpi-footer {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.65rem !important;
        padding-top: 0.85rem;
    }

    .dashboard-kpi-footer .kpi-num {
        font-size: 1.15rem !important;
    }
    
    .dashboard-kpi-footer .kpi-lbl {
        font-size: 0.62rem !important;
    }

    /* All Multi-Column Grids override on <= 768px */
    div[style*="grid-template-columns: repeat(auto-fit, minmax(350px, 1fr))"],
    div[style*="grid-template-columns: repeat(auto-fit, minmax(340px, 1fr))"],
    div[style*="grid-template-columns: repeat(auto-fit, minmax(320px, 1fr))"],
    div[style*="grid-template-columns: repeat(auto-fit, minmax(300px, 1fr))"],
    div[style*="grid-template-columns: repeat(auto-fit, minmax(280px, 1fr))"],
    div[style*="grid-template-columns: repeat(auto-fit, minmax(260px, 1fr))"],
    div[style*="grid-template-columns: repeat(auto-fit, minmax(250px, 1fr))"],
    div[style*="grid-template-columns: repeat(auto-fit, minmax(240px, 1fr))"],
    div[style*="grid-template-columns: repeat(auto-fit, minmax(220px, 1fr))"],
    div[style*="grid-template-columns: repeat(auto-fit, minmax(200px, 1fr))"],
    .bento-grid,
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1.35rem !important;
    }

    /* Card Sizing & Imagery on Mobile */
    .spotlight-card {
        padding: 1.6rem 1.25rem !important;
        border-radius: 18px !important;
    }

    .service-image-cover {
        height: 180px !important;
        border-radius: 14px !important;
        margin-bottom: 1rem !important;
    }

    .category-tab-bar {
        gap: 0.5rem;
        margin-bottom: 2rem !important;
    }

    .category-tab-btn {
        padding: 0.6rem 1.1rem;
        font-size: 0.82rem;
        width: 100%;
        justify-content: center;
    }

    /* ROI & ROAS Simulators Mobile */
    .roi-slider-container {
        margin-bottom: 1.5rem;
    }

    .roi-slider {
        height: 8px;
    }

    .roi-slider::-webkit-slider-thumb {
        width: 26px;
        height: 26px;
    }

    .roi-stats-grid {
        grid-template-columns: 1fr !important;
        gap: 0.85rem !important;
    }

    .roi-stat-box {
        padding: 1.2rem 1rem !important;
        border-radius: 14px !important;
    }

    .roi-stat-number {
        font-size: 1.75rem !important;
    }

    /* Comparison Table Responsive Touch Scroll with Subtle Swiping Indicator */
    .comparison-table-wrapper {
        width: 100% !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        border-radius: 16px !important;
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04) !important;
        margin: 1.2rem 0 !important;
        position: relative;
        border: 1px solid rgba(226, 232, 240, 0.9);
    }

    .comparison-table-wrapper::after {
        content: '← Swipe to compare →';
        display: block;
        text-align: center;
        font-size: 0.72rem;
        font-weight: 700;
        color: #2563eb;
        background: rgba(37, 99, 235, 0.05);
        padding: 0.4rem 0;
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }
    
    .comparison-table-wrapper table,
    .comparison-table {
        min-width: 580px !important;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.85rem 1rem !important;
        font-size: 0.84rem !important;
    }

    /* FAQ Accordion on Mobile */
    .faq-list {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .faq-item {
        border-radius: 14px !important;
        padding: 1.1rem 1.15rem !important;
    }

    .faq-question {
        font-size: 0.95rem !important;
        gap: 0.75rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .faq-answer {
        font-size: 0.88rem !important;
        line-height: 1.6 !important;
        margin-top: 0.85rem !important;
        padding-top: 0.85rem !important;
        border-top: 1px solid #f1f5f9;
    }

    /* Forms on Mobile (Prevent auto-zoom & ensure full-width) */
    form[style*="grid-template-columns: 1fr 1fr"],
    form[style*="grid-template-columns: 1fr 1fr;"] {
        grid-template-columns: 1fr !important;
        gap: 1.1rem !important;
    }

    div[style*="grid-column: span 2"] {
        grid-column: span 1 !important;
    }

    input[type="text"],
    input[type="email"],
    input[type="url"],
    input[type="tel"],
    select,
    textarea {
        font-size: 16px !important; /* Prevents auto-zoom in iOS Safari */
        width: 100% !important;
        border-radius: 12px !important;
    }

    .cta-btn {
        width: 100% !important;
        max-width: 100% !important;
        justify-content: center !important;
        padding: 0.85rem 1.5rem !important;
    }

    /* Featured Article & Blog Mobile Layout */
    #featured-article-section .spotlight-card,
    div[style*="grid-template-columns: 1.2fr 1fr"] {
        display: flex !important;
        flex-direction: column !important;
    }

    #featured-article-section div[style*="min-height: 380px"],
    div[style*="grid-template-columns: 1.2fr 1fr"] > div:first-child {
        min-height: 220px !important;
        height: 220px !important;
    }

    #featured-article-section div[style*="padding: 3.5rem 3rem"],
    div[style*="grid-template-columns: 1.2fr 1fr"] > div:last-child {
        padding: 1.6rem 1.25rem !important;
    }

    /* Contact Details Spotlight Card Mobile */
    .contact-page-grid .spotlight-card,
    div[style*="grid-template-columns: 0.8fr 1.2fr"] > .spotlight-card {
        padding: 1.8rem 1.25rem !important;
    }

    /* Headquarters & Google Map Card */
    .hq-map-spotlight-card {
        padding: 1.4rem 1.1rem !important;
        border-radius: 20px !important;
    }

    .hq-map-spotlight-card iframe {
        min-height: 260px !important;
        height: 260px !important;
        border-radius: 16px !important;
    }

    .map-floating-brand-badge {
        display: none !important;
    }

    /* About Page & Sub-Page Responsive Layouts */
    .about-global-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
    }

    .about-stats-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.65rem !important;
        text-align: center !important;
    }

    .about-stats-grid > div {
        padding: 0.6rem 0.4rem;
        background: #ffffff;
        border-radius: 12px;
        border: 1px solid rgba(226, 232, 240, 0.8);
    }

    .about-stats-grid div[style*="font-size: 2.2rem"] {
        font-size: 1.45rem !important;
    }

    /* Sub-Page Telemetry Counter Strips */
    div[style*="display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap"] {
        gap: 0.6rem !important;
    }

    div[style*="display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap"] > div {
        flex: 1 1 calc(50% - 0.6rem) !important;
        min-width: 130px !important;
        padding: 0.75rem 0.85rem !important;
        border-radius: 14px !important;
        text-align: center !important;
    }

    /* Service Pages & Persistent Sidebars on Mobile */
    .service-body-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
    }

    .sidebar-wrapper {
        width: 100% !important;
        position: static !important;
    }

    .discover-services-card {
        padding: 1.4rem 1.1rem !important;
        border-radius: 18px !important;
    }

    .discover-services-link {
        padding: 0.65rem 0.85rem !important;
        font-size: 0.85rem !important;
    }

    .sidebar-review-card {
        padding: 1.6rem 1.25rem !important;
        border-radius: 18px !important;
    }

    /* Free 25-Point Audit Tool Mobile */
    #audit-live-progress-box {
        padding: 1.25rem 1rem !important;
        border-radius: 18px !important;
    }

    #audit-results-container .spotlight-card {
        padding: 1.35rem 1.1rem !important;
    }

    /* All Embedded Maps on Mobile */
    div[style*="height: 450px"],
    div[style*="height: 450px;"] {
        height: 260px !important;
        min-height: 260px !important;
    }

    /* Footer Mobile Overhaul */
    .luxury-footer {
        padding: 3rem 1.25rem 2rem !important;
    }

    .footer-contact-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .footer-main-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .footer-subservices-grid {
        grid-template-columns: 1fr !important;
        gap: 1.2rem !important;
    }

    .footer-newsletter-box {
        flex-direction: column !important;
        gap: 0.6rem !important;
    }

    .footer-newsletter-btn {
        width: 100% !important;
    }

    .footer-pills-row {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 0.45rem !important;
        padding-bottom: 0.6rem !important;
    }

    .footer-pill-chip {
        flex-shrink: 0 !important;
        white-space: nowrap !important;
        padding: 0.45rem 0.95rem !important;
        font-size: 0.78rem !important;
    }

    .footer-copyright-bar {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 0.8rem !important;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 4.75rem;
    }

    .navbar-area {
        top: 0.4rem;
        width: calc(100% - 1rem);
        padding: 0.35rem 0.75rem;
    }

    .logo-brand img {
        height: 28px !important;
        max-height: 30px !important;
    }

    .logo-brand-text-cursive {
        font-size: clamp(1.1rem, 4.4vw, 1.35rem) !important;
    }

    .mobile-nav-toggle {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .hero-section {
        padding: 3.5rem 0.85rem 2rem !important;
    }

    .hero-main-line {
        font-size: clamp(1.45rem, 6.2vw, 1.85rem) !important;
        line-height: 1.15 !important;
    }

    .hero-brand-highlight {
        font-size: clamp(1.5rem, 6.6vw, 1.95rem) !important;
        line-height: 1.15 !important;
    }

    .hero-sub-line {
        font-size: clamp(0.88rem, 3.8vw, 1.08rem) !important;
        line-height: 1.35 !important;
    }

    .mobile-menu-inner {
        padding: 1.25rem 0.95rem 5.5rem;
    }

    .drawer-nav-item > a,
    .drawer-nav-link-row > a {
        font-size: 0.96rem;
    }

    .dashboard-tabs-grid {
        grid-template-columns: 1fr;
    }

    .hero-telemetry-grid {
        grid-template-columns: 1fr !important;
        gap: 0.5rem !important;
    }

    .stroke-text__svg {
        max-height: 48px;
    }

    .spotlight-card {
        padding: 1.35rem 1rem !important;
        border-radius: 16px !important;
    }

    .section-wrapper {
        padding: 2.2rem 0.85rem !important;
    }

    .footer-matrix-band {
        padding: 1.8rem 0 1.5rem;
    }
}

/* ==========================================================================
   RANK SPIDERS COMPATIBLE REVIEW STACK & SERVICE BANNER SUITE
   ========================================================================== */
.review-images {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}

.review-image {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    margin-left: -12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background: var(--color-blue-royal);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.85rem;
}

.review-image:first-child {
    margin-left: 0;
}

.review-rating-content {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--color-blue-dark);
    margin-bottom: 0.6rem;
}

.review-rating-content span {
    color: var(--color-blue-royal);
    font-weight: 800;
}

.service-banner-card {
    border-radius: 24px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: var(--shadow-premium);
    margin-bottom: 3rem;
    border: 1px solid var(--border-color);
}

.service-banner-card figure {
    margin: 0;
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
}

.service-banner-card figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-banner-card:hover figure img {
    transform: scale(1.03);
}

/* ==========================================================================
   DISCOVER OUR MORE SERVICES SIDEBAR WIDGET & PERSISTENT STICKY WRAPPER
   ========================================================================== */
.sidebar-wrapper,
.page-single-sidebar {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 90px !important;
    margin-right: 15px;
    align-self: flex-start !important;
    z-index: 20;
}

@media (max-width: 992px) {
    .sidebar-wrapper,
    .page-single-sidebar {
        position: static !important;
        margin-right: 0;
    }
}

/* ==========================================================================
   EXECUTIVE SEO AUDIT SCORECARD DASHBOARD
   ========================================================================== */
.audit-metrics-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.85rem;
    text-align: center;
}

@media (max-width: 992px) {
    .audit-metrics-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .audit-metrics-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.discover-services-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    margin-bottom: 0;
}

/* Sidebar 2.5k+ Reviews Card */
.sidebar-review-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.85);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    padding: 2.2rem 1.8rem;
    margin-bottom: 2rem;
}

.sidebar-avatar-stack {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.sidebar-avatar-item {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.95rem;
    margin-left: -12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.sidebar-avatar-item:first-child {
    margin-left: 0;
}

.sidebar-avatar-item.blue { background: #2563eb; }
.sidebar-avatar-item.cyan { background: #0ea5e9; }
.sidebar-avatar-item.emerald { background: #10b981; }

.sidebar-review-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #1e1b4b;
    margin-bottom: 0.4rem;
    line-height: 1.4;
    font-family: var(--font-heading);
}

.sidebar-review-title span {
    color: var(--color-blue-royal);
}

.sidebar-stars-row {
    color: #f59e0b;
    font-size: 1.05rem;
    display: flex;
    gap: 0.2rem;
    margin-bottom: 0.7rem;
}

.sidebar-review-desc {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.55;
    margin-bottom: 1.3rem;
}

.sidebar-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 1.4rem;
}

.sidebar-stat-box {
    padding: 1rem 0.8rem;
    background: #f8fafc;
    border-radius: 14px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    text-align: center;
}

.sidebar-stat-val {
    font-size: 1.55rem;
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1.2;
}

.sidebar-stat-lbl {
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-top: 0.2rem;
}

.sidebar-phone-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 0.95rem;
    border-radius: 99px;
    background: var(--color-blue-royal);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.96rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.25);
    transition: all 0.2s ease;
}

.sidebar-phone-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

/* Sidebar Headquarters Card */
.sidebar-hq-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.85);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    padding: 1.8rem;
}

.sidebar-hq-header {
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--color-blue-royal);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.6rem;
}

.sidebar-hq-address {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.sidebar-hq-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--color-blue-royal);
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.sidebar-hq-link:hover {
    color: #1d4ed8;
}

.discover-services-header {
    background: #f8fafc;
    padding: 1.25rem 1.6rem;
    border-bottom: 1px solid #f1f5f9;
}

.discover-services-header h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-blue-dark);
    margin: 0;
    letter-spacing: -0.01em;
    font-family: var(--font-heading);
}

.discover-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.discover-services-list li {
    border-bottom: 1px solid #f1f5f9;
}

.discover-services-list li:last-child {
    border-bottom: none;
}

.discover-services-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.95rem 1.6rem;
    color: #334155;
    font-size: 0.96rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.discover-services-link .service-link-arrow {
    color: #94a3b8;
    font-size: 0.92rem;
    transition: transform 0.2s ease, color 0.2s ease;
}

.discover-services-link:hover {
    color: var(--color-blue-royal);
    background: rgba(248, 250, 252, 0.8);
    padding-left: 1.75rem;
}

.discover-services-link:hover .service-link-arrow {
    color: var(--color-blue-royal);
    transform: translateX(4px);
}

.discover-services-link.active {
    color: var(--color-blue-royal) !important;
    font-weight: 700;
    background: rgba(37, 99, 235, 0.08) !important;
    border-left: 3px solid var(--color-blue-royal);
    padding-left: calc(1.6rem - 3px);
}

.discover-services-link.active .service-link-arrow {
    color: var(--color-blue-royal) !important;
    transform: translateX(4px);
}

/* ==========================================================================
   LUXURY DARK FOOTER SUITE (RANKSPIEDERS ARCHITECTURE)
   ========================================================================== */
.luxury-footer {
    background: #090812;
    color: #e2e8f0;
    position: relative;
    overflow: hidden;
    font-family: var(--font-body);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top-contact-bar {
    padding: 2.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-contact-grid {
    display: grid;
    grid-template-columns: 1.15fr 1.2fr 1.65fr;
    gap: 2.5rem;
    align-items: center;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-brand-top {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-brand-logo {
    height: 48px;
    width: auto;
    border-radius: 8px;
    filter: contrast(1.15) brightness(1.05) drop-shadow(0 4px 12px rgba(37,99,235,0.25));
}

.footer-brand-text h2 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.02em;
    font-family: var(--font-heading);
}

.footer-brand-text p {
    font-size: 0.75rem;
    color: #94a3b8;
    margin: 0.2rem 0 0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 1.1rem;
}

.footer-contact-divider {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 2.2rem;
}

.footer-contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.15);
    color: var(--color-blue-royal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
    border: 1px solid rgba(37, 99, 235, 0.35);
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.15);
}

.footer-contact-info a {
    display: block;
    color: #cbd5e1;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    line-height: 1.45;
    transition: color 0.2s ease;
}

.footer-contact-info a:hover {
    color: #ffffff;
}

.footer-contact-info p {
    margin: 0;
    color: #94a3b8;
    font-size: 0.85rem;
    line-height: 1.45;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 1.45fr 0.85fr 0.85fr 0.85fr;
    gap: 3.5rem;
    max-width: 1320px;
    margin: 0 auto;
    padding: 4rem 1.5rem 3.5rem;
}

.footer-col h3 {
    font-size: 1.18rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.4rem;
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
}

.footer-newsletter-box {
    display: flex;
    background: #141224;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 0.85rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer-newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.85rem 1.2rem;
    color: #ffffff;
    font-size: 0.92rem;
    outline: none;
}

.footer-newsletter-input::placeholder {
    color: #64748b;
}

.footer-newsletter-btn {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    border: none;
    padding: 0.8rem 1.5rem;
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    border-radius: 8px;
    margin: 4px;
    transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.footer-newsletter-btn:hover {
    opacity: 0.95;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

.footer-newsletter-note {
    font-size: 0.84rem;
    color: #94a3b8;
    line-height: 1.55;
    margin-bottom: 1.8rem;
}

.footer-social-row {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.footer-social-row span {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
}

.footer-social-icons {
    display: flex;
    gap: 0.55rem;
}

.footer-social-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-social-icon:hover {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: #ffffff;
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.45);
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links-list a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-links-list a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

/* Bottom Services Matrix & Pill Chips Band */
.footer-matrix-band {
    background: #06050b;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 3rem 0 2.5rem;
}

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

.footer-pills-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-bottom: 2.5rem;
}

.footer-pill-chip {
    padding: 0.52rem 1.25rem;
    border-radius: 99px;
    font-size: 0.84rem;
    font-weight: 600;
    font-family: inherit;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #94a3b8;
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    transition: all 0.25s ease;
    outline: none;
}

.footer-pill-chip:hover {
    border-color: rgba(59, 130, 246, 0.5);
    color: #ffffff;
    background: rgba(37, 99, 235, 0.12);
    transform: translateY(-1px);
}

.footer-pill-chip.active {
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #3b82f6 100%);
    border-color: #3b82f6;
    color: #ffffff;
    box-shadow: 0 4px 18px rgba(37, 99, 235, 0.45);
    transform: translateY(-1px);
}

.footer-matrix-panels {
    min-height: 120px;
}

.footer-subservices-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.2rem;
    margin-bottom: 3rem;
    animation: footerTabFadeIn 0.3s ease-in-out;
}

@keyframes footerTabFadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-subservices-col {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-subservices-col a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-subservices-col a:hover {
    color: #ffffff;
}

.footer-copyright-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.2rem;
    font-size: 0.88rem;
    color: #64748b;
}

@media (max-width: 992px) {
    .footer-contact-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }
    .footer-contact-divider {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 1.5rem;
    }
    .footer-main-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    .footer-subservices-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.8rem;
    }
}

@media (max-width: 576px) {
    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-subservices-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .footer-copyright-bar {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ==========================================================================
   AIME AI COPILOT FLOATING CHATBOT SUITE
   ========================================================================== */
.aime-chatbot-container {
    position: fixed;
    bottom: 25px;
    right: 25px; /* Clean bottom-right floating trigger */
    z-index: 9999;
}

/* "Got queries?" Floating Speech Prompt Bubble */
.aime-chat-prompt-bubble {
    position: absolute;
    right: calc(100% + 14px);
    bottom: 8px;
    background: #ffffff;
    color: var(--color-blue-dark);
    font-weight: 800;
    font-size: 0.86rem;
    padding: 0.55rem 0.95rem;
    border-radius: 99px;
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.16);
    border: 1.5px solid rgba(37, 99, 235, 0.25);
    white-space: nowrap;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    animation: promptBubbleFloat 3s ease-in-out infinite;
    transition: transform 0.25s ease, opacity 0.25s ease, box-shadow 0.25s ease;
    user-select: none;
}

.aime-chat-prompt-bubble:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.28);
}

/* Speech Bubble Tail pointing right toward FAB */
.aime-chat-prompt-bubble::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid #ffffff;
}

.prompt-pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
    display: inline-block;
}

.prompt-text {
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
}

.prompt-close-btn {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 1.05rem;
    line-height: 1;
    padding: 0 0.1rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.prompt-close-btn:hover {
    color: #ef4444;
}

@keyframes promptBubbleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

/* Floating Action Button (FAB) */
.aime-chat-fab {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e1b4b 0%, #2563eb 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.45);
    border: 2px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.aime-chat-fab:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.6);
}

.chat-fab-pulse {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 99, 235, 0.6);
    animation: chatFabPulse 2.2s infinite;
    pointer-events: none;
}

@keyframes chatFabPulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.25); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

/* Chat Glassmorphic Panel Window */
.aime-chat-panel {
    position: fixed;
    bottom: 95px;
    right: 25px;
    width: 390px;
    max-width: calc(100vw - 30px);
    height: 580px;
    max-height: calc(100vh - 120px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(37, 99, 235, 0.18);
    border-radius: 24px;
    box-shadow: 0 25px 60px -15px rgba(15, 23, 42, 0.25), 0 0 0 1px rgba(37, 99, 235, 0.06);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.96);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10000;
}

.aime-chat-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Chat Header */
.aime-chat-header {
    background: linear-gradient(135deg, #1e1b4b 0%, #1e3a8a 100%);
    padding: 1.1rem 1.3rem;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.chat-header-left {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.chat-avatar-ring {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #60a5fa;
    position: relative;
}

.avatar-status-dot {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #10b981;
    border: 2px solid #1e1b4b;
}

.chat-title-wrap h4 {
    font-size: 0.98rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.chat-model-tag {
    font-size: 0.72rem;
    color: #cbd5e1;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.chat-header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.chat-btn-clear,
.chat-btn-close {
    background: rgba(255, 255, 255, 0.12);
    border: none;
    color: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: background 0.2s ease;
}

.chat-btn-clear:hover,
.chat-btn-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Chat Messages Scroll Container */
.aime-chat-messages {
    flex-grow: 1;
    padding: 1.2rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: #f8fafc;
}

.chat-message-row {
    display: flex;
    width: 100%;
}

.chat-message-row.user-row {
    justify-content: flex-end;
}

.chat-message-row.bot-row {
    justify-content: flex-start;
}

.chat-bubble {
    max-width: 86%;
    padding: 0.85rem 1.05rem;
    border-radius: 18px;
    font-size: 0.9rem;
    line-height: 1.55;
    word-break: break-word;
}

.user-bubble {
    background: var(--color-blue-royal);
    color: #ffffff;
    border-bottom-right-radius: 4px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.bot-bubble {
    background: #ffffff;
    color: #1e293b;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.bot-bubble p {
    margin-bottom: 0.5rem;
}

.bot-bubble p:last-child {
    margin-bottom: 0;
}

.bot-bubble ul {
    margin: 0.4rem 0 0.4rem 1.2rem;
    padding: 0;
}

.bot-bubble li {
    margin-bottom: 0.3rem;
}

.chat-inline-link {
    color: var(--color-blue-royal);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.chat-bubble-meta {
    font-size: 0.68rem;
    color: #64748b;
    margin-top: 0.5rem;
    padding-top: 0.3rem;
    border-top: 1px dashed #e2e8f0;
    font-family: monospace;
}

/* Quick Starter Chips */
.chat-quick-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.2rem;
}

.chip-action {
    background: #ffffff;
    border: 1px solid rgba(37, 99, 235, 0.2);
    color: var(--color-blue-royal);
    font-size: 0.76rem;
    font-weight: 700;
    padding: 0.4rem 0.75rem;
    border-radius: 99px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.chip-action:hover {
    background: var(--color-blue-royal);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(37, 99, 235, 0.2);
}

/* Typing Indicator Animation */
.typing-bubble {
    display: flex;
    align-items: center;
    padding: 0.7rem 0.9rem;
}

.typing-dots {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.typing-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-blue-royal);
    animation: typingBounce 1.4s infinite ease-in-out both;
}

.typing-dots span:nth-child(1) { animation-delay: -0.32s; }
.typing-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes typingBounce {
    0%, 80%, 100% { transform: scale(0); opacity: 0.4; }
    40% { transform: scale(1); opacity: 1; }
}

/* Input Bar */
.aime-chat-input-bar {
    padding: 0.75rem 1rem;
    background: #ffffff;
    border-top: 1px solid rgba(226, 232, 240, 0.9);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.aime-chat-input-bar input {
    flex-grow: 1;
    height: 44px;
    min-height: 44px;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    padding: 0 1rem;
    font-size: 0.92rem;
    line-height: 42px;
    color: var(--text-primary);
    background: #f8fafc;
    outline: none;
    font-family: inherit;
    transition: all 0.2s ease;
    overflow: hidden;
}

.aime-chat-input-bar input:focus {
    border-color: var(--color-blue-royal);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.aime-chat-input-bar button {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--color-blue-royal);
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
    transition: background 0.2s ease, transform 0.2s ease;
}

.aime-chat-input-bar button:hover {
    background: var(--color-blue-dark);
    transform: scale(1.05);
}

.aime-chat-footer-note {
    padding: 0.35rem 1rem 0.55rem;
    background: #ffffff;
    text-align: center;
    font-size: 0.68rem;
    color: #94a3b8;
    border-top: 1px solid #f1f5f9;
}

@media (max-width: 768px) {
    .aime-chatbot-container {
        right: 18px;
        bottom: 18px;
    }
    
    .aime-chat-panel {
        right: 12px;
        left: 12px;
        width: auto;
        bottom: 80px;
        height: calc(100dvh - 98px);
        max-height: none;
        border-radius: 20px;
    }
}

/* FAQ Accordion Styling */
.faq-item {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(226, 232, 240, 0.85);
}

.faq-item:hover {
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.06);
}

.faq-item .faq-answer {
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeInFaq 0.3s ease-out;
}

.faq-item.active i.fa-chevron-down {
    transform: rotate(180deg);
}

/* About Us Page Responsive Styles */
.about-global-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: center;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 991px) {
    .about-global-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .about-stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        text-align: center;
    }
}

/* ==========================================================================
   MOBILE-OPTIMIZED SERVICE SIDEBAR & LAYOUT (STREAMLINED MINIMALIST EXPERIENCE)
   ========================================================================== */
@media (max-width: 991px) {
    .service-body-grid,
    div[style*="grid-template-columns: 320px 1fr"] {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
    }

    .service-main-content {
        order: 1 !important;
        width: 100% !important;
    }

    .sidebar-wrapper {
        order: 2 !important;
        width: 100% !important;
        margin-top: 1.5rem !important;
    }

    /* Streamline Discover Services list on mobile into clean, compact text links */
    .discover-services-card {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        margin-bottom: 1.5rem !important;
    }

    .discover-services-header {
        background: transparent !important;
        padding: 0 0 0.8rem 0 !important;
        border-bottom: 2px solid rgba(37, 99, 235, 0.15) !important;
        margin-bottom: 0.8rem !important;
    }

    .discover-services-header h3 {
        font-size: 1.05rem !important;
    }

    /* Convert vertical list to a clean, fast horizontal pill scrollbar on mobile */
    .discover-services-list {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 0.5rem !important;
        padding-bottom: 0.6rem !important;
        scrollbar-width: thin;
        scrollbar-color: rgba(37, 99, 235, 0.3) transparent;
    }

    .discover-services-list::-webkit-scrollbar {
        height: 4px;
    }

    .discover-services-list::-webkit-scrollbar-thumb {
        background: rgba(37, 99, 235, 0.3);
        border-radius: 4px;
    }

    .discover-services-list li {
        border-bottom: none !important;
        flex-shrink: 0 !important;
    }

    .discover-services-link {
        display: inline-flex !important;
        align-items: center !important;
        padding: 0.55rem 1rem !important;
        background: #ffffff !important;
        border: 1px solid #e2e8f0 !important;
        border-radius: 99px !important;
        font-size: 0.86rem !important;
        font-weight: 600 !important;
        white-space: nowrap !important;
        box-shadow: 0 2px 6px rgba(0,0,0,0.03) !important;
    }

    .discover-services-link .service-link-arrow {
        display: none !important;
    }

    .discover-services-link.active {
        background: var(--color-blue-royal) !important;
        color: #ffffff !important;
        border-color: var(--color-blue-royal) !important;
        box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25) !important;
    }

    /* Make auxiliary sidebar cards compact and neat on mobile */
    .sidebar-review-card,
    .sidebar-hq-card {
        padding: 1.4rem !important;
        border-radius: 16px !important;
        margin-bottom: 1.2rem !important;
    }

    .sidebar-avatar-item {
        width: 36px !important;
        height: 36px !important;
        font-size: 0.85rem !important;
    }

    .sidebar-review-title {
        font-size: 0.95rem !important;
    }

    .service-banner-card {
        border-radius: 16px !important;
        margin-bottom: 2rem !important;
    }

    .service-banner-card figure {
        height: 220px !important;
    }
}

/* ==========================================================================
   AUDIT REPORT PRINT & PDF EXPORT STYLES
   ========================================================================== */
@media print {
    /* Hide non-report layout elements */
    header.navbar-area,
    footer.site-footer,
    footer,
    .mobile-drawer-overlay,
    .mobile-drawer,
    #premium-loader,
    #dh-chat-trigger,
    #digitalhive-chat-widget,
    .site-header,
    .tools-hero-badge,
    .section-wrapper:has(#auditScannerForm),
    #auditScannerForm,
    #auditProgressBox,
    .sidebar-wrapper,
    .service-body-grid > aside,
    .checklist-filter,
    .audit-report-actions,
    .audit-action-footer-buttons,
    section:has(.discover-services-card),
    section:has(.faq-item),
    section:has(h2:contains("Ready to Unlock")),
    .floating-cta-pill {
        display: none !important;
    }

    /* Print page setup */
    @page {
        size: A4 portrait;
        margin: 12mm 12mm 15mm 12mm;
    }

    html, body {
        background: #ffffff !important;
        color: #0f172a !important;
        font-size: 11pt !important;
        line-height: 1.4 !important;
        padding: 0 !important;
        margin: 0 !important;
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }

    #page, .site, .site-main, .section-wrapper {
        padding: 0 !important;
        margin: 0 !important;
        max-width: 100% !important;
        background: transparent !important;
    }

    /* Dashboard report container */
    #auditReportDashboard {
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
        border: 1px solid #cbd5e1 !important;
        border-radius: 12px !important;
        box-shadow: none !important;
        page-break-after: avoid;
    }

    /* Keep backgrounds and badges crisp */
    .audit-metrics-grid > div,
    .audit-print-header,
    .audit-header-topbar,
    .badge-status-pill {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }

    /* Prevent breaking inside critical blocks */
    .audit-metrics-grid,
    .audit-checklist-card,
    #auditChecklistContainer > div,
    .audit-summary-block {
        page-break-inside: avoid !important;
        break-inside: avoid !important;
    }

    /* Printable audit header */
    .audit-print-watermark {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        padding: 0.8rem 1rem;
        border-bottom: 1px solid #e2e8f0;
        margin-bottom: 0.5rem;
        font-size: 8pt;
        color: #64748b;
    }
}

/* Custom Target Dropdown Styling (Brand Royal Blue Theme) */
.target-option:hover:not(.active) {
    background: rgba(37, 99, 235, 0.05) !important;
}

.target-option:hover .opt-title {
    color: #1e3a8a !important;
}

#targetSelectTrigger:hover {
    border-color: #1d4ed8 !important;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.18) !important;
}

/* ==========================================================================
   MASTER LUXURY BEAUTIFICATION & AESTHETIC POLISH SUITE
   ========================================================================== */

/* Enhanced Selection */
::selection {
    background: rgba(37, 99, 235, 0.18);
    color: #1e3a8a;
}

/* Smooth Scrolling & Performance */
html {
    scroll-behavior: smooth;
    text-rendering: optimizeLegibility;
}

/* Glassmorphism Capsule Navbar Polish */
.navbar-area {
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border: 1px solid rgba(226, 232, 240, 0.85) !important;
    box-shadow: 0 16px 40px -10px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(37, 99, 235, 0.04) !important;
}

.nav-links > li > a {
    position: relative;
    padding: 0.55rem 0.95rem;
    border-radius: 99px;
    font-weight: 600;
    font-size: 0.92rem;
    color: #334155;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links > li > a:hover {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.06);
}

.nav-links > li > a.cta-btn,
.navbar-area .cta-btn {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
    color: #ffffff !important;
    border-radius: 99px !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 18px rgba(37, 99, 235, 0.32) !important;
    transition: all 0.25s ease !important;
}

.nav-links > li > a.cta-btn:hover,
.navbar-area .cta-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.45) !important;
}

/* Luxury Hero Section Polish */
.hero-section {
    position: relative;
    padding: clamp(2rem, 5vw, 4.5rem) 0;
}

.hero-top-badges {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.hero-location-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #0f172a;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.25s ease;
}

.hero-location-pill:hover {
    border-color: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.12);
}

.hero-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #0f172a;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.hero-stars {
    color: #f59e0b;
    font-size: 0.8rem;
    display: inline-flex;
    gap: 2px;
}

.hero-title {
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: #0f172a;
    margin-bottom: 1.25rem;
}

.hero-brand-highlight {
    position: relative;
    display: inline-block;
    color: #2563eb;
}

.hero-desc {
    font-size: clamp(1.05rem, 1.3vw, 1.2rem);
    color: #475569;
    line-height: 1.7;
    max-width: 680px;
    margin-bottom: 2rem;
}

/* Trust Pill Items Row */
.hero-trust-strip {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.trust-pill-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 700;
    color: #1e293b;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    transition: all 0.25s ease;
}

.trust-pill-link:hover {
    border-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.1);
}

.trust-pill-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    flex-shrink: 0;
}

/* Live Telemetry Counter Cards */
.hero-telemetry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 640px;
}

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

.hero-stat-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 16px 18px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
    transition: all 0.25s ease;
}

.hero-stat-card:hover {
    border-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.08);
}

.hero-stat-card .stat-number {
    font-size: 1.6rem;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 4px;
}

.hero-stat-card .stat-label {
    font-size: 0.72rem;
    font-weight: 800;
    color: #64748b;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* AI Growth Dashboard Simulator Card */
.ai-growth-dashboard {
    background: #ffffff;
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 24px;
    box-shadow: 0 20px 50px -10px rgba(15, 23, 42, 0.1), 0 0 0 1px rgba(37, 99, 235, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.ai-growth-dashboard:hover {
    box-shadow: 0 25px 60px -10px rgba(37, 99, 235, 0.15);
}

.dashboard-topbar {
    background: #0f172a;
    color: #ffffff;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-status-indicator,
.dashboard-status-indicator span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff !important;
}

.dashboard-pulse-orb {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 8px #10b981;
}

.dashboard-speed-badge {
    font-size: 0.78rem;
    font-weight: 700;
    color: #60a5fa;
    background: rgba(96, 165, 250, 0.15);
    padding: 4px 10px;
    border-radius: 99px;
}

.dashboard-body {
    padding: 24px;
}

.dashboard-tabs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.dashboard-tab-btn {
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    font-size: 0.85rem;
    font-weight: 700;
    color: #475569;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.dashboard-tab-btn:hover {
    background: #ffffff;
    color: #2563eb;
    border-color: #cbd5e1;
}

.dashboard-tab-btn.active {
    background: #eff6ff;
    color: #2563eb;
    border-color: #2563eb;
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.1);
}

.visual-pipeline-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.visual-step-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    transition: all 0.2s ease;
}

.visual-step-row:hover {
    background: #ffffff;
    border-color: #2563eb;
    transform: translateX(3px);
}

.visual-step-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(37, 99, 235, 0.08);
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.visual-step-content {
    flex: 1;
}

.visual-step-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3px;
}

.visual-step-label strong {
    font-size: 0.9rem;
    color: #0f172a;
}

.visual-step-tag {
    font-size: 0.72rem;
    font-weight: 800;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    padding: 2px 8px;
    border-radius: 99px;
}

.visual-step-desc {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.5;
}

/* Modern Luxury Footer Polish */
.luxury-footer {
    background: #0f172a;
    color: #ffffff;
    padding-top: 4rem;
    position: relative;
}

.footer-top-contact-bar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2.5rem;
    margin-bottom: 3rem;
}

.footer-contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr;
    gap: 2rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (max-width: 992px) {
    .footer-contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem 3.5rem;
}

@media (max-width: 992px) {
    .footer-main-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

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

.footer-col h3 {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-list a {
    color: #94a3b8;
    font-size: 0.92rem;
    transition: all 0.2s ease;
}

.footer-links-list a:hover {
    color: #60a5fa;
    transform: translateX(3px);
}

.footer-matrix-band {
    background: #020617;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 2.5rem 0;
}

.footer-pills-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
}

.footer-pill-chip {
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #94a3b8;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.footer-pill-chip:hover {
    background: rgba(37, 99, 235, 0.15);
    color: #ffffff;
    border-color: #2563eb;
}

.footer-pill-chip.active {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 2px 12px rgba(37, 99, 235, 0.4);
}

.footer-subservices-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

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

.footer-subservices-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-subservices-col a {
    color: #94a3b8;
    font-size: 0.88rem;
    transition: all 0.2s ease;
}

.footer-subservices-col a:hover {
    color: #38bdf8;
}

/* ==========================================================================
   ULTRA-LUXURY AMBIENT LIGHTING, GLOWS & MICRO-INTERACTIONS
   ========================================================================== */

/* Ambient Radial Mesh Glow */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Spotlight Card Inner Bevel & High-End Elevation */
.spotlight-card,
.rs-beautified-box,
.audit-hero-card {
    position: relative;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 20px 45px -10px rgba(15, 23, 42, 0.06), 0 0 0 1px rgba(37, 99, 235, 0.08) !important;
    overflow: visible !important;
}

.spotlight-card:hover,
.rs-beautified-box:hover {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 1), 0 25px 55px -10px rgba(37, 99, 235, 0.12), 0 0 0 1px rgba(37, 99, 235, 0.2) !important;
}

/* Ensure all form dropdowns float freely without clipping */
.aime-dropdown-wrap,
#auditScannerForm,
.section-wrapper {
    overflow: visible !important;
}

.aime-dropdown-menu {
    z-index: 999999 !important;
}

/* Shimmer Highlight on Primary CTA Buttons */
.cta-btn,
.rs-audit-run-btn,
.audit-pdf-btn,
.promo-cta-btn {
    position: relative;
    overflow: hidden;
}

.cta-btn::after,
.rs-audit-run-btn::after,
.audit-pdf-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: rotate(25deg);
    transition: all 0.75s ease;
}

.cta-btn:hover::after,
.rs-audit-run-btn:hover::after,
.audit-pdf-btn:hover::after {
    left: 130%;
}

/* Micro-Pulse on Active Status Dots */
.pulse-dot,
.dashboard-pulse-orb {
    position: relative;
}

.pulse-dot::after,
.dashboard-pulse-orb::after {
    content: '';
    position: absolute;
    top: -3px; left: -3px; right: -3px; bottom: -3px;
    border-radius: 50%;
    border: 1.5px solid #10b981;
    animation: pingOrb 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes pingOrb {
    0% { transform: scale(0.9); opacity: 1; }
    75%, 100% { transform: scale(2.2); opacity: 0; }
}

/* Modern Input Focus Rings */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
select:focus,
textarea:focus {
    border-color: #2563eb !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12) !important;
    outline: none !important;
}

/* Badge Pill Glow Accent */
.nav-badge,
.promo-badge,
.tools-hero-badge {
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.15);
}

/* Interactive Arrow Icon Hover Glide */
.service-link-arrow,
.dropdown-card-title i,
.cta-btn i {
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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