/* ==========================================================================
   Bhaylu Media India - Ultra-Polished Pixel-Perfect Master Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens & Color System
   -------------------------------------------------------------------------- */
:root {
    /* Brand Accent Colors */
    --primary-cyan: #00D2FF;
    --primary-blue: #0072FF;
    --accent-purple: #6366F1;
    --accent-green: #10B981;
    --brand-gradient: linear-gradient(135deg, #00D2FF 0%, #0072FF 50%, #6366F1 100%);
    --gradient-glow: 0 8px 32px rgba(0, 210, 255, 0.25);
    
    /* Default Dark Theme Tokens */
    --bg-main: #090D16;
    --bg-surface: #111827;
    --bg-surface-elevated: #1F2937;
    --bg-card: rgba(17, 24, 39, 0.8);
    --border-color: rgba(255, 255, 255, 0.12);
    --border-hover: rgba(0, 210, 255, 0.45);
    
    --text-main: #F9FAFB;
    --text-muted: #9CA3AF;
    --text-heading: #FFFFFF;
    
    --header-bg: rgba(9, 13, 22, 0.94);
    --card-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    --glass-border: 1px solid rgba(255, 255, 255, 0.12);
    --input-bg: rgba(31, 41, 55, 0.7);
    --input-border: rgba(255, 255, 255, 0.15);
}

/* Light Theme Tokens - High Contrast & Crisp Aesthetics */
[data-theme="light"] {
    --bg-main: #F8FAFC;
    --bg-surface: #FFFFFF;
    --bg-surface-elevated: #F1F5F9;
    --bg-card: #FFFFFF;
    --border-color: #E2E8F0;
    --border-hover: #0072FF;
    
    --text-main: #1E293B;
    --text-muted: #64748B;
    --text-heading: #0F172A;
    
    --header-bg: rgba(255, 255, 255, 0.95);
    --card-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    --glass-border: 1px solid #E2E8F0;
    --input-bg: #F8FAFC;
    --input-border: #CBD5E1;
}

/* --------------------------------------------------------------------------
   2. Reset & Core Typography
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
    overflow-x: hidden;
    width: 100%;
}

p {
    overflow-wrap: break-word;
    word-break: normal;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-heading);
    font-weight: 700;
    line-height: 1.2;
    word-break: normal;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

ul {
    list-style: none;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Universal SVG Icon alignment fix for Lucide icons */
svg.lucide, i[data-lucide] {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: clamp(3.5rem, 6vw, 6rem) 0;
}

/* Typography Utilities */
.gradient-text {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-center {
    text-align: center;
}

/* Section Header */
.section-header {
    max-width: 780px;
    margin: 0 auto clamp(2rem, 4vw, 3.5rem) auto;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(0, 210, 255, 0.1);
    color: var(--primary-cyan);
    border: 1px solid rgba(0, 210, 255, 0.3);
    border-radius: 50px;
    font-size: clamp(0.75rem, 1.5vw, 0.85rem);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section-tag svg, .section-tag i {
    width: 16px;
    height: 16px;
}

.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-description {
    font-size: clamp(0.95rem, 2vw, 1.125rem);
    color: var(--text-muted);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.75rem 1.4rem;
    font-size: 0.925rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
    white-space: nowrap;
}

.btn svg, .btn i {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: var(--brand-gradient);
    color: #FFFFFF;
    box-shadow: 0 4px 20px rgba(0, 114, 255, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 210, 255, 0.5);
}

.btn-secondary {
    background: var(--bg-surface-elevated);
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary-cyan);
    color: var(--primary-cyan);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: #FFFFFF;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-lg {
    padding: clamp(0.85rem, 2vw, 1.1rem) clamp(1.25rem, 3vw, 2.25rem);
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    border-radius: 14px;
}

.btn-full {
    width: 100%;
}

/* --------------------------------------------------------------------------
   3. Header & Navigation (Pixel-Perfect Alignment)
   -------------------------------------------------------------------------- */
.announcement-bar {
    background: linear-gradient(90deg, #0072FF, #6366F1);
    color: #FFFFFF;
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
    padding: 0.45rem 0;
    text-align: center;
    font-weight: 500;
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.badge-pulse {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.announcement-link {
    text-decoration: underline;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--header-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 210, 255, 0.15);
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    gap: 1rem;
}

.brand-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 0.5rem;
}

.logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: clamp(0.75rem, 1.6vw, 1.75rem);
    flex-wrap: nowrap;
}

.nav-link {
    font-weight: 600;
    font-size: 0.925rem;
    color: var(--text-main);
    position: relative;
    padding: 0.4rem 0;
    white-space: nowrap !important;
}

.nav-link svg,
.nav-link i {
    display: none;
}

.mobile-drawer-cta {
    display: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-gradient);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.theme-toggle-btn {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.theme-toggle-btn:hover {
    border-color: var(--primary-cyan);
    color: var(--primary-cyan);
}

[data-theme="dark"] .sun-icon { display: block; }
[data-theme="dark"] .moon-icon { display: none; }
[data-theme="light"] .sun-icon { display: none; }
[data-theme="light"] .moon-icon { display: block; }

.header-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--primary-cyan);
    padding: 0.45rem 0.75rem;
    border-radius: 8px;
    background: rgba(0, 210, 255, 0.08);
    white-space: nowrap;
}

.header-phone-btn:hover {
    background: rgba(0, 210, 255, 0.18);
}

.mobile-toggle {
    display: none;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.mobile-toggle .close-icon { display: none; }

/* --------------------------------------------------------------------------
   4. Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    padding: clamp(3.5rem, 6vw, 5.5rem) 0 clamp(4rem, 8vw, 6.5rem) 0;
    overflow: hidden;
}

.hero-bg-gradients {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

.gradient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.35;
}

.blob-1 {
    top: -10%;
    right: 10%;
    width: clamp(280px, 40vw, 500px);
    height: clamp(280px, 40vw, 500px);
    background: #0072FF;
}

.blob-2 {
    bottom: 0;
    left: -5%;
    width: clamp(250px, 35vw, 450px);
    height: clamp(250px, 35vw, 450px);
    background: #6366F1;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(var(--border-color) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.3;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 1rem;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
    font-weight: 600;
    color: var(--primary-cyan);
    margin-bottom: 1.25rem;
}

.tag-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-cyan);
}

.hero-title {
    font-size: clamp(2.1rem, 4.2vw, 3.6rem);
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.18rem);
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 620px;
    line-height: 1.65;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-trust-bar {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2vw, 2rem);
    padding: 1rem 1.5rem;
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: var(--glass-border);
    border-radius: 16px;
    margin-bottom: 2rem;
    max-width: 100%;
    flex-wrap: wrap;
}

.trust-metric {
    display: flex;
    flex-direction: column;
}

.metric-num {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 800;
    color: var(--primary-cyan);
}

.metric-label {
    font-size: clamp(0.7rem, 1.2vw, 0.8rem);
    color: var(--text-muted);
    font-weight: 600;
}

.trust-divider {
    width: 1px;
    height: 32px;
    background: var(--border-color);
}

.media-press-strip {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.press-label {
    font-size: clamp(0.75rem, 1.2vw, 0.85rem);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 700;
}

.press-logos {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.press-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: clamp(0.75rem, 1.2vw, 0.85rem);
    font-weight: 700;
    color: var(--text-main);
    white-space: nowrap;
}

/* Right Hero Visual Card */
.hero-visual {
    position: relative;
    width: 100%;
}

.glass-hero-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: var(--glass-border);
    border-radius: 24px;
    padding: clamp(1.25rem, 3vw, 2rem);
    box-shadow: var(--card-shadow);
    position: relative;
    border: 1px solid var(--border-hover);
    width: 100%;
}

.card-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.85rem;
    background: rgba(0, 210, 255, 0.1);
    color: var(--primary-cyan);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.live-reach-display {
    background: var(--bg-surface);
    border-radius: 16px;
    padding: 1.25rem;
    border: var(--glass-border);
    margin-bottom: 1.25rem;
}

.reach-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.reach-title {
    font-weight: 700;
    display: block;
    font-size: clamp(0.85rem, 1.5vw, 1rem);
}

.reach-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.live-status {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--accent-green);
    background: rgba(16, 185, 129, 0.1);
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-green);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
}

.reach-chart-visual {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 120px;
    gap: 0.6rem;
    padding-top: 0.75rem;
    border-bottom: 1px dashed var(--border-color);
}

.chart-bar {
    flex: 1;
    height: var(--height);
    background: rgba(0, 114, 255, 0.3);
    border-radius: 6px 6px 0 0;
    position: relative;
    transition: height 0.5s ease;
}

.chart-bar.active {
    background: var(--brand-gradient);
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.5);
}

.chart-bar span {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
}

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--bg-surface);
    border: var(--glass-border);
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    z-index: 10;
}

.badge-top-left {
    top: -15px;
    left: -15px;
}

.badge-bottom-right {
    bottom: -15px;
    right: -15px;
}

.badge-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(0, 210, 255, 0.15);
    color: var(--primary-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-icon.green {
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-green);
}

.badge-text strong {
    display: block;
    font-size: 0.8rem;
}

.badge-text span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.card-footer-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 0.85rem;
    border-top: var(--glass-border);
    flex-wrap: wrap;
    gap: 0.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: clamp(0.75rem, 1.2vw, 0.85rem);
    color: var(--text-muted);
}

.info-item svg, .info-item i {
    width: 16px;
    height: 16px;
    color: var(--primary-cyan);
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   5. About Us Section
   -------------------------------------------------------------------------- */
.about-section {
    background: var(--bg-surface);
    border-top: var(--glass-border);
    border-bottom: var(--glass-border);
}

.about-overview-card {
    background: var(--bg-card);
    border: var(--glass-border);
    border-radius: 20px;
    padding: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 2.5rem;
    box-shadow: var(--card-shadow);
    position: relative;
    border-left: 4px solid var(--primary-cyan);
}

.about-text-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-text-content p {
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    color: var(--text-main);
    line-height: 1.75;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 1.5rem;
}

.about-card {
    background: var(--bg-main);
    border: var(--glass-border);
    border-radius: 20px;
    padding: clamp(1.5rem, 3vw, 2.25rem);
    transition: all 0.3s ease;
}

.about-card.highlight-card {
    background: linear-gradient(145deg, var(--bg-surface-elevated), var(--bg-main));
    border-color: var(--border-hover);
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow);
    border-color: var(--primary-cyan);
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--brand-gradient);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.about-card h3 {
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    margin-bottom: 0.85rem;
}

.about-card p {
    color: var(--text-muted);
    font-size: clamp(0.875rem, 1.5vw, 0.95rem);
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   6. Why Choose Us Section
   -------------------------------------------------------------------------- */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--bg-card);
    border: var(--glass-border);
    border-radius: 20px;
    padding: clamp(1.5rem, 3vw, 2rem);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-cyan);
    box-shadow: var(--gradient-glow);
}

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 210, 255, 0.1);
    color: var(--primary-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.15rem;
}

.feature-card h3 {
    font-size: clamp(1.1rem, 1.8vw, 1.25rem);
    margin-bottom: 0.65rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: clamp(0.85rem, 1.4vw, 0.95rem);
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   7. Services Section (3 x 4 Grid Layout)
   -------------------------------------------------------------------------- */
.services-section {
    background: var(--bg-surface);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--bg-main);
    border: var(--glass-border);
    border-radius: 20px;
    padding: clamp(1.5rem, 2.5vw, 2rem);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-cyan);
    box-shadow: var(--card-shadow);
}

.service-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.service-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(0, 114, 255, 0.1);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-number {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--border-color);
}

.service-card h3 {
    font-size: clamp(1.15rem, 1.8vw, 1.3rem);
    margin-bottom: 1rem;
}

.service-list {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: clamp(0.825rem, 1.3vw, 0.9rem);
    color: var(--text-muted);
}

.service-list li svg, .service-list li i {
    width: 16px;
    height: 16px;
    color: var(--accent-green);
    flex-shrink: 0;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--primary-cyan);
    margin-top: auto;
}

.service-cta:hover {
    gap: 0.75rem;
}

/* --------------------------------------------------------------------------
   8. Industries We Serve
   -------------------------------------------------------------------------- */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 140px), 1fr));
    gap: 1rem;
}

.industry-card {
    background: var(--bg-card);
    border: var(--glass-border);
    border-radius: 16px;
    padding: 1.25rem 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-align: center;
    transition: all 0.3s ease;
}

.industry-card svg, .industry-card i {
    width: 28px;
    height: 28px;
    color: var(--primary-cyan);
    flex-shrink: 0;
}

.industry-card span {
    font-weight: 700;
    font-size: clamp(0.825rem, 1.2vw, 0.9rem);
    white-space: nowrap;
}

.industry-card:hover {
    background: var(--brand-gradient);
    color: #FFFFFF;
    transform: translateY(-3px);
}

.industry-card:hover svg, .industry-card:hover i {
    color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   9. Process Timeline
   -------------------------------------------------------------------------- */
.process-section {
    background: var(--bg-surface);
}

.process-timeline {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 0.75rem;
}

.process-step {
    flex: 1;
    background: var(--bg-main);
    border: var(--glass-border);
    border-radius: 18px;
    padding: 1.75rem 1rem 1.25rem 1rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-step:hover {
    transform: translateY(-4px);
    border-color: var(--primary-cyan);
}

.step-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-gradient);
    color: #FFFFFF;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 0.2rem 0.65rem;
    border-radius: 20px;
}

.step-icon {
    width: 42px;
    height: 42px;
    margin: 0.5rem auto 0.85rem auto;
    border-radius: 12px;
    background: rgba(0, 210, 255, 0.1);
    color: var(--primary-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.process-step h3 {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    margin-bottom: 0.4rem;
}

.process-step p {
    font-size: clamp(0.775rem, 1.2vw, 0.825rem);
    color: var(--text-muted);
}

.process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   10. Campaign Highlights / Stats Counter Banner
   -------------------------------------------------------------------------- */
.stats-banner-section {
    padding: clamp(3rem, 5vw, 4rem) 0;
    background: linear-gradient(135deg, rgba(0,210,255,0.08) 0%, rgba(99,102,241,0.08) 100%);
    border-top: var(--glass-border);
    border-bottom: var(--glass-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 160px), 1fr));
    gap: 1.5rem;
    text-align: center;
}

.stat-card {
    padding: 1rem;
}

.stat-icon {
    width: 38px;
    height: 38px;
    margin: 0 auto 0.5rem auto;
    color: var(--primary-cyan);
}

.stat-number, .stat-number-text {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 900;
    display: inline-block;
    color: var(--text-heading);
}

.stat-plus {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--primary-cyan);
}

.stat-label {
    font-size: clamp(0.8rem, 1.3vw, 0.9rem);
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 0.2rem;
}

/* --------------------------------------------------------------------------
   11. Case Studies Section
   -------------------------------------------------------------------------- */
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 1.5rem;
}

.case-card {
    background: var(--bg-card);
    border: var(--glass-border);
    border-radius: 20px;
    padding: clamp(1.5rem, 3vw, 2rem);
    transition: all 0.3s ease;
}

.case-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-cyan);
    box-shadow: var(--card-shadow);
}

.case-category {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.75rem;
    background: rgba(0, 210, 255, 0.1);
    color: var(--primary-cyan);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.case-card h3 {
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    margin-bottom: 1.25rem;
}

.case-detail-block {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.case-row strong {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 0.15rem;
}

.case-row p {
    font-size: clamp(0.875rem, 1.4vw, 0.95rem);
    color: var(--text-main);
}

.result-row {
    margin-top: 0.25rem;
    padding-top: 0.85rem;
    border-top: var(--glass-border);
}

.result-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--accent-green);
    background: rgba(16, 185, 129, 0.1);
    padding: 0.45rem 0.75rem;
    border-radius: 10px;
    font-size: clamp(0.8rem, 1.3vw, 0.875rem);
}

/* --------------------------------------------------------------------------
   12. Testimonials Carousel
   -------------------------------------------------------------------------- */
.testimonials-section {
    background: var(--bg-surface);
}

.testimonial-carousel-wrapper {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial-card {
    min-width: 100%;
    background: var(--bg-main);
    border: var(--glass-border);
    border-radius: 24px;
    padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 4vw, 2.5rem);
    box-shadow: var(--card-shadow);
    text-align: center;
}

.stars {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.testimonial-quote {
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    line-height: 1.6;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 1.75rem;
}

.client-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
}

.client-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--brand-gradient);
    color: #FFFFFF;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.client-info h4 {
    font-size: 1rem;
    margin-bottom: 0.1rem;
}

.client-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 1.75rem;
}

.carousel-btn {
    background: var(--bg-surface-elevated);
    border: var(--glass-border);
    color: var(--text-main);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.carousel-btn:hover {
    border-color: var(--primary-cyan);
    color: var(--primary-cyan);
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-cyan);
    width: 22px;
    border-radius: 10px;
}

/* --------------------------------------------------------------------------
   13. FAQs Section
   -------------------------------------------------------------------------- */
.faq-accordion {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.faq-item {
    background: var(--bg-card);
    border: var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    padding: clamp(1rem, 2.5vw, 1.35rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: none;
    border: none;
    color: var(--text-heading);
    font-family: 'Outfit', sans-serif;
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}

.faq-icon {
    transition: transform 0.3s ease;
    color: var(--primary-cyan);
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 clamp(1rem, 2.5vw, 1.35rem);
    color: var(--text-muted);
    font-size: clamp(0.875rem, 1.5vw, 0.95rem);
    line-height: 1.6;
}

.faq-item.active {
    border-color: var(--primary-cyan);
}

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

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 clamp(1rem, 2.5vw, 1.35rem) clamp(1rem, 2.5vw, 1.35rem) clamp(1rem, 2.5vw, 1.35rem);
}

/* --------------------------------------------------------------------------
   14. Final CTA Banner
   -------------------------------------------------------------------------- */
.final-cta-section {
    padding: clamp(3rem, 6vw, 5rem) 0;
}

.cta-banner-card {
    background: var(--brand-gradient);
    border-radius: clamp(20px, 4vw, 32px);
    padding: clamp(2.5rem, 6vw, 4rem) clamp(1.25rem, 4vw, 2rem);
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 114, 255, 0.4);
}

.cta-banner-content {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-size: clamp(0.75rem, 1.4vw, 0.85rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
}

.cta-banner-card h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.cta-banner-card p {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    opacity: 0.95;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   15. Contact Section & Lead Form (Clean Pixel-Perfect Input Styling)
   -------------------------------------------------------------------------- */
.contact-section {
    background: var(--bg-surface);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(2rem, 4vw, 3rem);
    align-items: start;
}

.contact-info-card h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 0.85rem;
}

.contact-info-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-block {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(0, 210, 255, 0.1);
    color: var(--primary-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg, .info-icon i {
    width: 22px;
    height: 22px;
}

.info-block strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.info-block a, .info-block p {
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    font-weight: 700;
    color: var(--text-heading);
    margin: 0;
}

.contact-trust-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.15rem;
    background: var(--bg-main);
    border: var(--glass-border);
    border-radius: 12px;
    font-size: 0.825rem;
    color: var(--text-muted);
}

.contact-trust-box svg, .contact-trust-box i {
    color: var(--accent-green);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Lead Form Card */
.contact-form-card {
    background: var(--bg-card);
    border: var(--glass-border);
    border-radius: 24px;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    box-shadow: var(--card-shadow);
    width: 100%;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-heading);
}

/* Input Wrapper & Icon Absolute Positioning Fix */
.input-wrapper {
    position: relative;
    width: 100%;
    display: block;
}

.input-wrapper svg,
.input-wrapper i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    width: 18px;
    height: 18px;
    pointer-events: none;
    z-index: 2;
}

.textarea-wrapper svg,
.textarea-wrapper i {
    top: 1.15rem;
    transform: none;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    padding: 0.85rem 1rem 0.85rem 2.85rem;
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 12px;
    color: var(--text-main);
    font-family: inherit;
    font-size: 0.925rem;
    transition: all 0.2s ease;
    display: block;
    appearance: none;
    -webkit-appearance: none;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    outline: none;
    border-color: var(--primary-cyan);
    box-shadow: 0 0 0 3px rgba(0, 210, 255, 0.2);
}

.select-wrapper::after {
    content: '▾';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
    font-size: 1rem;
}

.textarea-wrapper textarea {
    padding-top: 0.85rem;
    resize: vertical;
    min-height: 95px;
}

/* Spinner */
.spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #FFFFFF;
    animation: spin 0.8s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.form-status {
    font-size: 0.875rem;
    font-weight: 700;
    text-align: center;
    padding: 0.5rem;
    border-radius: 8px;
}

.form-status.success {
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-green);
}

.form-status.error {
    background: rgba(239, 68, 68, 0.15);
    color: #EF4444;
}

/* --------------------------------------------------------------------------
   16. Footer
   -------------------------------------------------------------------------- */
.site-footer {
    background: var(--bg-main);
    border-top: var(--glass-border);
    padding: clamp(3rem, 5vw, 4.5rem) 0 2rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.8fr 0.8fr 1.1fr;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 3rem;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 1rem 0 1.25rem 0;
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

[data-theme="dark"] .logo-img {
    mix-blend-mode: screen;
}

[data-theme="light"] .logo-img {
    mix-blend-mode: multiply;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    transition: all 0.3s ease;
}

.footer-socials a svg,
.footer-socials a svg.social-svg {
    width: 20px !important;
    height: 20px !important;
    stroke: var(--text-main) !important;
    color: var(--text-main) !important;
    display: block !important;
    transition: all 0.2s ease;
}

.footer-socials a:hover {
    background: var(--brand-gradient);
    border-color: var(--primary-cyan);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 210, 255, 0.4);
}

.footer-socials a:hover svg,
.footer-socials a:hover svg.social-svg {
    stroke: #FFFFFF !important;
    color: #FFFFFF !important;
}

.footer-col h4 {
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-col ul a {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-col ul a:hover {
    color: var(--primary-cyan);
}

.contact-links li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.contact-links li svg, .contact-links li i {
    color: var(--primary-cyan);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.75rem;
    border-top: var(--glass-border);
    font-size: 0.825rem;
    color: var(--text-muted);
}

.legal-links {
    display: flex;
    gap: 1rem;
}

/* --------------------------------------------------------------------------
   17. Modal Popup
   -------------------------------------------------------------------------- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.modal-card {
    background: var(--bg-card);
    border: var(--glass-border);
    border-radius: 24px;
    max-width: 480px;
    width: 100%;
    padding: clamp(1.5rem, 4vw, 2.25rem);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-card {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--bg-surface-elevated);
    border: var(--glass-border);
    color: var(--text-main);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.modal-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary-cyan);
    margin-bottom: 0.4rem;
}

.modal-header h3 {
    font-size: 1.35rem;
    margin-bottom: 0.4rem;
}

.modal-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

/* --------------------------------------------------------------------------
   18. Comprehensive Media Queries (Responsive Breakpoints)
   -------------------------------------------------------------------------- */

/* Medium Desktops & Laptops (1025px - 1200px) */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 0.85rem;
    }
    .nav-link {
        font-size: 0.85rem;
    }
    .header-phone-btn {
        display: none;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .footer-col.brand-col {
        grid-column: span 3;
    }
}

/* Mobile Navigation & Screen Breakpoint (max-width: 1024px) */
@media (max-width: 1024px) {
    .header-container {
        justify-content: space-between;
        padding: 0 1rem;
        gap: 0.5rem;
    }

    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        order: -1;
        margin-right: 0.4rem;
        flex-shrink: 0;
    }

    .brand-logo {
        margin-right: auto;
    }

    .logo-img {
        height: 34px;
    }

    .header-actions {
        gap: 0.4rem;
        flex-shrink: 0;
    }

    .header-cta-btn {
        padding: 0.45rem 0.75rem;
        font-size: 0.8rem;
    }

    .nav-menu {
        display: none;
    }

    .nav-menu.active {
        display: flex;
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        background: var(--bg-surface);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1.25rem 1rem;
        border-bottom: var(--glass-border);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
        z-index: 999;
        gap: 0.4rem;
        max-height: calc(100vh - 76px);
        overflow-y: auto;
    }

    .nav-menu.active .nav-link {
        display: flex;
        align-items: center;
        gap: 0.85rem;
        font-size: 1rem;
        font-weight: 700;
        padding: 0.75rem 1rem;
        width: 100%;
        text-align: left;
        border-radius: 12px;
        background: var(--bg-main);
        border: var(--glass-border);
        color: var(--text-heading);
    }

    .nav-menu.active .nav-link svg,
    .nav-menu.active .nav-link i {
        display: inline-block !important;
        width: 18px !important;
        height: 18px !important;
        color: var(--primary-cyan) !important;
        flex-shrink: 0;
    }

    .mobile-drawer-cta {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 0.75rem;
        padding-top: 1rem;
        border-top: var(--glass-border);
    }

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

    .hero-tag {
        margin: 0 auto 1.25rem auto;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-trust-bar {
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }

    .media-press-strip {
        align-items: center;
    }

    .press-logos {
        justify-content: center;
    }

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

    .process-timeline {
        flex-direction: column;
        gap: 1.25rem;
    }

    .process-step {
        width: 100%;
        padding: 1.5rem 1.25rem;
    }

    .process-arrow {
        transform: rotate(90deg);
        margin: -0.25rem auto;
    }
}

/* Mobile Devices & Tablets (320px - 768px) */
@media (max-width: 768px) {
    .header-container {
        height: 68px;
    }

    .nav-menu.active {
        top: 68px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .footer-col.brand-col {
        grid-column: span 2;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .floating-badge {
        position: static;
        margin-top: 1rem;
        width: 100%;
        box-shadow: none;
    }

    .glass-hero-card {
        padding: 1.25rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Extra Small Phones (320px - 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .btn {
        width: 100%;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .hero-trust-bar {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
        text-align: center;
    }

    .trust-divider {
        width: 60%;
        height: 1px;
    }

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

    .footer-col.brand-col {
        grid-column: span 1;
    }

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

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --------------------------------------------------------------------------
   19. Right Side-Slide Legal Drawer
   -------------------------------------------------------------------------- */
.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(8px);
    z-index: 2100;
    display: flex;
    justify-content: flex-end;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.drawer-panel {
    background: var(--bg-surface);
    border-left: var(--glass-border);
    width: 100%;
    max-width: 580px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.drawer-overlay.active .drawer-panel {
    transform: translateX(0);
}

.drawer-header {
    padding: 1.5rem 2rem;
    border-bottom: var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-main);
}

.drawer-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary-cyan);
    margin-bottom: 0.3rem;
    text-transform: uppercase;
}

.drawer-header h3 {
    font-size: 1.5rem;
    color: var(--text-heading);
}

.drawer-close {
    background: var(--bg-surface-elevated);
    border: var(--glass-border);
    color: var(--text-main);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.drawer-close:hover {
    border-color: var(--primary-cyan);
    color: var(--primary-cyan);
}

.drawer-body {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    line-height: 1.7;
    color: var(--text-main);
}

.drawer-body h4 {
    font-size: 1.15rem;
    color: var(--primary-cyan);
    margin-bottom: 0.5rem;
}

.drawer-body p, .drawer-body ul {
    font-size: 0.925rem;
    color: var(--text-muted);
}

.drawer-body ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-left: 1.25rem;
    list-style-type: disc;
}

.drawer-footer {
    padding: 1.25rem 2rem;
    border-top: var(--glass-border);
    background: var(--bg-main);
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
}

.drawer-footer a {
    color: var(--primary-cyan);
    font-weight: 700;
}
