﻿/* ==========================================================================
   GOR MARKETING - ULTIMATE FLUID & RESPONSIVE DESIGN SYSTEM (Desktop & Mobile)
   ========================================================================== */

:root {
    --bg-main: #06070a;
    --bg-card: rgba(12, 14, 22, 0.95);
    --bg-glass: rgba(14, 18, 28, 0.88);
    
    /* Cyber Gold */
    --gold-primary: #ffc107;
    --gold-bright: #ffd700;
    --gold-glow: rgba(255, 193, 7, 0.35);
    --border-gold: rgba(255, 193, 7, 0.45);
    --shadow-gold: 0 0 25px rgba(255, 193, 7, 0.25);
    
    /* GOR Emerald */
    --emerald-primary: #00ff88;
    --emerald-bright: #10b981;
    --emerald-glow: rgba(0, 255, 136, 0.4);
    --border-emerald: rgba(0, 255, 136, 0.45);
    --shadow-emerald: 0 0 25px rgba(0, 255, 136, 0.25);
    
    /* Cyber Laser Cyan */
    --cyan-accent: #00f0ff;
    --cyan-glow: rgba(0, 240, 255, 0.35);
    --border-cyan: rgba(0, 240, 255, 0.45);

    /* Text */
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --text-dim: #64748b;
    
    /* Universal Compatibility Tokens */
    --primary: var(--gold-bright);
    --navy: #ffffff;
    --slate: var(--text-muted);
    --ice-blue: rgba(255, 255, 255, 0.04);
    --sky: var(--cyan-accent);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass: rgba(14, 18, 28, 0.88);
    
    --font-heading: 'Outfit', 'Heebo', sans-serif;
    --font-body: 'Heebo', sans-serif;
}

/* Base Reset & Guaranteed Dark Theme */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    background-color: #06070a;
}

body {
    background: radial-gradient(circle at 50% -20%, rgba(22, 32, 65, 0.85) 0%, #06070a 65%) !important;
    background-color: #06070a !important;
    color: #ffffff !important;
    font-family: 'Heebo', sans-serif !important;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    direction: rtl;
    text-align: right;
}

/* Global Hero Centering */
.hero {
    text-align: center !important;
    position: relative;
}
.hero h1, .hero p {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Ambient Background Blobs */
.mesh-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.mesh-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.blob-1 {
    width: clamp(350px, 50vw, 650px);
    height: clamp(350px, 50vw, 650px);
    background: radial-gradient(circle, rgba(255, 193, 7, 0.5) 0%, transparent 70%);
    top: -80px;
    right: -50px;
    animation: meshRotate 22s linear infinite;
}

.blob-2 {
    width: clamp(400px, 55vw, 750px);
    height: clamp(400px, 55vw, 750px);
    background: radial-gradient(circle, rgba(0, 255, 136, 0.5) 0%, transparent 70%);
    bottom: -80px;
    left: -100px;
    animation: meshRotate 28s linear infinite reverse;
}

.blob-3 {
    width: clamp(300px, 40vw, 550px);
    height: clamp(300px, 40vw, 550px);
    background: radial-gradient(circle, rgba(0, 240, 255, 0.5) 0%, transparent 70%);
    top: 35%;
    left: 20%;
    animation: meshRotate 35s linear infinite;
}

@keyframes meshRotate {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

/* Container */
.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 clamp(16px, 3vw, 28px);
}

/* ==========================================================================
   FLUID NAVBAR (Desktop & Mobile Proportions)
   ========================================================================== */

.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(6, 7, 10, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-gold);
    z-index: 99999;
    padding: clamp(10px, 1.5vh, 16px) 0;
}

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

.logo-container a {
    display: flex;
    align-items: center;
    gap: clamp(8px, 1.5vw, 12px);
    text-decoration: none;
}

.logo-container img {
    width: clamp(38px, 4vw, 44px) !important;
    height: clamp(38px, 4vw, 44px) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
    object-fit: contain !important;
    display: block !important;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(1.15rem, 2.5vw, 1.4rem);
    color: #fff;
    white-space: nowrap;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(14px, 1.8vw, 24px);
    margin: 0;
    padding: 0;
}

.nav-links a,
.nav-links .dropdown-trigger {
    color: var(--text-muted);
    font-weight: 600;
    font-size: clamp(0.85rem, 1.1vw, 0.95rem);
    text-decoration: none;
    transition: color 0.2s ease;
    background: none;
    border: none;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active,
.nav-links .dropdown-trigger:hover,
.nav-item-dropdown:hover .dropdown-trigger,
.nav-item-dropdown:focus-within .dropdown-trigger {
    color: var(--gold-bright);
}

.nav-item-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 0;
}

.dropdown-trigger i.fa-chevron-down {
    font-size: 0.72rem;
    color: var(--gold-primary);
    transition: transform 0.25s ease;
}

.nav-item-dropdown:hover .dropdown-trigger i.fa-chevron-down {
    transform: rotate(180deg);
}

/* Dropdown Trays */
.dropdown-tray {
    display: none !important;
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 290px;
    background: #090b12;
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.95), 0 0 20px rgba(255, 193, 7, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 100000;
}

.nav-item-dropdown:hover > .dropdown-tray,
.nav-item-dropdown:focus-within > .dropdown-tray {
    display: flex !important;
    flex-direction: column;
    gap: 6px;
}

.dropdown-tray.mega-tray {
    min-width: 620px;
    right: -100px;
}

.nav-item-dropdown:hover > .dropdown-tray.mega-tray,
.nav-item-dropdown:focus-within > .dropdown-tray.mega-tray {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.nav-links .dropdown-item,
.dropdown-tray .dropdown-item,
.dropdown-item {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 14px !important;
    padding: 10px 14px !important;
    border-radius: 12px !important;
    color: #cbd5e1 !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    border: 1px solid transparent !important;
    background: rgba(255, 255, 255, 0.02) !important;
    direction: rtl !important;
    text-align: right !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.nav-links .dropdown-item:hover,
.dropdown-tray .dropdown-item:hover,
.dropdown-item:hover {
    background: rgba(255, 193, 7, 0.1) !important;
    border-color: rgba(255, 193, 7, 0.3) !important;
    color: #fff !important;
    transform: translateX(-4px) !important;
}

.nav-links .dropdown-item.item-emerald:hover,
.dropdown-item.item-emerald:hover {
    background: rgba(0, 255, 136, 0.1) !important;
    border-color: rgba(0, 255, 136, 0.3) !important;
}

.nav-links .dropdown-item.item-cyan:hover,
.dropdown-item.item-cyan:hover {
    background: rgba(0, 240, 255, 0.1) !important;
    border-color: rgba(0, 240, 255, 0.3) !important;
}

.nav-links .dropdown-icon,
.dropdown-tray .dropdown-icon,
.dropdown-icon {
    width: 38px !important;
    height: 38px !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 16px !important;
    flex-shrink: 0 !important;
    background: rgba(255, 255, 255, 0.06) !important;
    margin: 0 !important;
}

.nav-links .dropdown-item-text,
.dropdown-tray .dropdown-item-text,
.dropdown-item-text {
    display: block !important;
    text-align: right !important;
    direction: rtl !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.nav-links .dropdown-item-text strong,
.dropdown-tray .dropdown-item-text strong,
.dropdown-item-text strong {
    display: block !important;
    font-size: 0.94rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 0 2px 0 !important;
    text-align: right !important;
    direction: rtl !important;
    line-height: 1.3 !important;
    width: 100% !important;
}

.nav-links .dropdown-item-text span,
.dropdown-tray .dropdown-item-text span,
.dropdown-item-text span {
    display: block !important;
    font-size: 0.78rem !important;
    color: #94a3b8 !important;
    margin: 0 !important;
    text-align: right !important;
    direction: rtl !important;
    line-height: 1.4 !important;
    width: 100% !important;
}

/* Universal Navbar CTA Button - Ultra High Contrast & Visibility */
.nav-links a.btn-nav,
.btn-nav {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 8px 22px !important;
    border-radius: 9999px !important;
    font-weight: 900 !important;
    font-size: clamp(0.85rem, 1.1vw, 0.95rem) !important;
    background: linear-gradient(135deg, #00ff88 0%, #00e5ff 100%) !important;
    color: #000000 !important;
    text-decoration: none !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 0 22px rgba(0, 255, 136, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.7) !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    white-space: nowrap !important;
    cursor: pointer !important;
    text-shadow: none !important;
}

.nav-links a.btn-nav:hover,
.nav-links a.btn-nav:focus,
.btn-nav:hover,
.btn-nav:focus {
    background: linear-gradient(135deg, #ffd700 0%, #ff9800 100%) !important;
    color: #000000 !important;
    border-color: #ffffff !important;
    transform: translateY(-2px) scale(1.04) !important;
    box-shadow: 0 0 30px rgba(255, 193, 7, 0.85), 0 6px 20px rgba(0, 0, 0, 0.6) !important;
}

.nav-links a.btn-nav i,
.btn-nav i {
    color: #000000 !important;
    font-size: 0.88rem !important;
}

.mobile-nav-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-gold);
    color: var(--gold-bright);
    font-size: 1.25rem;
    padding: 8px 14px;
    border-radius: 10px;
    cursor: pointer;
}

/* ==========================================================================
   BENTO CARDS & FLUID GRID SYSTEM
   ========================================================================== */

.bento-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: clamp(16px, 2.5vw, 24px);
    padding: clamp(20px, 3.5vw, 36px);
    backdrop-filter: blur(12px);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card-gold {
    border-color: var(--border-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(255, 193, 7, 0.03);
}
.card-gold:hover {
    border-color: var(--gold-bright);
    box-shadow: var(--shadow-gold);
}

.card-emerald {
    border-color: var(--border-emerald);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(0, 255, 136, 0.03);
}
.card-emerald:hover {
    border-color: var(--emerald-primary);
    box-shadow: var(--shadow-emerald);
}

.card-cyan {
    border-color: var(--border-cyan);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(0, 240, 255, 0.03);
}
.card-cyan:hover {
    border-color: var(--cyan-accent);
    box-shadow: 0 0 25px var(--cyan-glow);
}

/* Responsive Buttons */
.btn-gold, .btn-emerald, .btn-cyan, .btn-action-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: clamp(11px, 1.6vh, 15px) clamp(20px, 2.5vw, 30px);
    font-weight: 800;
    font-size: clamp(0.9rem, 1.2vw, 1.02rem);
    border-radius: 14px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
}

.btn-gold {
    background: var(--gold-primary);
    color: #06070a;
    box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
    background: var(--gold-bright);
    transform: translateY(-3px);
    box-shadow: 0 0 35px var(--gold-primary);
}

.btn-emerald {
    background: var(--emerald-primary);
    color: #06070a;
    box-shadow: var(--shadow-emerald);
}
.btn-emerald:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 35px var(--emerald-primary);
}

.btn-cyan {
    background: var(--cyan-accent);
    color: #06070a;
    box-shadow: 0 0 25px var(--cyan-glow);
}
.btn-cyan:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 35px var(--cyan-accent);
}

.btn-action-secondary {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
}
.btn-action-secondary:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: #ffffff;
    transform: translateY(-3px);
}

/* Badge */
.badge-gold-emerald {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px clamp(12px, 2vw, 18px);
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 9999px;
    color: var(--gold-bright);
    font-size: clamp(0.78rem, 1vw, 0.88rem);
    font-weight: 700;
    margin-bottom: 20px;
}

.gradient-title {
    background: linear-gradient(135deg, #ffd700 0%, #00ff88 50%, #00f0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}

/* Mockup Frame */
.mockup-frame {
    border-radius: clamp(12px, 2vw, 18px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    background: #000;
    width: 100%;
}
.mockup-frame img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Metric Value */
.metric-val {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 4px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: clamp(18px, 3vh, 28px);
    left: clamp(18px, 3vw, 28px);
    width: clamp(50px, 6vw, 60px);
    height: clamp(50px, 6vw, 60px);
    border-radius: 50%;
    background: #25d366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(24px, 3.5vw, 32px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
    z-index: 999999;
    text-decoration: none;
    transition: transform 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
}

/* Footer */
footer {
    border-top: 1px solid rgba(255, 193, 7, 0.2);
    background: rgba(4, 5, 8, 0.95);
    padding: clamp(40px, 6vh, 60px) 0 clamp(20px, 3vh, 30px);
    margin-top: clamp(60px, 8vh, 100px);
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(24px, 4vw, 40px);
    margin-bottom: 30px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 20px;
    text-align: center;
    color: var(--text-dim);
    font-size: clamp(0.78rem, 1vw, 0.85rem);
}

.footer-inner a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-inner a:hover {
    color: var(--gold-bright);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (Mobile, Tablet, Desktop)
   ========================================================================== */

/* Tablet & Mobile (<= 1024px) */
@media (max-width: 1024px) {
    .mobile-nav-toggle {
        display: block;
    }
    
    .nav-links {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #08090f;
        border-bottom: 1px solid var(--border-gold);
        padding: 24px clamp(16px, 4vw, 32px);
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        box-shadow: 0 25px 50px rgba(0,0,0,0.95);
        z-index: 99999;
        max-height: 85vh;
        overflow-y: auto;
    }
    
    .nav-links.active-mobile {
        display: flex !important;
    }

    .nav-links > a,
    .nav-links .dropdown-trigger {
        font-size: 1.05rem;
        padding: 10px 0;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        direction: rtl;
        text-align: right;
    }

    .nav-item-dropdown {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .dropdown-tray {
        position: static !important;
        display: flex !important;
        box-shadow: none !important;
        background: rgba(255, 255, 255, 0.03) !important;
        margin-top: 8px;
        min-width: 100% !important;
        border-radius: 12px;
        padding: 8px;
    }

    .dropdown-tray.mega-tray {
        grid-template-columns: 1fr !important;
        min-width: 100% !important;
        right: 0 !important;
    }

    .btn-nav {
        width: 100%;
        justify-content: center;
        padding: 12px;
        margin-top: 10px;
    }
}

/* Smartphone Portrait (<= 640px) */
@media (max-width: 640px) {
    .hero {
        padding: 20px 0 40px;
        text-align: center;
    }

    .hero div[style*="flex"] {
        flex-direction: column;
        width: 100%;
    }

    .btn-gold, .btn-emerald, .btn-cyan, .btn-action-secondary {
        width: 100%;
    }

    .client-logos-row {
        gap: 16px;
    }
    .client-logos-row img {
        max-height: 32px;
    }

    .form-input {
        font-size: 0.95rem;
        padding: 12px 14px;
    }
}


/* ==========================================================================
   MOBILE DRAWER & DROPDOWN ACCORDION OVERRIDES
   ========================================================================== */
@media (max-width: 1024px) {
    .dropdown-tray,
    .dropdown-tray.mega-tray {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: 1fr !important;
        gap: 6px !important;
        min-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .dropdown-item {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 14px !important;
        width: 100% !important;
        padding: 10px 12px !important;
        text-align: right !important;
        direction: rtl !important;
        box-sizing: border-box !important;
    }

    .dropdown-icon {
        width: 38px !important;
        height: 38px !important;
        flex-shrink: 0 !important;
        margin: 0 !important;
    }

    .dropdown-item-text {
        display: block !important;
        text-align: right !important;
        direction: rtl !important;
        flex: 1 1 auto !important;
        min-width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .dropdown-item-text strong {
        font-size: 0.95rem !important;
        font-weight: 700 !important;
        text-align: right !important;
        direction: rtl !important;
        display: block !important;
        width: 100% !important;
        margin-bottom: 2px !important;
        line-height: 1.3 !important;
    }

    .dropdown-item-text span {
        font-size: 0.78rem !important;
        color: #94a3b8 !important;
        text-align: right !important;
        direction: rtl !important;
        display: block !important;
        width: 100% !important;
        line-height: 1.4 !important;
    }

    /* Prevent any card overflow */
    .bento-card, .container, .hero {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
}


/* Enhanced Client Logos Showcase with Glass & Gold Hover Glow */
.client-logos-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(14px, 2vw, 24px);
    flex-wrap: wrap;
    padding: 24px 20px;
    background: rgba(10, 12, 20, 0.7);
    border: 1px solid rgba(255, 193, 7, 0.35);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(255, 193, 7, 0.05);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.client-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    filter: brightness(105%) contrast(105%);
}

.client-logo-item:hover {
    transform: translateY(-5px) scale(1.08);
    background: rgba(255, 193, 7, 0.12);
    border-color: var(--gold-bright);
    box-shadow: 0 0 25px rgba(255, 193, 7, 0.4), inset 0 0 10px rgba(255, 193, 7, 0.2);
}

.client-logo-item:hover img {
    filter: drop-shadow(0 0 10px rgba(255, 193, 7, 0.6));
}

.client-logos-row img {
    max-height: clamp(38px, 4.5vw, 50px);
    max-width: 130px;
    width: auto;
    object-fit: contain;
    transition: filter 0.3s ease;
}

/* ==========================================================================
   GOR MARKETING - PREMIUM INTERACTIVE SUITE
   1. Growth & ROI Calculator
   2. Proven Case Studies Grid & Filters
   3. GOR-Bot Floating AI Concierge
   ========================================================================== */

/* ==========================================================================
   1. Growth & Multi-Channel ROI Simulator (Expanded Suite)
   ========================================================================== */
.roi-calculator-card {
    background: linear-gradient(135deg, rgba(16, 20, 32, 0.92), rgba(10, 12, 20, 0.98));
    border: 1px solid rgba(255, 193, 7, 0.35);
    box-shadow: 0 20px 50px rgba(0,0,0,0.7), inset 0 0 30px rgba(255, 193, 7, 0.05);
    border-radius: 24px;
    padding: clamp(18px, 3.5vw, 40px);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.roi-calculator-card::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Channel Selector Matrix */
.calc-channel-wrapper {
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 24px;
}

.calc-channel-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.calc-channel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
    width: 100%;
}

.calc-channel-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: right;
    width: 100%;
    box-sizing: border-box;
}

.calc-channel-btn i {
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.calc-channel-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 193, 7, 0.4);
    color: #fff;
    transform: translateY(-2px);
}

.calc-channel-btn.active {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15), rgba(255, 193, 7, 0.12));
    border-color: var(--emerald-primary);
    color: #fff;
    box-shadow: 0 0 16px rgba(0, 255, 136, 0.2), inset 0 0 10px rgba(0, 255, 136, 0.1);
}

.calc-channel-btn.active i {
    transform: scale(1.15);
}

.calc-active-channel-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 255, 136, 0.12);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: var(--emerald-primary);
    padding: 5px 14px;
    border-radius: 9999px;
    font-size: 0.82rem;
    font-weight: 700;
}

.calc-slider-limits {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
    direction: ltr;
}

/* AI Booster Toggle Box */
.calc-ai-toggle-box {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.06), rgba(255, 193, 7, 0.04));
    border: 1px solid rgba(0, 255, 136, 0.25);
    border-radius: 14px;
    padding: 14px 16px;
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.3s ease;
}

.calc-ai-toggle-box:hover {
    border-color: var(--emerald-primary);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.15);
}

.calc-switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 26px;
    flex-shrink: 0;
}

.calc-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.calc-slider.round {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: .3s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 34px;
}

.calc-slider.round:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .3s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 50%;
}

.calc-switch input:checked + .calc-slider.round {
    background-color: var(--emerald-primary);
    box-shadow: 0 0 12px rgba(0, 255, 136, 0.6);
}

.calc-switch input:checked + .calc-slider.round:before {
    transform: translateX(20px);
}

.calc-ai-toggle-text {
    flex: 1;
}

.calc-ai-toggle-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 2px;
}

.calc-ai-toggle-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Profit Banner */
.calc-profit-banner {
    background: rgba(255, 193, 7, 0.08);
    border: 1px dashed rgba(255, 193, 7, 0.35);
    border-radius: 12px;
    padding: 10px 14px;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.calc-profit-label {
    font-size: 0.8rem;
    color: #e2e8f0;
    font-weight: 600;
}

.calc-profit-val {
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--gold-bright);
    font-variant-numeric: tabular-nums;
    direction: ltr;
    white-space: nowrap;
}

/* Strategic Insight Box */
.calc-insight-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-right: 3px solid var(--gold-bright);
    border-radius: 12px;
    padding: 12px 14px;
    margin-top: 14px;
}

.calc-insight-header {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gold-bright);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

.calc-insight-text {
    font-size: 0.82rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0;
}


/* 2. Case Studies & Proven Results Filterable Grid */
.case-filter-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.case-filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #cbd5e1;
    padding: 9px 20px;
    border-radius: 9999px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.case-filter-btn:hover, .case-filter-btn.active {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(0, 255, 136, 0.2));
    border-color: var(--gold-bright);
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
    transform: translateY(-2px);
}

.case-study-card {
    background: rgba(14, 18, 28, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.case-study-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-bright);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 193, 7, 0.2);
}

.case-study-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 12px;
    width: fit-content;
}

.case-metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 16px 0;
    background: rgba(0, 0, 0, 0.35);
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.case-metric-box {
    text-align: center;
}

.case-metric-val {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--emerald-primary);
}

.case-metric-lbl {
    font-size: 0.75rem;
    color: var(--text-muted);
}


/* 3. GOR-Bot Floating AI Concierge Widget */
.gor-bot-trigger {
    position: fixed;
    bottom: 98px;
    left: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    border: 2px solid #fff;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.6), 0 0 35px rgba(255, 152, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9998;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    color: #05070d;
    font-size: 1.6rem;
}

.gor-bot-trigger:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 35px rgba(255, 193, 7, 0.9), 0 0 45px rgba(0, 255, 136, 0.5);
}

.gor-bot-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 193, 7, 0.4);
    animation: botPulse 2s infinite ease-out;
    pointer-events: none;
}

@keyframes botPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

.gor-bot-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--emerald-primary);
    color: #000;
    font-size: 0.65rem;
    font-weight: 900;
    padding: 2px 6px;
    border-radius: 9999px;
    border: 1px solid #fff;
}

.gor-bot-modal {
    position: fixed;
    bottom: 168px;
    left: 24px;
    width: clamp(300px, 90vw, 380px);
    max-height: 540px;
    background: rgba(10, 14, 24, 0.95);
    border: 1px solid rgba(255, 193, 7, 0.4);
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 193, 7, 0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 9999;
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: botSlideUp 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.gor-bot-modal.active {
    display: flex;
}

@keyframes botSlideUp {
    from { opacity: 0; transform: translateY(20px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.gor-bot-header {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), rgba(0, 255, 136, 0.1));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gor-bot-body {
    padding: 18px;
    overflow-y: auto;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 340px;
}

.gor-msg {
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 0.88rem;
    line-height: 1.5;
    max-width: 85%;
}

.gor-msg.bot {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    align-self: flex-start;
}

.gor-quick-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.gor-quick-btn {
    background: rgba(255, 193, 7, 0.08);
    border: 1px solid rgba(255, 193, 7, 0.25);
    color: #fff;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    text-align: right;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gor-quick-btn:hover {
    background: rgba(255, 193, 7, 0.2);
    border-color: var(--gold-bright);
    transform: translateX(-4px);
}

.gor-bot-footer {
    padding: 12px 18px;
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 18px !important;
        left: 18px !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 26px !important;
    }
    .gor-bot-trigger {
        bottom: 78px !important;
        left: 18px !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 1.35rem !important;
    }
    .gor-bot-modal {
        bottom: 138px !important;
        left: 14px !important;
        width: calc(100vw - 28px) !important;
        max-height: min(420px, calc(100vh - 160px)) !important;
    }
}


/* Floating Buttons Hierarchy: GOR-Bot at bottom, WhatsApp above it */
.gor-bot-trigger {
    position: fixed !important;
    bottom: 24px !important;
    left: 24px !important;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    border: 2px solid #fff;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.6), 0 0 35px rgba(255, 152, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99998 !important;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    color: #05070d;
    font-size: 1.6rem;
}

.whatsapp-float {
    position: fixed !important;
    bottom: 98px !important;
    left: 24px !important;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
    z-index: 99999 !important;
    text-decoration: none;
    transition: transform 0.3s ease;
    border: 2px solid #ffffff;
}

.gor-bot-modal {
    position: fixed !important;
    bottom: 168px !important;
    left: 24px !important;
    width: clamp(300px, 90vw, 380px);
    max-height: min(480px, calc(100vh - 190px));
    background: rgba(10, 14, 24, 0.95);
    border: 1px solid rgba(255, 193, 7, 0.4);
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 193, 7, 0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 100000 !important;
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: botSlideUp 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 768px) {
    .gor-bot-trigger {
        bottom: 18px !important;
        left: 18px !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 1.35rem !important;
    }
    .whatsapp-float {
        bottom: 78px !important;
        left: 18px !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 26px !important;
    }
    .gor-bot-modal {
        bottom: 138px !important;
        left: 14px !important;
        width: calc(100vw - 28px) !important;
        max-height: min(420px, calc(100vh - 160px)) !important;
    }
}

.cursor-spotlight {
    position: fixed;
    pointer-events: none !important;
    user-select: none !important;
    z-index: 1;
}

/* ========================================================
   Robust Apps & Bento Layout Rules (Zero-Overlap Guarantee)
   ======================================================== */
.bento-app-block {
    background: #0b0f19 !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 24px !important;
    padding: clamp(22px, 3.5vw, 38px) !important;
    margin-bottom: 50px !important;
    backdrop-filter: none !important;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.6) !important;
    overflow: hidden !important;
    position: relative !important;
}

.app-header-logo {
    width: 56px !important;
    height: 56px !important;
    max-width: 56px !important;
    max-height: 56px !important;
    border-radius: 12px !important;
    object-fit: contain !important;
    flex-shrink: 0 !important;
    display: block !important;
}

.bento-subcard {
    background: #131728 !important;
    border: 1px solid rgba(255, 255, 255, 0.09) !important;
    border-radius: 18px !important;
    padding: 24px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    min-height: 100% !important;
}

.bento-subcard h3 {
    color: #ffffff !important;
    font-size: 1.35rem !important;
    font-weight: 800 !important;
    margin-bottom: 8px !important;
}

.mockup-frame {
    width: 100% !important;
    max-height: 280px !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    margin-top: 14px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    background: #000 !important;
}

.mockup-frame img {
    width: 100% !important;
    height: 100% !important;
    max-height: 280px !important;
    object-fit: cover !important;
    display: block !important;
}

/* ========================================================
   Accessibility Floating Widget (Bottom-Right Hierarchy)
   ======================================================== */
.accessibility-trigger {
    position: fixed !important;
    bottom: 24px !important;
    right: 24px !important;
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #0284c7, #0369a1) !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.5rem !important;
    box-shadow: 0 8px 25px rgba(2, 132, 199, 0.5), 0 0 20px rgba(0, 240, 255, 0.3) !important;
    border: 2px solid #ffffff !important;
    cursor: pointer !important;
    z-index: 99999 !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.accessibility-trigger:hover {
    transform: scale(1.08) rotate(5deg) !important;
    box-shadow: 0 12px 30px rgba(2, 132, 199, 0.7), 0 0 30px rgba(0, 240, 255, 0.5) !important;
}

.accessibility-modal {
    position: fixed !important;
    bottom: 96px !important;
    right: 24px !important;
    width: clamp(300px, 90vw, 360px) !important;
    max-height: min(520px, calc(100vh - 120px)) !important;
    background: rgba(10, 14, 26, 0.98) !important;
    border: 1px solid var(--border-cyan) !important;
    border-radius: 20px !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85), 0 0 30px rgba(0, 240, 255, 0.15) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    z-index: 100000 !important;
    display: none;
    flex-direction: column !important;
    overflow-y: auto !important;
    padding: 20px !important;
    direction: rtl !important;
    text-align: right !important;
    animation: a11ySlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.accessibility-modal.active {
    display: flex !important;
}

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

.a11y-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 12px;
    margin-bottom: 16px;
}

.a11y-header h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.a11y-close {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}
.a11y-close:hover { color: #ffffff; }

.a11y-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 12px;
}

.a11y-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 8px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: 'Heebo', sans-serif;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
}

.a11y-btn:hover {
    background: rgba(0, 240, 255, 0.15);
    border-color: var(--cyan-accent);
    color: var(--cyan-accent);
    transform: translateY(-2px);
}

.a11y-btn-reset {
    width: 100%;
    margin-bottom: 14px;
    background: rgba(255, 193, 7, 0.12) !important;
    border-color: var(--border-gold) !important;
    color: var(--gold-bright) !important;
    padding: 11px !important;
}
.a11y-btn-reset:hover {
    background: rgba(255, 193, 7, 0.25) !important;
    color: #ffffff !important;
}

@media (max-width: 768px) {
    .accessibility-trigger {
        bottom: 18px !important;
        right: 18px !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 1.3rem !important;
    }
    .accessibility-modal {
        bottom: 78px !important;
        right: 12px !important;
        width: calc(100vw - 24px) !important;
    }
}


/* ==========================================================================
   GOR MARKETING - UNIVERSAL RESPONSIVE GUARDS & MOBILE ADAPTATIONS
   ========================================================================== */

/* Universal Safety for all cards and containers */
.container,
.calc-grid,
.roi-calculator-card,
.calc-results-box,
.case-study-card,
.content-card,
.content-grid,
.bento-app-block,
.bento-subcard,
.chip-card {
    min-width: 0 !important;
    box-sizing: border-box !important;
    max-width: 100% !important;
    word-break: break-word;
}

@media (max-width: 768px) {
    .calc-grid {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
    }
    
    .roi-calculator-card {
        padding: 20px 14px !important;
        border-radius: 18px !important;
    }
    
    .calc-results-box {
        padding: 16px 12px !important;
        border-radius: 16px !important;
    }
    
    .calc-metric-row {
        gap: 8px !important;
        margin-bottom: 14px !important;
    }
    
    .calc-metric-item {
        padding: 10px 6px !important;
        border-radius: 12px !important;
    }
    
    .calc-metric-label {
        font-size: 0.72rem !important;
    }
    
    .calc-metric-number {
        font-size: 1.15rem !important;
    }
    
    .content-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
    
    .content-card {
        grid-template-columns: 1fr !important;
        padding: 22px 16px !important;
        gap: 24px !important;
        border-radius: 20px !important;
    }
    
    .case-metrics-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
        padding: 10px !important;
    }
    
    .hero h1,
    .service-hero h1,
    .service-detail-hero h1,
    .article-hero h1 {
        font-size: clamp(2.2rem, 6.5vw, 3.2rem) !important;
        line-height: 1.2 !important;
    }
    
    .content-text h2 {
        font-size: clamp(1.6rem, 4.5vw, 2.2rem) !important;
        margin-bottom: 1.2rem !important;
    }
    
    .strategy-list li {
        padding: 16px !important;
        margin-bottom: 14px !important;
    }
}

@media (max-width: 420px) {
    .roi-calculator-card {
        padding: 16px 10px !important;
    }
    
    .calc-results-box {
        padding: 14px 10px !important;
    }
    
    .calc-slider-header {
        font-size: 0.85rem !important;
    }
    
    .calc-slider-val {
        font-size: 1.05rem !important;
    }
}

@media (max-width: 360px) {
    .calc-metric-row {
        grid-template-columns: 1fr !important;
    }
    
    .case-metrics-grid {
        grid-template-columns: 1fr !important;
    }
}

/* GOR-Bot Smart Interactive Enhancements */
.gor-msg.user {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15), rgba(0, 180, 90, 0.2));
    border: 1px solid rgba(0, 255, 136, 0.35);
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.gor-msg.bot {
    border-bottom-left-radius: 4px;
}

.gor-bot-input-box {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.gor-bot-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 9px 12px;
    color: #fff;
    font-size: 0.85rem;
    font-family: inherit;
    outline: none;
    transition: all 0.2s ease;
}

.gor-bot-input:focus {
    border-color: var(--gold-bright);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.2);
}

.gor-bot-input::placeholder {
    color: #94a3b8;
}

.gor-bot-send {
    background: var(--gold-bright);
    border: none;
    border-radius: 10px;
    width: 36px;
    height: 36px;
    color: #05070d;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    transition: transform 0.2s ease, background 0.2s ease;
    flex-shrink: 0;
}

.gor-bot-send:hover {
    transform: scale(1.08);
    background: #ffb300;
}

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

.gor-typing-dot {
    width: 6px;
    height: 6px;
    background: var(--gold-bright);
    border-radius: 50%;
    animation: gorBlink 1.4s infinite both;
}

.gor-typing-dot:nth-child(2) { animation-delay: 0.2s; }
.gor-typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes gorBlink {
    0%, 80%, 100% { opacity: 0.2; transform: scale(0.8); }
    40% { opacity: 1; transform: scale(1.2); }
}

.gor-bot-proactive-bubble {
    position: fixed;
    bottom: 168px;
    left: 24px;
    background: rgba(15, 20, 32, 0.95);
    border: 1px solid rgba(255, 193, 7, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 193, 7, 0.15);
    border-radius: 14px;
    padding: 12px 16px;
    color: #fff;
    font-size: 0.85rem;
    max-width: 270px;
    z-index: 9997;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: none;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    animation: botSlideUp 0.35s ease;
}

.gor-bot-proactive-bubble.show {
    display: flex;
}

.gor-bot-proactive-bubble:hover {
    border-color: var(--emerald-primary);
}


/* Dual-Mode Calculator Switcher (Forward ROI vs Reverse Target Goals) */
.calc-mode-switcher-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 26px;
}

.calc-mode-switcher {
    display: inline-flex;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 9999px;
    padding: 5px;
    gap: 6px;
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.5);
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
}

.calc-mode-btn {
    background: transparent;
    border: none;
    color: #94a3b8;
    padding: 10px 22px;
    border-radius: 9999px;
    font-size: 0.92rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    gap: 8px;
}

.calc-mode-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.calc-mode-btn.active {
    background: linear-gradient(135deg, var(--gold-bright), #ff9800);
    color: #05070d;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

/* Reverse Mode Platform Grid */
.calc-reverse-platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.calc-platform-cost-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.calc-platform-cost-card:hover, .calc-platform-cost-card.selected {
    border-color: var(--emerald-primary);
    background: rgba(0, 255, 136, 0.06);
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.15);
    transform: translateY(-2px);
}

.calc-platform-cost-card.selected {
    border-width: 2px;
}

.calc-platform-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.calc-platform-budget-val {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--emerald-primary);
    direction: ltr;
    font-variant-numeric: tabular-nums;
    margin-bottom: 4px;
}

.calc-platform-cpl-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* GMB Verified Reviews Badge */
.gmb-badge-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(66, 133, 244, 0.4);
    color: #fff;
    padding: 8px 16px;
    border-radius: 9999px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.15);
}

.gmb-badge-btn:hover {
    background: rgba(66, 133, 244, 0.2);
    border-color: #4285F4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.3);
    color: #fff;
}


/* 19 Authentic Google Reviews Showcase Styles */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 20px;
    width: 100%;
}

.review-card-gmb {
    background: rgba(16, 20, 32, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.review-card-gmb:hover {
    border-color: var(--gold-bright);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.15);
}

.review-card-gmb.hidden-review {
    display: none;
}

.review-card-gmb.hidden-review.show-all {
    display: flex;
    animation: botSlideUp 0.35s ease;
}

.review-author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: #000;
    font-size: 1.05rem;
    flex-shrink: 0;
}


/* Interactive Numeric Typing Input Styling */
.calc-input-wrapper {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    border: 1.5px solid rgba(255, 193, 7, 0.4);
    border-radius: 10px;
    padding: 3px 8px;
    transition: all 0.25s ease;
    box-shadow: inset 0 2px 6px rgba(0,0,0,0.5);
}

.calc-input-wrapper:focus-within {
    border-color: var(--gold-bright);
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 12px rgba(255, 193, 7, 0.3), inset 0 2px 6px rgba(0,0,0,0.5);
}

.calc-input-wrapper.emerald-wrap {
    border-color: rgba(0, 255, 136, 0.4);
}

.calc-input-wrapper.emerald-wrap:focus-within {
    border-color: var(--emerald-primary);
    box-shadow: 0 0 12px rgba(0, 255, 136, 0.3), inset 0 2px 6px rgba(0,0,0,0.5);
}

.calc-currency-symbol, .calc-unit-label {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--gold-bright);
    user-select: none;
}

.calc-input-wrapper.emerald-wrap .calc-unit-label {
    color: var(--emerald-primary);
}

.calc-number-input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 900;
    font-family: inherit;
    font-variant-numeric: tabular-nums;
    width: 95px;
    text-align: center;
    padding: 2px 4px;
    direction: ltr;
}

.calc-number-input.emerald {
    color: var(--emerald-primary);
}

/* Hide native number spinners for clean UI */
.calc-number-input::-webkit-outer-spin-button,
.calc-number-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.calc-number-input {
    -moz-appearance: textfield;
}
