/* ================================================================
   MUKUL CHAND GUPTA - OFFICIAL PERSONAL TECHNOLOGY COMMAND CENTER
   Theme: Obsidian Deep Cyber & Luxury Gold Metallic Aesthetics
   ================================================================ */

:root {
    --font-sans: 'Outfit', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --font-serif-italic: 'Playfair Display', Georgia, serif;
    --font-mono: 'JetBrains Mono', monospace;

    --bg-dark: #06080f;
    --bg-surface: #0c101c;
    --bg-surface-elevated: #13192a;
    --bg-card: rgba(15, 21, 36, 0.85);
    --bg-glass: rgba(18, 26, 44, 0.65);
    
    --brand-gold: #d4af37;
    --brand-gold-light: #f5d98a;
    --brand-gold-dark: #a27c1e;
    --brand-gold-glow: rgba(212, 175, 55, 0.28);
    --brand-gold-gradient: linear-gradient(135deg, #fae29c 0%, #d4af37 50%, #997316 100%);
    
    --brand-blue: #3b82f6;
    --brand-cyan: #06b6d4;
    --brand-green: #10b981;
    --brand-purple: #8b5cf6;
    --brand-rose: #f43f5e;
    --brand-orange: #f97316;
    
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --text-gold: #f8df98;
    
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-card: rgba(255, 255, 255, 0.12);
    --border-gold: rgba(212, 175, 55, 0.35);
    --border-gold-glow: rgba(212, 175, 55, 0.65);
    
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.8);
    --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.25);
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-full: 9999px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-sans);
    -webkit-tap-highlight-color: transparent;
}

.luxury-italic, .font-cursive {
    font-family: var(--font-serif-italic) !important;
    font-style: italic !important;
    font-weight: 700;
    letter-spacing: 0.3px;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 50% -10%, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 10% 30%, rgba(59, 130, 246, 0.07) 0%, transparent 40%),
        radial-gradient(circle at 90% 65%, rgba(16, 185, 129, 0.06) 0%, transparent 45%),
        radial-gradient(circle at 50% 95%, rgba(139, 92, 246, 0.07) 0%, transparent 50%);
    background-attachment: fixed;
}

.font-mono {
    font-family: 'JetBrains Mono', monospace;
}

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

/* 🔴 TOP LIVE TICKER STRIP */
.top-ticker {
    background: linear-gradient(90deg, #090d16 0%, #151b2a 50%, #090d16 100%);
    border-bottom: 1px solid var(--border-gold);
    padding: 9px 16px;
    font-size: 0.82rem;
}

.ticker-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.ticker-left {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.live-pulse {
    width: 9px;
    height: 9px;
    background-color: var(--brand-green);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--brand-green);
    animation: pulseGlow 1.6s infinite;
    flex-shrink: 0;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.35); }
}

.badge-live {
    background: rgba(16, 185, 129, 0.2);
    color: var(--brand-green);
    font-size: 0.68rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(16, 185, 129, 0.4);
    letter-spacing: 0.5px;
}

/* 🌟 MASTER NAVIGATION */
.master-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(6, 8, 15, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
}

.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    flex-shrink: 0;
}

.brand-logo-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--brand-gold);
    box-shadow: var(--shadow-gold);
    transition: transform 0.3s ease;
    object-fit: cover;
}

.brand-wrapper:hover .brand-logo-img {
    transform: rotate(6deg) scale(1.05);
}

.brand-text-col {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: 0.8px;
    background: var(--brand-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.brand-tagline {
    font-size: 0.72rem;
    color: var(--text-secondary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.3px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 16px;
    list-style: none;
    position: static;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 4px;
    transition: color 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
    color: var(--brand-gold-light);
    transform: translateY(-1px);
}

/* 🌟 MEGA MENU STYLING */
.nav-item-mega {
    position: static;
}

.nav-mega-link {
    cursor: pointer;
}

.nav-chevron {
    font-size: 0.65rem;
    transition: transform 0.3s ease;
}

.nav-item-mega:hover .nav-chevron {
    transform: rotate(180deg);
}

.mega-menu-panel {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(8, 12, 24, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), 0 0 35px rgba(212, 175, 55, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
    overflow: hidden;
}

.nav-item-mega:hover .mega-menu-panel,
.mega-menu-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-inner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    padding: 24px 28px;
}

.mega-col {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    flex-direction: column;
    transition: all 0.2s;
}

.mega-col:hover {
    background: rgba(212, 175, 55, 0.04);
    border-color: rgba(212, 175, 55, 0.3);
}

.mega-col-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mega-col-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: #fff;
    flex-shrink: 0;
}

.mega-col-icon.blue { background: linear-gradient(135deg, #1e3a8a, #3b82f6); }
.mega-col-icon.purple { background: linear-gradient(135deg, #701a75, #ec4899); }
.mega-col-icon.rose { background: linear-gradient(135deg, #be123c, #f43f5e); }
.mega-col-icon.gold { background: linear-gradient(135deg, #b45309, #d4af37); color: #050814; }
.mega-col-icon.cyan { background: linear-gradient(135deg, #0e7490, #06b6d4); }

.mega-col-title {
    font-size: 0.84rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.mega-col-sub {
    font-size: 0.65rem;
    color: var(--text-secondary);
    font-weight: 600;
}

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

.mega-link {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.76rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
    line-height: 1.35;
}

.mega-link i {
    font-size: 0.55rem;
    color: var(--brand-gold);
    transition: transform 0.2s;
}

.mega-link:hover {
    color: var(--brand-gold-light);
    transform: translateX(4px);
}

.mega-link:hover i {
    transform: translateX(2px);
}

.mega-bottom-banner {
    background: linear-gradient(90deg, #0b1120 0%, #151b2e 100%);
    padding: 12px 28px;
    border-top: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.mega-banner-text {
    font-size: 0.78rem;
    color: #e2e8f0;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 📱 Mobile Drawer Accordion Styles */
.drawer-accordion-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-sm);
    color: #fff;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    margin-bottom: 6px;
}

.drawer-acc-arrow {
    font-size: 0.75rem;
    color: var(--brand-gold);
    transition: transform 0.3s ease;
}

.drawer-accordion-item.active .drawer-acc-arrow {
    transform: rotate(180deg);
}

.drawer-accordion-body {
    display: none;
    padding: 10px 14px 14px 14px;
    background: rgba(8, 12, 22, 0.6);
    border-left: 2px solid var(--brand-gold);
    margin-bottom: 10px;
    border-radius: 0 0 8px 8px;
}

.drawer-accordion-item.active .drawer-accordion-body {
    display: block;
    animation: fadeInModal 0.2s ease-out;
}

.drawer-acc-cat-title {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--brand-gold-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.drawer-sublink {
    display: block;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.78rem;
    padding: 4px 0 4px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: color 0.2s;
}

.drawer-sublink:hover {
    color: var(--brand-gold-light);
}

.nav-cta-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.nav-cta-btn {
    background: var(--brand-gold-gradient);
    color: #050814;
    font-weight: 900;
    font-size: 0.84rem;
    padding: 9px 18px;
    border-radius: var(--radius-full);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 18px var(--brand-gold-glow);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.55);
}

.btn-whatsapp-nav {
    background: rgba(37, 211, 102, 0.15);
    border: 1px solid rgba(37, 211, 102, 0.4);
    color: #25d366;
    padding: 8px 14px;
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: 0.82rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-whatsapp-nav:hover {
    background: #25d366;
    color: #000;
}

/* 📱 Animated Hamburger Button */
.nav-hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 0;
    transition: all 0.25s ease;
}

.nav-hamburger-btn:hover {
    background: rgba(212, 175, 55, 0.15);
}

.nav-hamburger-btn .ham-bar {
    width: 20px;
    height: 2px;
    background: var(--brand-gold-light);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-hamburger-btn.active .ham-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-hamburger-btn.active .ham-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-hamburger-btn.active .ham-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* 📱 MOBILE NAVIGATION DRAWER & BACKDROP */
.mobile-nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(4, 6, 12, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 2500;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -360px;
    width: 330px;
    max-width: 88vw;
    height: 100vh;
    background: #080c18;
    border-left: 1px solid var(--border-gold);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.9), 0 0 30px rgba(212, 175, 55, 0.15);
    z-index: 2600;
    display: flex;
    flex-direction: column;
    padding: 24px 20px;
    overflow-y: auto;
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-drawer.active {
    right: 0;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 14px;
}

.drawer-close-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-subtle);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.drawer-close-btn:hover {
    background: rgba(239, 68, 68, 0.3);
    color: #fff;
}

.drawer-status-pill {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--brand-green);
    font-size: 0.74rem;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}

.drawer-links-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 24px;
}

.drawer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 700;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s;
}

.drawer-link:hover, .drawer-link.active {
    background: rgba(212, 175, 55, 0.12);
    color: var(--brand-gold-light);
    transform: translateX(4px);
}

.drawer-actions-box {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--border-subtle);
}

/* 👑 HERO & POSITIONING SECTION */
.hero-section {
    padding: 65px 0 45px;
    text-align: center;
    position: relative;
}

.hero-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-gold);
    padding: 7px 20px;
    border-radius: var(--radius-full);
    font-size: 0.84rem;
    font-weight: 800;
    color: var(--brand-gold-light);
    margin-bottom: 24px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.18);
}

.hero-logo-emblem {
    width: 145px;
    height: 145px;
    border-radius: 50%;
    margin: 0 auto 24px;
    display: block;
    border: 3px solid var(--brand-gold);
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.45);
    animation: floatBadge 4.5s ease-in-out infinite;
}

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

.hero-headline {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.18;
    margin-bottom: 18px;
    letter-spacing: -0.8px;
}

.gold-gradient-text {
    background: var(--brand-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-intro {
    font-size: 1.22rem;
    color: #e2e8f0;
    max-width: 860px;
    margin: 0 auto 12px;
    font-weight: 700;
    line-height: 1.5;
}

.hero-subintro {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 780px;
    margin: 0 auto 34px;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.btn-primary-gold {
    background: var(--brand-gold-gradient);
    color: #050814;
    font-weight: 900;
    font-size: 1.02rem;
    padding: 15px 32px;
    border-radius: var(--radius-md);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 30px var(--brand-gold-glow);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(212, 175, 55, 0.65);
}

.btn-secondary-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-card);
    color: #fff;
    font-weight: 800;
    font-size: 1.02rem;
    padding: 15px 28px;
    border-radius: var(--radius-md);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary-glass:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* 🎯 3 VISITOR COMMAND CENTER PATHWAYS */
.command-pathways-wrap {
    margin-top: 10px;
    margin-bottom: 25px;
}

.pathways-header {
    font-size: 0.85rem;
    color: var(--brand-gold-light);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.pathway-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    text-align: left;
}

.pathway-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pathway-card.active, .pathway-card:hover {
    border-color: var(--border-gold-glow);
    background: var(--bg-surface-elevated);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold), var(--shadow-md);
}

.pathway-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--brand-gold-gradient);
    opacity: 0;
    transition: opacity 0.3s;
}

.pathway-card.active::before, .pathway-card:hover::before {
    opacity: 1;
}

.pathway-icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
    display: inline-block;
}

.pathway-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}

.pathway-desc {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.45;
    margin-bottom: 12px;
}

.pathway-action-link {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--brand-gold-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* 📊 STATS STRIP */
.stats-strip-container {
    padding: 20px 0 60px;
}

.stats-strip-box {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    box-shadow: var(--shadow-lg), var(--shadow-gold);
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: var(--border-subtle);
}

.stat-number {
    font-size: 2.3rem;
    font-weight: 900;
    color: var(--brand-gold-light);
    line-height: 1.1;
    margin-bottom: 4px;
}

.stat-title {
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 🛠️ WHAT I DO - SERVICES GRID */
.section-wrap {
    padding: 70px 0;
}

.section-head {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    display: inline-block;
    color: var(--brand-gold-light);
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 8px;
}

.section-h2 {
    font-size: 2.3rem;
    font-weight: 900;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-p {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-gold);
    background: var(--bg-surface-elevated);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(212, 175, 55, 0.15);
}

.service-icon-wrap {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin-bottom: 20px;
}

.service-icon-wrap.gold { background: rgba(212, 175, 55, 0.12); color: var(--brand-gold-light); border: 1px solid var(--border-gold); }
.service-icon-wrap.blue { background: rgba(59, 130, 246, 0.12); color: #60a5fa; border: 1px solid rgba(59, 130, 246, 0.3); }
.service-icon-wrap.green { background: rgba(16, 185, 129, 0.12); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.3); }
.service-icon-wrap.purple { background: rgba(139, 92, 246, 0.12); color: #a78bfa; border: 1px solid rgba(139, 92, 246, 0.3); }
.service-icon-wrap.orange { background: rgba(249, 115, 22, 0.12); color: #fb923c; border: 1px solid rgba(249, 115, 22, 0.3); }
.service-icon-wrap.cyan { background: rgba(6, 182, 212, 0.12); color: #22d3ee; border: 1px solid rgba(6, 182, 212, 0.3); }

.service-title {
    font-size: 1.22rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
}

.service-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 18px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
}

.service-tag-pill {
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-subtle);
}

/* 🏢 SOLUTIONS BY BUSINESS (KILLER FEATURE) */
.solutions-tab-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 0 auto 40px;
    max-width: 1100px;
}

.sol-tab-btn {
    background: linear-gradient(135deg, rgba(16, 22, 42, 0.8) 0%, rgba(10, 14, 28, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    padding: 11px 22px;
    border-radius: 999px;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
}

.sol-tab-btn:hover {
    color: #ffffff;
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.18);
}

.sol-tab-btn.active {
    background: var(--brand-gold-gradient);
    color: #050814 !important;
    border-color: transparent;
    box-shadow: 0 6px 22px var(--brand-gold-glow);
    transform: translateY(-2px);
    font-weight: 900;
}

.sol-tab-btn.active i {
    color: #050814 !important;
}

.sol-display-card {
    background: linear-gradient(160deg, rgba(14, 20, 42, 0.92) 0%, rgba(8, 12, 26, 0.98) 100%);
    border: 1px solid var(--border-gold);
    border-radius: 24px;
    padding: 44px 40px;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.65), 0 0 35px rgba(212, 175, 55, 0.15);
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 44px;
    align-items: stretch;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.sol-stack-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.12);
    color: var(--brand-gold-light);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 14px;
}

.sol-h3 {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 900;
    margin-bottom: 18px;
    line-height: 1.28;
    color: #ffffff;
}

.sol-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
}

.sol-features-list li {
    font-size: 0.92rem;
    color: #cbd5e1;
    margin-bottom: 13px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.55;
}

.sol-features-list li i {
    color: var(--brand-gold);
    margin-top: 4px;
    font-size: 1rem;
    flex-shrink: 0;
}

.sol-display-card .btn-primary-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    font-size: 0.92rem;
    border-radius: 999px;
    margin-top: 6px;
}

.sol-blueprint-box {
    background: rgba(6, 9, 18, 0.85);
    border: 1px solid rgba(56, 189, 248, 0.25);
    border-radius: 18px;
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.4);
}

.sol-blueprint-title {
    font-family: var(--font-heading);
    font-size: 0.84rem;
    font-weight: 800;
    color: #38bdf8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sol-step-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.86rem;
}

.sol-step-item:last-child {
    border-bottom: none;
}

.sol-step-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.18);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--brand-gold-light);
    font-weight: 900;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* 💻 TECH STACK MATRIX */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.tech-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 14px;
}

.tech-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-3px);
    background: var(--bg-surface-elevated);
}

.tech-icon {
    font-size: 2rem;
    width: 44px;
    text-align: center;
}

.tech-name {
    font-weight: 800;
    font-size: 0.95rem;
    color: #fff;
}

.tech-level {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* 🌐 PRODUCTS & LIVE ECOSYSTEM */
.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.eco-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.eco-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--brand-gold-gradient);
    opacity: 0;
    transition: opacity 0.3s;
}

.eco-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-lg), var(--shadow-gold);
}

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

.eco-badge {
    align-self: flex-start;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.eco-badge.live { background: rgba(16, 185, 129, 0.2); color: var(--brand-green); border: 1px solid rgba(16, 185, 129, 0.4); }
.eco-badge.saas { background: rgba(212, 175, 55, 0.2); color: var(--brand-gold-light); border: 1px solid var(--border-gold); }
.eco-badge.soon { background: rgba(148, 163, 184, 0.2); color: var(--text-secondary); border: 1px solid var(--border-subtle); }

.eco-title {
    font-size: 1.35rem;
    font-weight: 900;
    margin-bottom: 8px;
    color: #fff;
}

.eco-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 22px;
}

.eco-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    color: var(--brand-gold-light);
    font-weight: 800;
    font-size: 0.88rem;
    text-decoration: none;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: all 0.25s;
}

.eco-btn:hover {
    background: var(--brand-gold-gradient);
    color: #050814;
    border-color: transparent;
}

/* 🚀 AGENCY PARTNER PROGRAM */
.agency-partner-banner {
    background: linear-gradient(135deg, rgba(25, 34, 56, 0.95) 0%, rgba(10, 15, 26, 0.95) 100%);
    border: 2px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    box-shadow: var(--shadow-lg), var(--shadow-gold);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.partner-tag {
    display: inline-block;
    background: var(--brand-gold-gradient);
    color: #050814;
    font-size: 0.78rem;
    font-weight: 900;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.partner-h2 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 14px;
    line-height: 1.2;
}

.partner-p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.partner-perks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}

.partner-perk-item {
    font-size: 0.84rem;
    color: #e2e8f0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.partner-perk-item i {
    color: var(--brand-gold);
}

.partner-box-card {
    background: rgba(8, 12, 22, 0.85);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
}

/* 📑 CASE STUDIES */
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.case-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.3s ease;
}

.case-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.case-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.case-category {
    font-size: 0.74rem;
    font-weight: 800;
    color: var(--brand-cyan);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-title {
    font-size: 1.3rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 18px;
}

.case-metric-box {
    margin-bottom: 18px;
}

.case-field {
    margin-bottom: 12px;
}

.case-field-label {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.case-field-label.red { color: #f87171; }
.case-field-label.green { color: #34d399; }
.case-field-label.blue { color: #60a5fa; }
.case-field-label.gold { color: var(--brand-gold-light); }

.case-field-content {
    font-size: 0.86rem;
    color: var(--text-secondary);
    line-height: 1.45;
}

/* 👨‍💻 ABOUT MUKUL */
.about-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 45px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 45px;
    align-items: center;
}

.about-avatar-card {
    text-align: center;
}

.about-avatar-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 3px solid var(--brand-gold);
    box-shadow: var(--shadow-gold), var(--shadow-lg);
    margin-bottom: 18px;
}

.about-badges {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.about-badge-item {
    background: rgba(212, 175, 55, 0.12);
    color: var(--brand-gold-light);
    border: 1px solid var(--border-gold);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 800;
}

.about-bio-h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 14px;
}

.about-bio-p {
    font-size: 0.94rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 16px;
}

/* 📝 INSIGHTS / BLOG HUB */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.insight-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 26px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.insight-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.insight-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 12px;
}

.insight-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.35;
}

.insight-excerpt {
    font-size: 0.84rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 18px;
}

.insight-link {
    color: var(--brand-gold-light);
    font-weight: 800;
    font-size: 0.82rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ⚡ INTERACTIVE REQUIREMENT & LEAD ENGINE */
.req-engine-wrap {
    background: linear-gradient(135deg, rgba(16, 22, 38, 0.95) 0%, rgba(8, 12, 22, 0.95) 100%);
    border: 2px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 45px;
    box-shadow: var(--shadow-lg), var(--shadow-gold);
}

.wizard-steps-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 35px;
    position: relative;
}

.step-indicator-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--text-muted);
}

.step-indicator-item.active {
    color: var(--brand-gold-light);
}

.step-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.76rem;
}

.step-indicator-item.active .step-circle {
    background: var(--brand-gold-gradient);
    color: #000;
    border-color: transparent;
    box-shadow: 0 0 14px var(--brand-gold-glow);
}

.req-options-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 28px;
}

.req-option-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 18px 14px;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
}

.req-option-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(212, 175, 55, 0.06);
}

.req-option-card.selected {
    border-color: var(--brand-gold);
    background: rgba(212, 175, 55, 0.15);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
}

.req-option-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--brand-gold-light);
}

.req-option-label {
    font-size: 0.85rem;
    font-weight: 800;
    color: #fff;
}

.req-summary-box {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 24px;
}

/* 🛡️ FOOTER */
.site-footer {
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    padding: 70px 0 35px;
    background: linear-gradient(180deg, rgba(6, 9, 18, 0.96) 0%, rgba(3, 5, 10, 0.99) 100%);
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1.1fr 1.1fr 1.1fr;
    gap: 36px;
    margin-bottom: 50px;
}

.footer-brand-col {
    padding-right: 15px;
}

.footer-brand-title {
    font-family: var(--font-heading);
    font-size: 1.22rem;
    font-weight: 900;
    color: var(--brand-gold-light);
    letter-spacing: 0.5px;
}

.footer-brand-p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 16px;
}

.footer-geo-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-geo-badge {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    color: #cbd5e1;
    font-weight: 600;
}

.footer-links-col h4 {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-col ul li {
    margin-bottom: 11px;
}

.footer-links-col ul li a {
    font-size: 0.84rem;
    color: #94a3b8;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: all 0.22s ease;
}

.footer-links-col ul li a i.fa-chevron-right {
    font-size: 0.65rem;
    color: rgba(212, 175, 55, 0.6);
    transition: transform 0.2s ease;
}

.footer-links-col ul li a:hover {
    color: var(--brand-gold-light);
    transform: translateX(4px);
}

.footer-links-col ul li a:hover i.fa-chevron-right {
    transform: translateX(2px);
    color: var(--brand-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-bottom-left {
    font-size: 0.82rem;
    color: #94a3b8;
}

.footer-bottom-left strong {
    color: var(--brand-gold-light);
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-legal-links a {
    font-size: 0.8rem;
    color: #94a3b8;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.22s ease;
}

.footer-legal-links a:hover {
    color: var(--brand-gold-light);
    transform: translateY(-1px);
}

/* 📱 RESPONSIVENESS */
@media (max-width: 1024px) {
    .pathway-cards-grid, .services-grid, .ecosystem-grid, .insights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .sol-display-card, .agency-partner-banner, .about-wrap {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu, .nav-cta-group .btn-whatsapp-nav {
        display: none;
    }
    .ticker-right-stats {
        display: none !important;
    }
    .top-ticker .ticker-left {
        width: 100%;
        justify-content: center;
        font-size: 0.76rem;
    }
    .top-ticker {
        padding: 7px 12px;
    }
    .hero-logo-emblem {
        width: 110px;
        height: 110px;
        margin-bottom: 18px;
    }
    .hero-headline {
        font-size: 2.1rem;
    }
    .hero-intro {
        font-size: 1.05rem;
    }
    .brand-logo-img {
        width: 44px;
        height: 44px;
    }
    .brand-name {
        font-size: 1rem;
    }
    .pathway-cards-grid, .services-grid, .ecosystem-grid, .case-studies-grid, .insights-grid, .req-options-grid {
        grid-template-columns: 1fr;
    }
    .stats-strip-box {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .stat-item:nth-child(2)::after {
        display: none;
    }
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .req-engine-wrap, .agency-partner-banner, .about-wrap, .sol-display-card {
        padding: 24px 18px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* ================================================================
   🛡️ TRUST GUARANTEES & CREDIBILITY STRIP
   ================================================================ */
.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.guarantee-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.guarantee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--brand-gold-gradient);
    opacity: 0.7;
}

.guarantee-card:hover {
    transform: translateY(-4px);
    border-color: var(--brand-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px var(--brand-gold-glow);
}

.guarantee-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.3rem;
    color: var(--brand-gold-light);
}

.guarantee-title {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.guarantee-desc {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ================================================================
   🧮 INTERACTIVE PROJECT SCOPE & SPRINT ESTIMATOR
   ================================================================ */
.estimator-box {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-lg);
}

.estimator-type-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 24px;
}

.est-type-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 16px;
    cursor: pointer;
    text-align: center;
    transition: all 0.25s;
}

.est-type-card:hover {
    border-color: var(--brand-gold);
    background: rgba(212, 175, 55, 0.08);
}

.est-type-card.active {
    border-color: var(--brand-gold);
    background: rgba(212, 175, 55, 0.14);
    box-shadow: 0 0 20px var(--brand-gold-glow);
}

.est-type-icon {
    font-size: 1.5rem;
    color: var(--brand-gold-light);
    margin-bottom: 8px;
}

.est-type-title {
    font-size: 0.88rem;
    font-weight: 800;
    color: #fff;
}

.est-result-panel {
    background: rgba(8, 12, 22, 0.8);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
}

.est-milestone-list {
    list-style: none;
    margin-top: 12px;
}

.est-milestone-list li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.est-milestone-list li i {
    color: var(--brand-green);
    font-size: 0.9rem;
}

/* ================================================================
   ❓ INTERACTIVE FAQ ACCORDION
   ================================================================ */
.faq-wrap {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.active {
    border-color: var(--brand-gold);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(212, 175, 55, 0.1);
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    user-select: none;
}

.faq-question:hover {
    color: var(--brand-gold-light);
}

.faq-icon {
    font-size: 1rem;
    color: var(--brand-gold-light);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.65;
    background: rgba(12, 16, 28, 0.5);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 22px 24px;
}

/* ================================================================
   💬 GLASSMORPHISM LEAD MODAL & POPUP
   ================================================================ */
.lead-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(4, 6, 12, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lead-modal-overlay.active {
    display: flex;
    animation: fadeInModal 0.25s ease-out;
}

@keyframes fadeInModal {
    from { opacity: 0; transform: scale(0.96); }
    to { opacity: 1; transform: scale(1); }
}

.lead-modal-box {
    background: #0c111e;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.9), 0 0 35px rgba(212, 175, 55, 0.25);
    max-width: 580px;
    width: 100%;
    padding: 32px 28px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.lead-modal-close {
    position: absolute;
    top: 18px;
    right: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: var(--text-secondary);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.lead-modal-close:hover {
    background: rgba(239, 68, 68, 0.3);
    color: #fff;
}

.form-group-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.form-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input, .form-select, .form-textarea, select {
    background: #0c111e !important;
    background-color: #0c111e !important;
    border: 1px solid var(--border-card) !important;
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    color: #f8fafc !important;
    font-size: 0.92rem;
    outline: none;
    transition: all 0.2s;
    width: 100%;
}

.form-select, select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #0c111e !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 14px center !important;
    background-size: 16px !important;
    padding-right: 40px !important;
}

.form-input:focus, .form-select:focus, .form-textarea:focus, select:focus {
    border-color: var(--brand-gold) !important;
    background-color: #0e1526 !important;
    box-shadow: 0 0 14px var(--brand-gold-glow) !important;
}

.form-select option, select option {
    background: #0c111e !important;
    background-color: #0c111e !important;
    color: #f8fafc !important;
    padding: 12px 14px !important;
    font-size: 0.92rem !important;
}

.form-select option:hover, .form-select option:focus, .form-select option:checked,
select option:hover, select option:focus, select option:checked {
    background: #1e293b !important;
    background-color: #1e293b !important;
    color: var(--brand-gold-light) !important;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.brand-wrapper.brand-logo-only {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.brand-wrapper.brand-logo-only .brand-logo-img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid var(--brand-gold);
    box-shadow: 0 0 18px var(--brand-gold-glow);
    transition: transform 0.3s ease;
    object-fit: cover;
}

.brand-wrapper.brand-logo-only:hover .brand-logo-img {
    transform: scale(1.06) rotate(6deg);
}

/* ================================================================
   📱 STICKY MOBILE FLOATING ACTION BAR
   ================================================================ */
.mobile-floating-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(8, 12, 22, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--border-gold);
    padding: 10px 14px;
    z-index: 1500;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.7);
}

.mobile-floating-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 8px;
    align-items: center;
}

.mob-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 8px;
    border-radius: var(--radius-md);
    font-size: 0.78rem;
    font-weight: 800;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
}

.mob-btn-wa {
    background: #25d366;
    color: #042410;
}

.mob-btn-quote {
    background: var(--brand-gold-gradient);
    color: #000;
}

.mob-btn-lead {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid var(--border-card);
}

@media (max-width: 1180px) {
    .nav-menu {
        display: none !important;
    }
    .nav-pdf-btn {
        display: none !important;
    }
    .nav-hamburger-btn {
        display: flex !important;
    }
}

@media (max-width: 768px) {
    .mobile-floating-bar {
        display: block;
    }
    body {
        padding-bottom: 68px;
    }
    .nav-menu, .nav-cta-group .btn-whatsapp-nav, .nav-pdf-btn {
        display: none !important;
    }
    .nav-hamburger-btn {
        display: flex !important;
    }
    .brand-wrapper.brand-logo-only .brand-logo-img {
        width: 44px;
        height: 44px;
    }
    .guarantees-grid, .estimator-type-grid, .est-result-panel, .form-row-2 {
        grid-template-columns: 1fr;
    }
    .terminal-window {
        margin: 0 10px;
    }
    .terminal-body {
        padding: 14px;
        font-size: 0.78rem;
        min-height: 220px;
    }
    .floating-assist-group {
        bottom: 80px !important;
        right: 14px !important;
        gap: 10px !important;
    }
    .ai-chatbot-window {
        bottom: 74px !important;
        right: 12px !important;
        left: 12px !important;
        width: auto !important;
        height: 490px !important;
        max-height: 74vh !important;
    }
}

/* ================================================================
   🟢 STICKY FLOATING WHATSAPP & GOOGLE AI CHATBOT SYSTEM
   ================================================================ */
.floating-assist-group {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 1800;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
}

/* Sticky WhatsApp Button */
.sticky-wa-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45), 0 0 16px rgba(37, 211, 102, 0.3);
    text-decoration: none;
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-wa-btn:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.65), 0 0 25px rgba(37, 211, 102, 0.5);
    color: #fff;
}

.sticky-wa-ping {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.7);
    animation: waPing 2.2s cubic-bezier(0, 0, 0.2, 1) infinite;
    pointer-events: none;
}

@keyframes waPing {
    0% { transform: scale(1); opacity: 0.8; }
    75%, 100% { transform: scale(1.4); opacity: 0; }
}

.sticky-wa-tooltip {
    position: absolute;
    right: 64px;
    top: 50%;
    transform: translateY(-50%);
    background: #080d1a;
    border: 1px solid rgba(37, 211, 102, 0.5);
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.76rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.sticky-wa-btn:hover .sticky-wa-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(-4px);
}

/* Google AI Chatbot Toggle Button */
.ai-chatbot-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(10, 16, 36, 0.96) 0%, rgba(24, 34, 68, 0.96) 100%);
    border: 1.5px solid var(--border-gold);
    color: #fff;
    cursor: pointer;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ai-chatbot-toggle-btn:hover {
    transform: translateY(-3px) scale(1.04);
    border-color: var(--brand-gold-light);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.75), 0 0 28px rgba(212, 175, 55, 0.5);
}

.ai-sparkle-icon {
    font-size: 1.15rem;
    animation: sparkleSpin 4s ease-in-out infinite;
}

@keyframes sparkleSpin {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(15deg) scale(1.15); }
}

.ai-btn-text {
    font-family: var(--font-heading);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #ffffff;
    white-space: nowrap;
}

.ai-online-badge {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px #22c55e;
    display: inline-block;
}

.ai-pulse-ring {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 999px;
    border: 1.5px solid rgba(212, 175, 55, 0.6);
    animation: aiPulse 2.5s cubic-bezier(0.25, 1, 0.5, 1) infinite;
    pointer-events: none;
}

@keyframes aiPulse {
    0% { transform: scale(0.98); opacity: 0.8; }
    100% { transform: scale(1.12, 1.3); opacity: 0; }
}

/* 🤖 GOOGLE AI CHATBOT WINDOW */
.ai-chatbot-window {
    position: fixed;
    bottom: 96px;
    right: 28px;
    width: 390px;
    max-width: calc(100vw - 32px);
    height: 540px;
    max-height: calc(100vh - 120px);
    background: #080d1a;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.95), 0 0 30px rgba(155, 114, 207, 0.25);
    z-index: 1900;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.ai-chatbot-window.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}

/* AI Chat Header */
.ai-chat-header {
    background: linear-gradient(135deg, #0f1629 0%, #151b2e 100%);
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.ai-chat-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #4285f4, #9b72cf, #d4af37);
}

.ai-chat-header-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ai-avatar-box {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4285f4, #9b72cf);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    position: relative;
}

.ai-online-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background: var(--brand-green);
    border: 2px solid #080d1a;
    border-radius: 50%;
}

.ai-chat-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.92rem;
    font-weight: 800;
    color: #fff;
}

.ai-model-tag {
    background: rgba(66, 133, 244, 0.18);
    border: 1px solid rgba(66, 133, 244, 0.4);
    color: #93c5fd;
    font-size: 0.62rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: var(--radius-full);
}

.ai-chat-subtitle {
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-top: 1px;
}

.ai-header-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ai-header-icon-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.ai-header-icon-btn:hover {
    background: rgba(239, 68, 68, 0.25);
    color: #fff;
}

/* AI Quick Chips */
.ai-quick-chips {
    background: rgba(13, 19, 36, 0.8);
    padding: 8px 12px;
    display: flex;
    gap: 6px;
    overflow-x: auto;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    scrollbar-width: none;
}

.ai-quick-chips::-webkit-scrollbar {
    display: none;
}

.ai-chip-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-card);
    color: #e2e8f0;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: var(--radius-full);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s;
    flex-shrink: 0;
}

.ai-chip-btn:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--brand-gold);
    color: var(--brand-gold-light);
    transform: translateY(-1px);
}

/* AI Chat Body */
.ai-chat-body {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 0.86rem;
    line-height: 1.55;
    background: radial-gradient(circle at 50% 0%, rgba(66, 133, 244, 0.04) 0%, transparent 60%);
}

.ai-msg {
    display: flex;
    gap: 8px;
    max-width: 90%;
    animation: msgFadeIn 0.25s ease-out;
}

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

.ai-msg-bot {
    align-self: flex-start;
}

.ai-msg-user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.ai-msg-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4285f4, #9b72cf);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.ai-msg-user .ai-msg-avatar {
    background: var(--brand-gold-gradient);
    color: #000;
}

.ai-msg-bubble {
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 0.85rem;
}

.ai-msg-bot .ai-msg-bubble {
    background: rgba(18, 25, 45, 0.9);
    border: 1px solid var(--border-card);
    color: #f1f5f9;
    border-top-left-radius: 4px;
}

.ai-msg-user .ai-msg-bubble {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(212, 175, 55, 0.1));
    border: 1px solid var(--brand-gold);
    color: #fff;
    border-top-right-radius: 4px;
}

/* AI Typing Indicator */
.ai-typing-indicator {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
}

.ai-typing-dot {
    width: 6px;
    height: 6px;
    background: var(--brand-cyan);
    border-radius: 50%;
    animation: typingBounce 1.4s infinite ease-in-out;
}

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

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

/* AI Input Wrap */
.ai-chat-input-wrap {
    padding: 12px 14px;
    background: #0a0f20;
    border-top: 1px solid var(--border-subtle);
}

.ai-chat-form {
    display: flex;
    gap: 8px;
}

.ai-chat-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    color: #fff;
    font-size: 0.86rem;
    outline: none;
    transition: all 0.2s;
}

.ai-chat-input:focus {
    border-color: var(--brand-gold);
    background: rgba(212, 175, 55, 0.05);
    box-shadow: 0 0 10px var(--brand-gold-glow);
}

.ai-chat-send-btn {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: var(--brand-gold-gradient);
    border: none;
    color: #000;
    cursor: pointer;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.ai-chat-send-btn:hover {
    transform: scale(1.06);
}

.ai-chat-footer-note {
    font-size: 0.68rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 6px;
}

/* ================================================================
   🔍 MCA REACH EXPLORER WIDGET
   ================================================================ */
.mca-reach-preview-box {
    background: rgba(12, 18, 34, 0.85);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    margin-top: 36px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.12);
}

.mca-reach-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.mca-state-picker-wrap {
    min-width: 280px;
}

.mca-state-select {
    font-size: 0.88rem !important;
    padding: 10px 14px !important;
    border-color: var(--border-gold) !important;
}

.mca-reach-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.mca-metric-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 18px 14px;
    text-align: center;
    transition: all 0.25s ease;
}

.mca-metric-card:hover {
    border-color: var(--brand-gold);
    background: rgba(212, 175, 55, 0.06);
    transform: translateY(-2px);
}

.mca-metric-num {
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--brand-gold-light);
    margin-bottom: 4px;
}

.mca-metric-label {
    font-size: 0.76rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* ================================================================
   📊 BEFORE VS AFTER BENCHMARK COMPARISON
   ================================================================ */
.benchmark-widget-box {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    margin-top: 36px;
    box-shadow: var(--shadow-lg);
}

.benchmark-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 26px auto;
}

.benchmark-comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.benchmark-col {
    border-radius: var(--radius-md);
    padding: 22px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-card);
}

.benchmark-col.legacy {
    border-color: rgba(239, 68, 68, 0.3);
    background: rgba(239, 68, 68, 0.03);
}

.benchmark-col.optimized {
    border-color: rgba(16, 185, 129, 0.4);
    background: rgba(16, 185, 129, 0.04);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.08);
}

.benchmark-col-title {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.benchmark-col.legacy .benchmark-col-title { color: #f87171; }
.benchmark-col.optimized .benchmark-col-title { color: #34d399; }

.benchmark-metrics-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benchmark-metrics-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.86rem;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.benchmark-metrics-list li span { color: var(--text-secondary); }

/* ================================================================
   📅 DISCOVERY CALL MODAL TIME SLOTS
   ================================================================ */
.discovery-slots-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 4px;
}

.disc-slot-radio {
    cursor: pointer;
    position: relative;
}

.disc-slot-radio input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.slot-badge {
    display: block;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-sm);
    padding: 10px;
    text-align: center;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.disc-slot-radio input:checked + .slot-badge {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--brand-gold);
    color: var(--brand-gold-light);
    box-shadow: 0 0 10px var(--brand-gold-glow);
}

/* ================================================================
   🔔 REAL-TIME LIVE ACTIVITY & SOCIAL PROOF TOAST
   ================================================================ */
.live-social-toast-wrap {
    position: fixed;
    bottom: 26px;
    left: 26px;
    z-index: 1700;
    pointer-events: auto;
}

.live-social-toast {
    background: rgba(8, 12, 22, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 12px 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 380px;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.live-social-toast.active {
    transform: translateY(0);
    opacity: 1;
}

.toast-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--brand-gold-gradient);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
}

.toast-time {
    font-size: 0.68rem;
    color: var(--brand-green);
    margin-top: 2px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.toast-close-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.8rem;
    padding: 4px;
    transition: color 0.2s;
}

.toast-close-btn:hover { color: #fff; }

/* ================================================================
   🌟 AMBIENT CURSOR GLOW
   ================================================================ */
.ambient-cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, rgba(66, 133, 244, 0.02) 40%, transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 1;
    transition: opacity 0.5s ease;
}

@media (max-width: 768px) {
    .mca-reach-metrics-grid, .benchmark-comparison-grid, .discovery-slots-grid {
        grid-template-columns: 1fr;
    }
    .live-social-toast-wrap {
        left: 12px;
        right: 12px;
        bottom: 80px;
    }
    .live-social-toast {
        max-width: 100%;
    }
    .ambient-cursor-glow {
        display: none;
    }
}

/* ================================================================
   💻 4-PILLAR TECHNICAL & CREATIVE MASTERY GRID
   ================================================================ */
.skills-mastery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.skill-pillar-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.skill-pillar-card:hover {
    border-color: var(--brand-gold);
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(212, 175, 55, 0.15);
}

.skill-pillar-card.highlight-creative:hover {
    border-color: #ec4899;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(236, 72, 153, 0.2);
}

.skill-pillar-card.highlight-growth:hover {
    border-color: #10b981;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(16, 185, 129, 0.2);
}

.pillar-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.pillar-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    flex-shrink: 0;
}

.bg-blue-glow { background: linear-gradient(135deg, #1e3a8a, #3b82f6); box-shadow: 0 0 15px rgba(59, 130, 246, 0.3); }
.bg-purple-glow { background: linear-gradient(135deg, #701a75, #ec4899); box-shadow: 0 0 15px rgba(236, 72, 153, 0.3); }
.bg-cyan-glow { background: linear-gradient(135deg, #0e7490, #06b6d4); box-shadow: 0 0 15px rgba(6, 182, 212, 0.3); }
.bg-green-glow { background: linear-gradient(135deg, #065f46, #10b981); box-shadow: 0 0 15px rgba(16, 185, 129, 0.3); }

.pillar-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
}

.pillar-sub {
    font-size: 0.74rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.skill-bars-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
}

.skill-bar-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.skill-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.84rem;
    font-weight: 700;
    color: #e2e8f0;
}

.skill-track {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    overflow: hidden;
}

.skill-fill {
    height: 100%;
    border-radius: 999px;
    transition: width 1s ease-in-out;
}

.pillar-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.p-badge {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-card);
    color: var(--text-secondary);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s;
}

.p-badge:hover {
    background: rgba(212, 175, 55, 0.12);
    border-color: var(--brand-gold);
    color: var(--brand-gold-light);
}

/* ================================================================
   🗺️ 360° INDUSTRY GROWTH ROADMAP
   ================================================================ */
.industry-roadmap-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 28px;
}

.ind-tab-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-full);
    padding: 10px 18px;
    font-size: 0.84rem;
    font-weight: 800;
    color: var(--text-secondary);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
}

.ind-tab-btn:hover {
    border-color: var(--brand-gold);
    background: rgba(212, 175, 55, 0.08);
    color: #fff;
    transform: translateY(-2px);
}

.ind-tab-btn.active {
    background: var(--brand-gold-gradient);
    border-color: var(--brand-gold);
    color: #050814;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
}

.ind-tab-btn.active i {
    color: #050814 !important;
}

.industry-roadmap-content-box {
    background: #090e1c;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 34px 28px;
    box-shadow: var(--shadow-lg), 0 0 30px rgba(212, 175, 55, 0.1);
    animation: fadeInBox 0.3s ease-out;
}

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

.ind-roadmap-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 14px;
}

.ind-roadmap-title-h3 {
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
}

.ind-roadmap-sub {
    font-size: 0.84rem;
    color: var(--text-secondary);
    margin-top: 3px;
}

.ind-funnel-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-bottom: 28px;
}

.ind-step-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 20px 14px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.25s ease;
}

.ind-step-card:hover {
    border-color: var(--brand-gold);
    background: rgba(212, 175, 55, 0.05);
    transform: translateY(-3px);
}

.ind-step-num {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 0.72rem;
    font-weight: 900;
    color: var(--brand-gold);
    background: rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ind-step-icon {
    font-size: 1.7rem;
    margin-bottom: 12px;
}

.ind-step-title {
    font-size: 0.92rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.3;
}

.ind-step-desc {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.5;
    flex: 1;
}

.ind-step-badge {
    margin-top: 10px;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    display: inline-block;
    width: fit-content;
}

.ind-cta-banner {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(66, 133, 244, 0.08));
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

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

@media (max-width: 768px) {
    .skills-mastery-grid, .ind-funnel-grid {
        grid-template-columns: 1fr;
    }
}

/* 🎨 HOME CREATIVE SAMPLE THUMBNAILS STRIP */
.home-creative-sample-strip {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    margin: 14px 0 16px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sample-strip-title {
    font-size: 0.74rem;
    font-weight: 800;
    color: var(--brand-gold-light);
}

.sample-strip-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.mini-post-thumb {
    width: 100%;
    aspect-ratio: 16 / 10.8;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.2s ease;
}

.mini-post-thumb:hover {
    transform: scale(1.08);
    border-color: var(--brand-gold);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.8), 0 0 10px rgba(212, 175, 55, 0.3);
}

.sample-strip-link {
    font-size: 0.72rem;
    color: var(--brand-cyan);
    text-decoration: none;
    font-weight: 700;
    align-self: flex-end;
    transition: color 0.2s;
}

.sample-strip-link:hover {
    color: var(--brand-gold);
    text-decoration: underline;
}

/* ================================================================
   📄 PRINT / PDF CAPABILITY DECK MEDIA QUERY
   ================================================================ */
@media print {
    .top-ticker, .master-nav, .mobile-floating-bar, .floating-assist-group, .ai-chatbot-window, .live-social-toast-wrap, .ambient-cursor-glow, .terminal-input-row, .terminal-chips-bar, .nav-cta-group, .lead-modal-overlay {
        display: none !important;
    }
    body {
        background: #fff !important;
        color: #111 !important;
    }
    .hero-headline, .section-h2, .stat-number, .brand-name {
        color: #000 !important;
        -webkit-text-fill-color: #000 !important;
    }
    .service-card, .eco-card, .case-card, .guarantee-card {
        background: #f8fafc !important;
        border: 1px solid #cbd5e1 !important;
        color: #1e293b !important;
        break-inside: avoid;
    }
}


/* ================================================================
   🏠 HOME REDESIGN — NEW SECTIONS CSS
   ================================================================ */

/* HERO STATS ROW */
.hero-stats-row {
    display: flex; align-items: center; gap: 0;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 18px 24px;
    margin: 28px auto;
    max-width: 700px;
    flex-wrap: wrap;
    justify-content: center;
}
.hstat { text-align: center; padding: 0 20px; flex: 1; min-width: 100px; }
.hstat-num { display: block; font-size: 1.6rem; font-weight: 900; color: var(--brand-gold-light); line-height: 1; }
.hstat-lbl { display: block; font-size: 0.68rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.hstat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); flex-shrink: 0; }
@media (max-width: 640px) {
    .hstat-divider { display: none; }
    .hstat { min-width: 50%; padding: 8px; }
}
/* ================================================================
   🎯 VISITOR PATHWAY PERSONA CARDS (Aap Kaun Hain?)
   ================================================================ */
.pathway-container {
    max-width: 1200px;
    margin: 45px auto 0;
    padding: 0 16px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.pathway-header-row {
    margin-bottom: 24px;
}

.pathway-pill-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: var(--brand-gold-light);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 7px 22px;
    border-radius: 999px;
    box-shadow: 0 2px 14px rgba(212, 175, 55, 0.12);
}

.pathway-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: stretch;
}

.pathway-card {
    background: linear-gradient(160deg, rgba(14, 20, 38, 0.85) 0%, rgba(8, 12, 24, 0.94) 100%);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 20px;
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    text-align: left;
    position: relative;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.pathway-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(212, 175, 55, 0.18);
}

.pathway-card.active {
    border-color: var(--brand-gold);
    background: linear-gradient(160deg, rgba(22, 32, 60, 0.94) 0%, rgba(12, 18, 36, 0.98) 100%);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.65), 0 0 30px rgba(212, 175, 55, 0.25), inset 0 0 20px rgba(212, 175, 55, 0.06);
    transform: translateY(-4px);
}

.pathway-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.pathway-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    transition: transform 0.3s ease;
}

.pathway-card:hover .pathway-icon-box {
    transform: scale(1.08) rotate(3deg);
}

.pathway-icon-box.blue {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.2) 0%, rgba(59, 130, 246, 0.35) 100%);
    border: 1px solid rgba(56, 189, 248, 0.4);
    color: #38bdf8;
    box-shadow: 0 4px 15px rgba(56, 189, 248, 0.25);
}

.pathway-icon-box.gold {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(245, 158, 11, 0.35) 100%);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: #d4af37;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

.pathway-icon-box.green {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(16, 185, 129, 0.35) 100%);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #4ade80;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.25);
}

.pathway-badge {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 4px 12px;
    border-radius: 999px;
}

.pathway-badge.blue {
    background: rgba(56, 189, 248, 0.12);
    border: 1px solid rgba(56, 189, 248, 0.3);
    color: #38bdf8;
}

.pathway-badge.gold {
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--brand-gold-light);
}

.pathway-badge.green {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

.pathway-title {
    font-family: var(--font-heading);
    font-size: 1.18rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.pathway-desc {
    font-size: 0.86rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 18px;
    flex-grow: 1;
}

.pathway-action-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--brand-gold-light);
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    transition: all 0.25s ease;
}

.pathway-action-link i {
    transition: transform 0.25s ease;
}

.pathway-card:hover .pathway-action-link i {
    transform: translateX(4px);
}

@media (max-width: 900px) {
    .pathway-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

/* S2 — WHO WE ARE */
.who-we-are-grid {
    display: grid; grid-template-columns: 320px 1fr;
    gap: 48px; align-items: center;
}
@media (max-width: 900px) { .who-we-are-grid { grid-template-columns: 1fr; } }

.who-identity-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 22px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-gold);
}
.who-avatar-ring {
    position: relative; width: 110px; height: 110px;
    margin: 0 auto 20px;
}
.who-avatar-inner {
    width: 110px; height: 110px;
    background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.05));
    border: 2px solid var(--border-gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    animation: pulse-avatar 3s ease-in-out infinite;
}
@keyframes pulse-avatar {
    0%,100% { box-shadow: 0 0 0 0 rgba(212,175,55,0.2); }
    50% { box-shadow: 0 0 0 12px rgba(212,175,55,0); }
}
.who-avatar-badge {
    position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%);
    background: #10b981; color: #fff;
    font-size: 0.62rem; font-weight: 700; padding: 3px 10px;
    border-radius: 20px; white-space: nowrap;
}
.who-name { font-size: 1.2rem; font-weight: 900; color: #fff; margin-bottom: 4px; }
.who-role { font-size: 0.78rem; color: var(--brand-gold-light); margin-bottom: 10px; }
.who-location { font-size: 0.78rem; color: var(--text-secondary); margin-bottom: 16px; }
.who-social-row { display: flex; gap: 10px; justify-content: center; margin-bottom: 20px; }
.who-social-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 16px; border-radius: 8px;
    font-size: 0.8rem; font-weight: 700; text-decoration: none;
    transition: all 0.2s;
}
.who-social-btn.wa { background: rgba(37,211,102,0.15); color: #25d366; border: 1px solid rgba(37,211,102,0.3); }
.who-social-btn.wa:hover { background: #25d366; color: #fff; }
.who-social-btn.project { background: rgba(212,175,55,0.12); color: var(--brand-gold-light); border: 1px solid var(--border-gold); }
.who-social-btn.project:hover { background: var(--brand-gold); color: #000; }
.who-exp-row { display: flex; gap: 0; border-top: 1px solid var(--border-subtle); padding-top: 16px; }
.who-exp-item { flex: 1; text-align: center; padding: 0 8px; border-right: 1px solid var(--border-subtle); }
.who-exp-item:last-child { border-right: none; }
.who-exp-num { display: block; font-size: 1.3rem; font-weight: 900; color: var(--brand-gold-light); }
.who-exp-lbl { display: block; font-size: 0.6rem; color: var(--text-muted); text-transform: uppercase; margin-top: 2px; }

.who-story { }
.who-desc { font-size: 1rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 16px; }
.who-pillars {
    display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px;
}
.who-pillar {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px; padding: 8px 14px;
    font-size: 0.82rem; font-weight: 600; color: var(--text-primary);
    transition: all 0.2s;
}
.who-pillar:hover { background: rgba(212,175,55,0.08); border-color: var(--border-gold); }

/* S3 — SERVICES SPLIT */
.services-split-wrap {
    display: grid; grid-template-columns: 1fr auto 1fr; gap: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 24px;
    overflow: hidden;
}
@media (max-width: 900px) { .services-split-wrap { grid-template-columns: 1fr; } }

.split-column { padding: 36px 32px; }
.split-agency { background: rgba(236,72,153,0.03); border-right: 1px solid rgba(236,72,153,0.1); }
.split-software { background: rgba(96,165,250,0.03); }
@media (max-width: 900px) {
    .split-agency { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
}

.split-col-header { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.split-col-icon {
    width: 48px; height: 48px; flex-shrink: 0;
    border-radius: 12px; border: 1px solid;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
}
.split-col-label { font-size: 1rem; font-weight: 800; }
.split-col-sub { font-size: 0.72rem; color: var(--text-muted); margin-top: 2px; }

.split-services-list { display: flex; flex-direction: column; gap: 18px; }
.split-service-item {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 14px;
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.25s;
}
.split-service-item:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); transform: translateX(4px); }
.split-svc-icon {
    width: 38px; height: 38px; flex-shrink: 0;
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
}
.split-svc-name { font-size: 0.9rem; font-weight: 800; color: var(--text-primary); margin-bottom: 4px; }
.split-svc-desc { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }
.split-col-cta {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 12px; padding: 12px 20px;
    border: 1px solid; border-radius: 10px;
    font-size: 0.85rem; font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    background: rgba(255,255,255,0.03);
}
.split-col-cta:hover { background: rgba(255,255,255,0.08); transform: translateY(-2px); }

.split-divider {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 20px 0; gap: 8px;
}
.split-divider-line { flex: 1; width: 1px; background: rgba(255,255,255,0.1); }
.split-divider-badge {
    width: 38px; height: 38px;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.65rem; font-weight: 900; color: var(--text-muted);
    letter-spacing: 1px; flex-shrink: 0;
}
@media (max-width: 900px) {
    .split-divider { flex-direction: row; padding: 0; }
    .split-divider-line { flex: 1; height: 1px; width: auto; }
}

/* S4 — INDUSTRIES */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}
.ind-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 16px;
    padding: 20px 18px;
    transition: all 0.3s ease;
}
.ind-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}
.ind-icon {
    width: 46px; height: 46px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 12px;
}
.ind-name { font-size: 0.9rem; font-weight: 800; color: var(--text-primary); margin-bottom: 10px; }
.ind-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.ind-tags span {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px; padding: 3px 8px;
    font-size: 0.65rem; font-weight: 600; color: var(--text-muted);
}

/* S5 — CMS PLATFORM LOGOS */
.cms-platform-logos {
    display: flex; gap: 12px; margin: 16px 0;
    flex-wrap: wrap;
}
.cms-logo-card {
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px; padding: 14px 18px;
    flex: 1; min-width: 80px;
    transition: all 0.2s;
}
.cms-logo-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.2); }
.cms-logo-card span { font-size: 0.72rem; font-weight: 600; color: var(--text-secondary); }

/* S5 — PAYMENT GATEWAY LOGOS */
.payment-logos-grid {
    display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0;
}
.pay-logo-chip {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px; padding: 7px 12px;
    font-size: 0.78rem; font-weight: 700; color: var(--text-primary);
    transition: all 0.2s;
}
.pay-logo-chip:hover { background: rgba(245,158,11,0.1); border-color: rgba(245,158,11,0.3); }

/* section-center helper */
.section-center { text-align: center; }

/* ================================================================
   ⭐ S11.1 — CLIENT TESTIMONIALS STYLING
   ================================================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 36px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 18px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 5rem;
    font-family: var(--font-serif-italic);
    color: rgba(212, 175, 55, 0.08);
    line-height: 1;
    pointer-events: none;
}

.testimonial-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.testi-stars {
    display: flex;
    gap: 4px;
    color: #f59e0b;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.testi-text {
    font-size: 0.94rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 18px;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.95rem;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.testi-name {
    font-size: 0.92rem;
    font-weight: 800;
    color: #fff;
}

.testi-role {
    font-size: 0.74rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.testi-metric {
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 4px;
}

/* ================================================================
   💰 S11.2 — TRANSPARENT SPRINT INVESTMENT PACKAGES (PRICING)
   ================================================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 26px;
    margin-top: 36px;
    align-items: stretch;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 22px;
    padding: 34px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-card.featured {
    border-color: var(--brand-gold);
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.08) 0%, rgba(15, 21, 36, 0.92) 100%);
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.2);
    transform: scale(1.02);
}

@media (max-width: 900px) {
    .pricing-card.featured {
        transform: none;
    }
}

.pricing-card:hover {
    border-color: var(--brand-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.pricing-card.featured:hover {
    transform: translateY(-5px) scale(1.02);
}

.pricing-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-secondary);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
    align-self: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-badge.featured-badge {
    background: rgba(212, 175, 55, 0.2);
    color: var(--brand-gold-light);
    border-color: var(--border-gold);
}

.pricing-title {
    font-size: 1.3rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 8px;
}

.pricing-desc {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
    min-height: 40px;
}

.pricing-price {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}

.price-val {
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--brand-gold-light);
}

.price-cycle {
    font-size: 0.74rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.pricing-features li {
    font-size: 0.86rem;
    color: #cbd5e1;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.pricing-features li i {
    font-size: 0.9rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.pricing-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 14px 20px;
    font-size: 0.92rem;
    font-weight: 800;
}

/* ================================================================
   ✨ SCROLL REVEAL ANIMATIONS
   ================================================================ */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-on-scroll.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================================
   📱 MASTER MOBILE RESPONSIVENESS & FLUID TYPOGRAPHY OVERHAUL
   ================================================================ */
@media (max-width: 768px) {
    /* Fluid typography */
    .hero-headline {
        font-size: clamp(1.85rem, 6vw, 2.35rem) !important;
        line-height: 1.2 !important;
    }

    .section-h2 {
        font-size: clamp(1.35rem, 4.8vw, 1.85rem) !important;
        line-height: 1.25 !important;
    }

    .hero-intro {
        font-size: 0.98rem !important;
        line-height: 1.5 !important;
    }

    .hero-subintro {
        font-size: 0.88rem !important;
        line-height: 1.5 !important;
        margin-bottom: 24px !important;
    }

    /* Section padding */
    .section-wrap {
        padding: 44px 0 !important;
    }

    /* Hero actions */
    .hero-actions {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        max-width: 380px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 30px;
    }

    .hero-actions .btn-primary-gold,
    .hero-actions .btn-secondary-glass {
        width: 100%;
        min-height: 48px;
        justify-content: center;
        padding: 13px 20px;
        font-size: 0.92rem;
    }

    /* Stats row 2x2 grid */
    .hero-stats-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        padding: 16px;
        margin: 20px auto;
        max-width: 100%;
    }

    .hstat {
        padding: 6px 4px;
        min-width: unset;
    }

    .hstat-num {
        font-size: 1.35rem;
    }

    .hstat-lbl {
        font-size: 0.62rem;
    }

    .hstat-divider {
        display: none;
    }

    /* Industries grid 2-column mobile */
    .industries-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .ind-card {
        padding: 14px 12px !important;
        border-radius: 12px !important;
    }

    .ind-icon {
        width: 38px !important;
        height: 38px !important;
        font-size: 1.1rem !important;
        margin-bottom: 8px !important;
    }

    .ind-name {
        font-size: 0.8rem !important;
        margin-bottom: 6px !important;
        line-height: 1.3 !important;
    }

    .ind-tags {
        display: none !important; /* Hide tags on small cards for clean compact UI */
    }

    /* Services split container */
    .split-column {
        padding: 24px 18px !important;
    }

    .split-service-item {
        padding: 12px 10px !important;
        gap: 10px !important;
    }

    .split-svc-name {
        font-size: 0.85rem !important;
    }

    .split-svc-desc {
        font-size: 0.74rem !important;
    }

    /* Skills pillars */
    .skills-mastery-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .skill-pillar-card {
        padding: 20px 16px !important;
    }

    /* Testimonials & Pricing */
    .testimonials-grid,
    .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .testimonial-card,
    .pricing-card {
        padding: 24px 18px !important;
    }

    /* Modals */
    .lead-modal-box {
        padding: 24px 16px !important;
        width: 94% !important;
        max-height: 90vh !important;
        overflow-y: auto !important;
    }
}

/* ================================================================
   🎨 S5.1 — PORTFOLIO GALLERY & LIGHTBOX STYLING
   ================================================================ */
.portfolio-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

.port-tab-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-secondary);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.84rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.port-tab-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
}

.port-tab-btn.active {
    background: var(--brand-gold-gradient);
    color: #050814;
    border-color: var(--brand-gold);
    box-shadow: 0 4px 16px var(--brand-gold-glow);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.portfolio-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.portfolio-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold);
}

.port-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #0b0f19;
    overflow: hidden;
}

.port-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.portfolio-card:hover .port-img-wrap img {
    transform: scale(1.05);
}

.port-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 9, 18, 0.75);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 16px;
}

.portfolio-card:hover .port-overlay {
    opacity: 1;
}

.port-zoom-btn {
    background: var(--brand-gold-gradient);
    color: #050814;
    font-size: 0.8rem;
    font-weight: 900;
    padding: 10px 18px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.port-mockup-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.port-mockup-wrap.bg-dark-glow {
    background: linear-gradient(135deg, #0f172a 0%, #030712 100%);
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.port-mockup-wrap.bg-purple-glow {
    background: linear-gradient(135deg, #1e1136 0%, #06040d 100%);
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
}

.port-mockup-wrap.bg-green-glow {
    background: linear-gradient(135deg, #06241a 0%, #020b08 100%);
    border-bottom: 1px solid rgba(16, 185, 129, 0.2);
}

.mockup-header-dots {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    color: var(--text-muted);
}

.mockup-header-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.mockup-header-dots .dot.red { background: #ef4444; }
.mockup-header-dots .dot.yellow { background: #f59e0b; }
.mockup-header-dots .dot.green { background: #10b981; }

.mockup-title {
    margin-left: 6px;
    font-size: 0.68rem;
    color: #94a3b8;
}

.mockup-body-preview {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: auto 0;
}

.mockup-stat-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 12px;
    border-radius: 8px;
}

.mockup-stat-box .m-val {
    font-size: 1.15rem;
    font-weight: 900;
}

.mockup-stat-box .m-lbl {
    font-size: 0.68rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.mockup-chart-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.mockup-chart-bar span {
    display: block;
    height: 100%;
    border-radius: 10px;
}

.port-info {
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.port-cat-tag {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 6px;
    display: inline-block;
}

.port-cat-tag.social { color: #ec4899; }
.port-cat-tag.software { color: #60a5fa; }
.port-cat-tag.ads { color: #34d399; }

.port-title {
    font-size: 0.96rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.port-sub {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* 🔍 LIGHTBOX OVERLAY */
.port-lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(4, 7, 14, 0.92);
    backdrop-filter: blur(14px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.port-lightbox-overlay.active {
    display: flex;
    opacity: 1;
}

.port-lightbox-box {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-gold);
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 92vh;
    overflow-y: auto;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8), var(--shadow-gold);
    position: relative;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.port-lightbox-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s;
    z-index: 2;
}

.port-lightbox-close:hover {
    background: #ef4444;
    border-color: #ef4444;
}

.port-lightbox-media-wrap {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.port-lightbox-media-wrap img {
    width: 100%;
    max-height: 55vh;
    object-fit: contain;
    border-radius: 12px;
}

.port-lightbox-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.port-lightbox-sub {
    font-size: 0.86rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
}

/* ================================================================
   🧮 S12.1 — DYNAMIC ROI & LEAD GROWTH CALCULATOR
   ================================================================ */
.roi-calc-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 36px;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 24px;
    padding: 36px 32px;
}

@media (max-width: 900px) {
    .roi-calc-container {
        grid-template-columns: 1fr;
        padding: 24px 18px;
        gap: 24px;
    }
}

.roi-inputs-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.roi-label {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.roi-industry-pills {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

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

.roi-ind-pill {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.roi-ind-pill:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.roi-ind-pill.active {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--brand-gold);
    color: var(--brand-gold-light);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.roi-budget-badge {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: #34d399;
    font-size: 0.95rem;
    font-weight: 900;
    padding: 5px 14px;
    border-radius: 20px;
}

.roi-slider {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    accent-color: var(--brand-gold);
    cursor: pointer;
}

.roi-slider-ticks {
    display: flex;
    justify-content: space-between;
    font-size: 0.68rem;
    color: var(--text-muted);
    margin-top: 8px;
}

.roi-results-card {
    background: rgba(8, 12, 22, 0.85);
    border: 1px solid var(--border-gold);
    border-radius: 18px;
    padding: 28px 24px;
    box-shadow: var(--shadow-gold);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.roi-metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 22px 0;
}

@media (max-width: 500px) {
    .roi-metrics-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.roi-metric-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px 16px;
}

.roi-met-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    display: block;
    margin-bottom: 4px;
}

.roi-met-val {
    font-size: 1.4rem;
    font-weight: 900;
    display: block;
}

.roi-met-sub {
    font-size: 0.68rem;
    color: var(--text-secondary);
    display: block;
    margin-top: 4px;
}

/* ================================================================
   🎉 CONFETTI CELEBRATION MODAL (LEAD SUCCESS)
   ================================================================ */
.confetti-canvas-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 100000;
}

.lead-celebration-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: var(--bg-surface-elevated);
    border: 2px solid var(--brand-gold);
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.45);
    border-radius: 24px;
    padding: 36px 30px;
    text-align: center;
    z-index: 100001;
    max-width: 480px;
    width: 90%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.lead-celebration-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.celebration-icon-ring {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.15);
    border: 2px solid #10b981;
    color: #10b981;
    font-size: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    animation: pulse-success 2s infinite;
}

@keyframes pulse-success {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    50% { box-shadow: 0 0 0 16px rgba(16, 185, 129, 0); }
}

/* ================================================================
   📱 LUXURY MOBILE FLOATING ACTION DOCK (iOS/GLASSMORPHISM)
   ================================================================ */
.mobile-floating-bar {
    display: none;
}

.ticker-text-short {
    display: none;
}

.btn-text-short {
    display: none;
}

@media (max-width: 768px) {
    /* Top Ticker Mobile Overflow Prevention */
    .top-ticker {
        padding: 6px 12px !important;
        overflow: hidden;
    }
    
    .top-ticker .ticker-left {
        font-size: 0.72rem !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .ticker-text-long {
        display: none !important;
    }

    .ticker-text-short {
        display: inline !important;
    }

    /* Luxury Dock */
    .mobile-floating-bar {
        display: block !important;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(6, 9, 18, 0.95);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-top: 1px solid var(--border-gold);
        box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.85), 0 0 20px rgba(212, 175, 55, 0.18);
        z-index: 1800;
        padding: 6px 12px;
        padding-bottom: calc(6px + env(safe-area-inset-bottom, 0px));
    }

    .mobile-bar-actions {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
        align-items: center;
        max-width: 440px;
        margin: 0 auto;
    }

    .mob-dock-btn {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        padding: 6px 4px;
        border-radius: 12px;
        text-decoration: none;
        color: #94a3b8;
        font-size: 0.65rem;
        font-weight: 700;
        transition: all 0.2s ease;
        background: transparent;
        border: none;
        cursor: pointer;
    }

    .mob-dock-btn i {
        font-size: 1.15rem;
    }

    .mob-dock-btn:active {
        transform: scale(0.92);
    }

    .mob-dock-wa {
        color: #25d366;
    }
    .mob-dock-wa:hover, .mob-dock-wa:active {
        background: rgba(37, 211, 102, 0.15);
        color: #4ade80;
    }

    .mob-dock-primary {
        background: var(--brand-gold-gradient);
        color: #050814 !important;
        box-shadow: 0 2px 12px var(--brand-gold-glow);
        font-weight: 900;
    }

    .mob-dock-primary i {
        color: #050814;
    }

    .mob-dock-calc {
        color: #38bdf8;
    }

    .mob-dock-ai {
        color: var(--brand-gold-light);
    }

    .mob-dock-ai i {
        color: var(--brand-gold);
    }

    /* Hide desktop floating buttons on mobile to avoid double-up and clutter */
    .floating-assist-group {
        display: none !important;
    }

    /* Give body breathing room above mobile dock */
    body {
        padding-bottom: 70px !important;
    }

    /* Ensure AI Chatbot window stays above dock on mobile */
    .ai-chatbot-window {
        bottom: 74px !important;
        right: 10px !important;
        left: 10px !important;
        width: auto !important;
        max-width: 100% !important;
        height: 480px !important;
    }
}

@media (max-width: 480px) {
    .nav-cta-group .nav-cta-btn {
        padding: 6px 12px !important;
        font-size: 0.76rem !important;
    }
    
    .btn-text-full {
        display: none !important;
    }
    
    .btn-text-short {
        display: inline !important;
    }
}

/* 📝 UNIVERSAL LUXURY FORM CONTROL STYLING */
.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 800;
    color: #cbd5e1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 9px;
}

.form-control {
    width: 100% !important;
    background: rgba(10, 14, 28, 0.85) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 12px !important;
    padding: 13px 18px !important;
    color: #ffffff !important;
    font-family: var(--font-body) !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    outline: none !important;
    transition: all 0.25s ease !important;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3) !important;
    box-sizing: border-box !important;
    display: block !important;
}

.form-control:focus {
    border-color: var(--brand-gold) !important;
    background: rgba(14, 20, 40, 0.95) !important;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2), inset 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.form-control::placeholder {
    color: #64748b !important;
    font-weight: 400 !important;
}

.loan-specialties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 8px;
}

.spec-checkbox {
    background: rgba(16, 22, 42, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.84rem;
    font-weight: 700;
    color: #e2e8f0;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    user-select: none;
}

.spec-checkbox:hover {
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(212, 175, 55, 0.06);
    transform: translateY(-1px);
}

.spec-checkbox input[type="checkbox"] {
    accent-color: var(--brand-gold);
    width: 17px;
    height: 17px;
    cursor: pointer;
    flex-shrink: 0;
}

.package-selection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 8px;
}

.package-radio {
    cursor: pointer;
    display: block;
}

.package-radio input {
    display: none;
}

.package-box-inner {
    background: rgba(16, 22, 42, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 16px;
    transition: all 0.25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
}

.package-box-inner:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.package-radio input:checked + .package-box-inner {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.04) 100%);
    border: 1.5px solid var(--brand-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
    transform: translateY(-2px);
}

.loan-submit-btn {
    width: 100%;
    padding: 16px 24px;
    font-size: 1.05rem;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    cursor: pointer;
    margin-top: 14px;
    box-shadow: 0 8px 25px var(--brand-gold-glow);
    border: none;
    transition: all 0.25s ease;
}

.loan-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px var(--brand-gold-glow);
}

@media (max-width: 768px) {
    .loan-form-container {
        padding: 32px 20px;
    }
    .form-row-2 {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .loan-specialties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .package-selection-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================================================
   🚨 AGENCY WHITE-LABEL & POD ARCHITECTURE STYLES
   ================================================================ */

/* Emergency SOS Top Strip */
.emergency-sos-strip {
    background: linear-gradient(90deg, #1f0707 0%, #300c0c 50%, #1f0707 100%);
    border-bottom: 1px solid rgba(239, 68, 68, 0.35);
    padding: 8px 0;
    font-size: 0.82rem;
    position: relative;
    z-index: 99;
}
.emergency-sos-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.emergency-sos-left {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fca5a5;
}
.badge-sos {
    background: #ef4444;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 900;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.sos-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ef4444;
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    animation: sosPulse 1.5s infinite;
}
@keyframes sosPulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}
.btn-sos-trigger {
    background: #ef4444;
    color: #fff;
    border: none;
    padding: 5px 14px;
    font-size: 0.76rem;
    font-weight: 800;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}
.btn-sos-trigger:hover {
    background: #dc2626;
    transform: scale(1.04);
    box-shadow: 0 0 16px rgba(239, 68, 68, 0.5);
}

/* Hero Pod Badges Grid */
.hero-pod-badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 28px 0;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}
.hero-pod-chip {
    background: rgba(13, 19, 34, 0.85);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}
.hero-pod-chip i {
    font-size: 1.35rem;
    flex-shrink: 0;
}
.hero-pod-chip strong {
    display: block;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 800;
    line-height: 1.2;
}
.hero-pod-chip span {
    display: block;
    color: var(--text-muted);
    font-size: 0.72rem;
    margin-top: 2px;
}
.hero-pod-chip:hover {
    border-color: var(--brand-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.15);
}

/* Hero Trust Bar */
.hero-trust-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 20px 0 28px;
}
.trust-pill {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.78rem;
    color: #cbd5e1;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

/* 8-Person Dedicated Pod Structure */
.pod-structure-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 36px;
}
.pod-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.pod-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: transparent;
    transition: background 0.3s ease;
}
.pod-card:hover {
    transform: translateY(-4px);
    border-color: var(--brand-gold);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.12);
}
.pod-card.lead-card {
    border-color: rgba(212, 175, 55, 0.4);
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.08) 0%, rgba(13, 19, 34, 0.95) 100%);
}
.pod-card.lead-card::before { background: var(--brand-gold); }

.pod-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}
.pod-avatar-box {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid var(--brand-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}
.pod-avatar-box.blue { background: rgba(56, 189, 248, 0.12); border-color: #38bdf8; color: #38bdf8; }
.pod-avatar-box.rose { background: rgba(244, 63, 94, 0.12); border-color: #f43f5e; color: #f43f5e; }
.pod-avatar-box.green { background: rgba(16, 185, 129, 0.12); border-color: #10b981; color: #10b981; }

.pod-badge {
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 999px;
    display: inline-block;
    margin-bottom: 4px;
}
.pod-badge.gold { background: rgba(212, 175, 55, 0.2); color: var(--brand-gold-light); }
.pod-badge.blue { background: rgba(56, 189, 248, 0.2); color: #38bdf8; }
.pod-badge.rose { background: rgba(244, 63, 94, 0.2); color: #f43f5e; }
.pod-badge.green { background: rgba(16, 185, 129, 0.2); color: #10b981; }

.pod-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}
.pod-sub {
    font-size: 0.74rem;
    color: var(--text-muted);
    margin-top: 3px;
}
.pod-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 16px;
}
.pod-skills-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 14px;
    border-top: 1px solid var(--border-subtle);
}
.pod-skill-tag {
    font-size: 0.78rem;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Integrations Bar */
.pod-integrations-bar {
    margin-top: 32px;
    background: rgba(13, 19, 34, 0.7);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.integration-label {
    font-size: 0.86rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}
.integration-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.int-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.76rem;
    font-weight: 700;
    color: #e2e8f0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Interactive Profit Calculator */
.calculator-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    margin-top: 32px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
}
.calculator-controls {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.calc-slider-group {
    background: rgba(13, 19, 34, 0.6);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 18px 20px;
}
.calc-slider-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.calc-label {
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}
.calc-value-display {
    font-size: 0.95rem;
    font-weight: 900;
    color: var(--brand-gold-light);
    background: rgba(212, 175, 55, 0.12);
    padding: 4px 10px;
    border-radius: 6px;
}
.calc-range {
    width: 100%;
    accent-color: var(--brand-gold);
    cursor: pointer;
}
.range-bounds {
    display: flex;
    justify-content: space-between;
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 6px;
}

.calculator-result-panel {
    background: linear-gradient(180deg, #0d1322 0%, #070a14 100%);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.calc-panel-badge {
    font-size: 0.7rem;
    font-weight: 900;
    color: var(--brand-cyan);
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-transform: uppercase;
}
.calc-cost-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-subtle);
}
.cost-title {
    font-size: 0.88rem;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
}
.cost-sub {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 2px;
}
.cost-amount {
    font-size: 1.05rem;
    font-weight: 900;
}
.inhouse-row .cost-amount { color: #f87171; text-decoration: line-through; }
.pod-row .cost-amount { color: var(--brand-green); font-size: 1.15rem; }

.calc-savings-highlight {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(16, 185, 129, 0.1) 100%);
    border: 1px solid var(--brand-gold);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    margin: 20px 0;
    text-align: center;
}
.savings-label {
    font-size: 0.72rem;
    font-weight: 900;
    color: var(--brand-gold-light);
    letter-spacing: 1px;
}
.savings-amount {
    font-size: 1.7rem;
    font-weight: 900;
    color: #fff;
    margin: 6px 0;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}
.savings-margin {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--brand-green);
}

/* B2B Scraping & Sales Pitch Simulator */
.simulator-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-top: 32px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}
.simulator-controls-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-subtle);
}
.sim-control-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.sim-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 6px;
}
.sim-select {
    background: #090e1a;
    border: 1px solid var(--border-card);
    color: #fff;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
}
.simulator-output-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
}
.sim-data-box, .sim-pitch-box {
    background: #070a14;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.sim-box-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.badge-pitch {
    background: rgba(212, 175, 55, 0.15);
    color: var(--brand-gold-light);
    border: 1px solid var(--brand-gold);
    font-size: 0.65rem;
    font-weight: 900;
    padding: 2px 8px;
    border-radius: 999px;
    margin-right: 6px;
}
.sim-telemetry-badge {
    font-size: 0.74rem;
    color: var(--brand-green);
    background: rgba(16, 185, 129, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
}
.btn-copy-pitch {
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border-subtle);
    color: #cbd5e1;
    font-size: 0.74rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    cursor: pointer;
}
.btn-copy-pitch:hover { color: #fff; border-color: var(--brand-gold); }

.sim-table-wrap {
    overflow-x: auto;
    max-height: 220px;
}
.sim-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.78rem;
    text-align: left;
}
.sim-table th {
    color: var(--text-muted);
    font-weight: 700;
    padding: 8px 10px;
    border-bottom: 1px solid var(--border-subtle);
}
.sim-table td {
    padding: 9px 10px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    color: #cbd5e1;
}
.sim-note {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.sim-pitch-content {
    background: rgba(13, 19, 34, 0.6);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 14px;
    font-size: 0.82rem;
    line-height: 1.6;
    color: #e2e8f0;
    max-height: 180px;
    overflow-y: auto;
    white-space: pre-line;
    margin-bottom: 14px;
}

/* NDA Banner Card */
.nda-banner-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(13, 19, 34, 0.95) 100%);
    border: 1.5px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.nda-banner-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border-subtle);
}
.nda-banner-left {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 650px;
}
.nda-seal-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid var(--brand-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--brand-gold);
    flex-shrink: 0;
}
.nda-banner-right {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.nda-guarantees-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 28px;
}
.nda-g-card {
    background: rgba(7, 10, 20, 0.6);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 18px 16px;
    text-align: left;
}
.nda-g-card i {
    font-size: 1.3rem;
    margin-bottom: 10px;
    display: block;
}
.nda-g-card h4 {
    font-size: 0.92rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 6px;
}
.nda-g-card p {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Portfolio Filter Tabs */
.portfolio-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 28px 0 36px;
}
.port-tab-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    color: #cbd5e1;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 9px 18px;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}
.port-tab-btn:hover, .port-tab-btn.active {
    background: rgba(212, 175, 55, 0.18);
    border-color: var(--brand-gold);
    color: #fff;
    transform: translateY(-1px);
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.port-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
}
.port-card:hover {
    border-color: var(--brand-gold);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
.port-card-inner {
    padding: 24px 20px;
}
.port-tag-pill {
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.8px;
    padding: 3px 8px;
    border-radius: 999px;
    display: inline-block;
    margin-bottom: 14px;
}
.port-tag-pill.rose { background: rgba(244, 63, 94, 0.15); color: #f43f5e; border: 1px solid rgba(244, 63, 94, 0.3); }
.port-tag-pill.cyan { background: rgba(56, 189, 248, 0.15); color: #38bdf8; border: 1px solid rgba(56, 189, 248, 0.3); }
.port-tag-pill.gold { background: rgba(212, 175, 55, 0.15); color: var(--brand-gold-light); border: 1px solid rgba(212, 175, 55, 0.3); }
.port-tag-pill.green { background: rgba(16, 185, 129, 0.15); color: #10b981; border: 1px solid rgba(16, 185, 129, 0.3); }

.port-icon-hero {
    font-size: 2rem;
    margin-bottom: 12px;
}
.port-icon-hero.rose { color: #f43f5e; }
.port-icon-hero.cyan { color: #38bdf8; }
.port-icon-hero.gold { color: var(--brand-gold); }
.port-icon-hero.green { color: #10b981; }

.port-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.3;
}
.port-desc {
    font-size: 0.84rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 16px;
}
.port-meta {
    font-size: 0.74rem;
    color: var(--text-muted);
    padding-top: 12px;
    border-top: 1px solid var(--border-subtle);
}

/* Pricing Models Grid */
.pricing-models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 36px;
}
.model-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: all 0.3s ease;
}
.model-card.featured {
    border-color: var(--brand-gold);
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.1) 0%, rgba(13, 19, 34, 0.95) 100%);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 30px rgba(212, 175, 55, 0.15);
    transform: scale(1.03);
}
.featured-ribbon {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-gold);
    color: #000;
    font-size: 0.68rem;
    font-weight: 900;
    padding: 4px 14px;
    border-radius: 999px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.4);
    white-space: nowrap;
}
.model-badge {
    font-size: 0.68rem;
    font-weight: 900;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.model-badge.gold { color: var(--brand-gold-light); }
.model-badge.red { color: #f87171; }
.model-title {
    font-size: 1.35rem;
    font-weight: 900;
    color: #fff;
    margin: 0 0 8px;
}
.model-price {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--brand-gold);
    margin-bottom: 12px;
}
.model-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 20px;
}
.model-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.84rem;
    color: #cbd5e1;
}
.model-features li {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Responsive Breakpoints for Agency Components */
@media (max-width: 1024px) {
    .pod-structure-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-pod-badges-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .calculator-container {
        grid-template-columns: 1fr;
    }
    .simulator-output-grid {
        grid-template-columns: 1fr;
    }
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-models-grid {
        grid-template-columns: 1fr;
    }
    .model-card.featured {
        transform: none;
    }
    .nda-guarantees-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .pod-structure-grid {
        grid-template-columns: 1fr;
    }
    .hero-pod-badges-grid {
        grid-template-columns: 1fr;
    }
    .simulator-controls-bar {
        grid-template-columns: 1fr;
    }
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .nda-guarantees-grid {
        grid-template-columns: 1fr;
    }
    .calculator-container {
        padding: 24px 16px;
    }
    .simulator-wrapper {
        padding: 20px 14px;
    }
    .nda-banner-card {
        padding: 24px 16px;
    }
}

/* ================================================================
   💬 MASTER MODAL OVERLAY & POPUP STYLES
   ================================================================ */
.modal-backdrop,
.lead-modal-overlay,
.discovery-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(4, 7, 18, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.active,
.lead-modal-overlay.active,
.discovery-modal-overlay.active {
    display: flex !important;
    opacity: 1;
    pointer-events: all;
}

.modal-box,
.lead-modal-box,
.discovery-modal-box {
    background: #090e1a;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    max-width: 540px;
    width: 100%;
    position: relative;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.9), 0 0 30px rgba(212, 175, 55, 0.12);
    transform: scale(0.94) translateY(12px);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-backdrop.active .modal-box,
.lead-modal-overlay.active .lead-modal-box,
.discovery-modal-overlay.active .discovery-modal-box {
    transform: scale(1) translateY(0);
}

.modal-close-btn,
.lead-modal-close,
.close-discovery-modal-btn {
    position: absolute;
    top: 16px;
    right: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-subtle);
    color: #cbd5e1;
    font-size: 1.2rem;
    line-height: 1;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
}

.modal-close-btn:hover,
.lead-modal-close:hover,
.close-discovery-modal-btn:hover {
    background: #ef4444;
    color: #fff;
    border-color: #ef4444;
    transform: rotate(90deg);
}

.modal-head {
    margin-bottom: 20px;
}

/* ================================================================
   🤖 MUKUL AI ASSISTANT — ULTRA RGB GLOW & LUXURY UI/UX
   ================================================================ */

/* Floating Assist Group (Bottom Right) */
.floating-assist-group {
    position: fixed;
    bottom: 26px;
    right: 26px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    z-index: 9999;
}

/* Sticky WhatsApp Floating Button */
.sticky-wa-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    font-size: 1.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45), 0 0 15px rgba(37, 211, 102, 0.25);
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}
.sticky-wa-btn:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.65), 0 0 25px rgba(37, 211, 102, 0.4);
    color: #fff;
}
.sticky-wa-ping {
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: waPing 2s infinite cubic-bezier(0, 0, 0.2, 1);
    opacity: 0.75;
    pointer-events: none;
}
@keyframes waPing {
    0% { transform: scale(1); opacity: 0.8; }
    80%, 100% { transform: scale(1.5); opacity: 0; }
}
.sticky-wa-tooltip {
    position: absolute;
    right: 64px;
    background: rgba(7, 10, 20, 0.95);
    border: 1px solid rgba(37, 211, 102, 0.4);
    color: #fff;
    font-size: 0.76rem;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(8px);
    transition: all 0.25s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.6);
}
.sticky-wa-btn:hover .sticky-wa-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Mukul AI RGB Trigger Button */
.ai-chatbot-toggle-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 20px;
    border-radius: 999px;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.8px;
    color: #fff;
    border: 2px solid transparent;
    background: 
        linear-gradient(135deg, #070a14, #0d1322) padding-box,
        linear-gradient(135deg, #ff007a, #7928ca, #00f0ff, #00ff87, #ffd700, #ff007a) border-box;
    background-size: 200% 200%;
    animation: rgbBorderShift 4s linear infinite, rgbButtonGlow 3s ease-in-out infinite alternate;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 25px rgba(0, 240, 255, 0.35), 0 0 15px rgba(255, 0, 122, 0.3);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    user-select: none;
}
.ai-chatbot-toggle-btn:hover {
    transform: scale(1.06) translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 35px rgba(0, 240, 255, 0.6), 0 0 25px rgba(255, 0, 122, 0.5);
}
.ai-sparkle-icon {
    font-size: 1.05rem;
    animation: rgbSparkleSpin 3s linear infinite;
    background: linear-gradient(135deg, #ffd700, #ff007a, #00f0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ai-btn-text {
    background: linear-gradient(135deg, #ffffff 0%, #00f0ff 50%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}
.ai-online-badge {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00ff87;
    box-shadow: 0 0 10px #00ff87, 0 0 4px #00ff87;
    animation: aiOnlinePulse 1.8s infinite;
}

@keyframes rgbBorderShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes rgbButtonGlow {
    0% { box-shadow: 0 10px 30px rgba(0,0,0,0.7), 0 0 20px rgba(0, 240, 255, 0.3), 0 0 15px rgba(255, 0, 122, 0.25); }
    100% { box-shadow: 0 12px 35px rgba(0,0,0,0.8), 0 0 35px rgba(121, 40, 202, 0.45), 0 0 25px rgba(0, 255, 135, 0.35); }
}
@keyframes rgbSparkleSpin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.15); }
    100% { transform: rotate(360deg) scale(1); }
}
@keyframes aiOnlinePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
}

/* ================================================================
   🤖 MUKUL AI POPUP WINDOW (DESKTOP & MOBILE)
   ================================================================ */
.ai-chatbot-window {
    position: fixed;
    bottom: 95px;
    right: 28px;
    width: 410px;
    height: 590px;
    max-height: calc(100vh - 120px);
    background: #070a14;
    border-radius: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    
    /* RGB Animated Border Container */
    border: 2px solid transparent;
    background-image: 
        linear-gradient(#070a14, #070a14),
        linear-gradient(135deg, #ff007a 0%, #7928ca 25%, #00f0ff 50%, #00ff87 75%, #ffd700 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    background-size: 250% 250%;
    animation: rgbBorderShift 6s linear infinite;

    /* RGB Ambient Glowing Box Shadow */
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.95),
        0 0 40px rgba(0, 240, 255, 0.25),
        0 0 30px rgba(121, 40, 202, 0.3),
        0 0 20px rgba(255, 0, 122, 0.2);

    /* Smooth Entrance & Exit Animations */
    opacity: 0;
    pointer-events: none;
    transform: scale(0.92) translateY(24px);
    transform-origin: bottom right;
    transition: 
        opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0.28s;
    visibility: hidden;
}

.ai-chatbot-window.active {
    opacity: 1;
    pointer-events: all;
    transform: scale(1) translateY(0);
    visibility: visible;
}

/* AI Chat Header */
.ai-chat-header {
    background: linear-gradient(180deg, #0f1629 0%, #090e1a 100%);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}
.ai-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}
.ai-avatar-ring {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e1b4b 0%, #0f172a 100%);
    border: 2px solid transparent;
    background-image: 
        linear-gradient(#0d1322, #0d1322),
        linear-gradient(135deg, #ff007a, #00f0ff, #ffd700);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00f0ff;
    font-size: 1.25rem;
    position: relative;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}
.ai-online-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #00ff87;
    border: 2px solid #070a14;
    box-shadow: 0 0 8px #00ff87;
}
.ai-header-title {
    font-size: 0.95rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #00f0ff 60%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}
.ai-header-sub {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 2px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.ai-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}
.ai-action-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    cursor: pointer;
    transition: all 0.2s ease;
}
.ai-action-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    transform: scale(1.08);
}
#aiChatCloseBtn:hover {
    background: #ef4444;
    border-color: #ef4444;
    transform: rotate(90deg) scale(1.08);
}

/* Quick Chips Bar */
.ai-chat-chips-bar {
    background: rgba(9, 14, 26, 0.85);
    padding: 10px 16px;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.ai-chat-chips-bar::-webkit-scrollbar { display: none; }
.ai-chip-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
    font-size: 0.73rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 999px;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}
.ai-chip-btn:hover {
    background: rgba(0, 240, 255, 0.12);
    border-color: rgba(0, 240, 255, 0.4);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 240, 255, 0.2);
}

/* Chat Messages Body */
.ai-chat-body {
    flex: 1;
    padding: 18px 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: radial-gradient(circle at 50% 0%, rgba(121, 40, 202, 0.06) 0%, transparent 70%);
}
.ai-chat-body::-webkit-scrollbar { width: 5px; }
.ai-chat-body::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.15); border-radius: 4px; }

.ai-msg {
    display: flex;
    gap: 10px;
    max-width: 88%;
    animation: aiMsgFadeIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes aiMsgFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.ai-msg-bot {
    align-self: flex-start;
}
.ai-msg-user {
    align-self: flex-end;
    flex-direction: row-reverse;
}
.ai-msg-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #0f172a;
    border: 1px solid rgba(0, 240, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00f0ff;
    font-size: 0.8rem;
    flex-shrink: 0;
}
.ai-msg-bubble {
    padding: 11px 15px;
    font-size: 0.85rem;
    line-height: 1.6;
    word-break: break-word;
}
.ai-msg-bot .ai-msg-bubble {
    background: #0d1322;
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-left: 3px solid #00f0ff;
    color: #e2e8f0;
    border-radius: 4px 16px 16px 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}
.ai-msg-user .ai-msg-bubble {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    color: #fff;
    border-radius: 16px 4px 16px 16px;
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.35);
    font-weight: 500;
}

/* Chat Input Bar */
.ai-chat-input-bar {
    background: #080c18;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.ai-chat-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 0.86rem;
    color: #fff;
    outline: none;
    transition: all 0.2s ease;
}
.ai-chat-input:focus {
    border-color: #00f0ff;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}
.ai-chat-input::placeholder { color: #64748b; font-size: 0.82rem; }

.ai-chat-send-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00f0ff 0%, #7928ca 100%);
    border: none;
    color: #fff;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(0, 240, 255, 0.4);
}
.ai-chat-send-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(121, 40, 202, 0.6);
}

/* ================================================================
   📱 MASTER MOBILE RESPONSIVE UI/UX OPTIMIZATION (< 768px & < 640px)
   ================================================================ */
@media (max-width: 768px) {
    main#main-content {
        padding-bottom: 85px; /* Space for mobile floating dock */
    }

    .container {
        padding: 0 16px;
    }

    .section-wrap {
        padding: 45px 0;
    }

    .section-h2 {
        font-size: 1.55rem;
        line-height: 1.25;
    }

    .section-p {
        font-size: 0.85rem;
        margin-bottom: 22px;
    }
}

@media (max-width: 640px) {
    /* Mobile Top Ticker */
    .top-ticker {
        padding: 4px 10px;
        font-size: 0.7rem;
    }

    /* Emergency SOS Strip Mobile Fix (Compact & Sleek) */
    .emergency-sos-strip {
        padding: 7px 12px;
    }
    .emergency-sos-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        flex-wrap: nowrap;
    }
    .emergency-sos-left {
        font-size: 0.72rem;
        gap: 6px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .badge-sos {
        font-size: 0.64rem;
        padding: 2px 6px;
        flex-shrink: 0;
    }
    .sos-text {
        font-size: 0.72rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 170px;
    }
    .btn-sos-trigger {
        padding: 4px 10px;
        font-size: 0.7rem;
        flex-shrink: 0;
        white-space: nowrap;
    }

    /* Hero Section Mobile Optimization */
    .hero-section {
        padding: 24px 0 20px;
    }
    .hero-pill-badge {
        font-size: 0.64rem;
        padding: 5px 12px;
        margin-bottom: 12px;
        line-height: 1.3;
        max-width: 100%;
        text-align: center;
        letter-spacing: 0.3px;
    }
    .hero-logo-emblem {
        width: 76px;
        height: 76px;
        margin: 6px auto 14px;
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
    }
    .hero-headline {
        font-size: 1.65rem;
        line-height: 1.22;
        margin-bottom: 10px;
        letter-spacing: -0.4px;
    }
    .hero-intro {
        font-size: 0.92rem;
        line-height: 1.45;
        margin-bottom: 8px;
    }
    .hero-subintro {
        font-size: 0.8rem;
        line-height: 1.5;
        margin-bottom: 16px;
    }

    /* Hero Pod Badges: Clean 2-Column Mobile Grid */
    .hero-pod-badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin: 16px 0;
    }
    .hero-pod-chip {
        padding: 9px 10px;
        gap: 8px;
        border-radius: var(--radius-sm);
    }
    .hero-pod-chip i {
        font-size: 1.15rem;
    }
    .hero-pod-chip strong {
        font-size: 0.76rem;
    }
    .hero-pod-chip span {
        font-size: 0.64rem;
    }

    /* Trust Pills */
    .hero-trust-bar {
        gap: 6px;
        margin: 12px 0 18px;
    }
    .trust-pill {
        font-size: 0.68rem;
        padding: 4px 9px;
    }

    /* Hero Buttons: Full Width Stack */
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 9px;
        margin-bottom: 20px;
    }
    .hero-actions a,
    .hero-actions button {
        width: 100%;
        justify-content: center;
        padding: 13px 18px;
        font-size: 0.9rem;
    }

    /* Hero Stats: 2x2 Grid */
    .hero-stats-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 14px 10px;
        border-radius: var(--radius-md);
        margin-top: 14px;
    }
    .hstat-divider {
        display: none;
    }
    .hstat-num {
        font-size: 1.35rem;
    }
    .hstat-lbl {
        font-size: 0.68rem;
    }

    /* Sections Mobile Stacking */
    .pod-structure-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .pod-integrations-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 14px 16px;
    }

    .calculator-container {
        padding: 20px 14px;
        gap: 20px;
    }
    .simulator-wrapper {
        padding: 16px 12px;
    }
    .simulator-controls-bar {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .nda-banner-card {
        padding: 22px 14px;
    }
    .nda-banner-left {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    .nda-banner-right {
        width: 100%;
        flex-direction: column;
        gap: 8px;
    }
    .nda-banner-right button,
    .nda-banner-right a {
        width: 100%;
        justify-content: center;
    }
    .nda-guarantees-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .pricing-models-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Floating WhatsApp & Assist Dock */
    .floating-assist-group {
        bottom: 78px;
        right: 14px;
        gap: 10px;
    }
    .sticky-wa-btn {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }
    .ai-chatbot-toggle-btn {
        display: none; /* Mobile triggers AI via bottom bar */
    }

    /* Full-Screen Mobile AI Bottom Sheet */
    .ai-chatbot-window {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        max-height: 100vh !important;
        border-radius: 0 !important;
        border: none !important;
        z-index: 999999 !important;
        transform: translateY(100%);
        transform-origin: bottom center;
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    }

    .ai-chatbot-window.active {
        transform: translateY(0);
    }

    .ai-chat-header {
        padding: 14px 16px;
        padding-top: max(14px, env(safe-area-inset-top));
    }
    .ai-chat-input-bar {
        padding-bottom: max(12px, env(safe-area-inset-bottom));
    }
}


