/* =============================================================================
   Gupta Associate Premium Theme CSS
   Design System: Dark Navy Glassmorphism & Accent Gold/Blue Colors
   Typography: Outfit (Headings) & Inter (Body)
   ============================================================================= */

:root {
    /* ─── Premium Professional Light Theme Variables (Ice Slate / Navy) ─── */
    --bg-body: #f8fafc;
    --bg-body-gradient: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
    --bg-panel: rgba(255, 255, 255, 0.85);
    --bg-panel-solid: #ffffff;
    --bg-panel-hover: #f1f5f9;
    --bg-input: #f1f5f9;
    --bg-topbar: #f1f5f9;
    
    --color-primary: #1e40af; /* Corporate Navy */
    --color-primary-rgb: 30, 64, 175;
    --color-secondary: #2563eb;
    --color-gold: #d97706;
    --color-gold-dark: #b45309;
    
    /* Category Badges (Professional Muted Palettes) */
    --color-green: #10b981;
    --color-purple: #8b5cf6;
    --color-orange: #f97316;
    --color-blue: #3b82f6;
    
    --color-text: #0f172a;
    --color-text-muted: #475569;
    --color-text-dark: #0f172a;
    
    --border-color: rgba(15, 23, 42, 0.08);
    --border-color-focus: rgba(30, 64, 175, 0.4);
    --backdrop-blur: blur(24px);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    --shadow: 0 12px 40px 0 rgba(148, 163, 184, 0.12);
    --shadow-inset: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 24px;
}

/* ─── Premium Professional Dark Theme Hookups (Dark Slate / Indigo) ─── */
body.theme-dark-navy {
    --bg-body: #0b0f17;
    --bg-body-gradient: linear-gradient(180deg, #0f172a 0%, #070a10 100%);
    --bg-panel: rgba(30, 41, 59, 0.55);
    --bg-panel-solid: #1e293b;
    --bg-panel-hover: rgba(30, 41, 59, 0.8);
    --bg-input: #0f172a;
    
    --color-primary: #3b82f6; /* Professional Royal Blue */
    --color-primary-rgb: 59, 130, 246;
    --color-secondary: #6366f1; /* Premium Indigo */
    --color-gold: #f59e0b; /* Sophisticated Amber Gold */
    --color-gold-dark: #d97706;
    
    --color-text: #f8fafc;
    --color-text-muted: #94a3b8;
    --bg-topbar: rgba(5, 10, 20, 0.8);
    
    --border-color: rgba(255, 255, 255, 0.06);
    --border-color-focus: rgba(59, 130, 246, 0.4);
    --shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.5);
}

/* =============================================================================
   Base Styles
   ============================================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-body);
    background-image: var(--bg-body-gradient);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
}

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

/* Helper Text Classes */
.text-green { color: var(--color-green) !important; }
.text-gold { color: var(--color-gold) !important; }
.text-primary { color: var(--color-primary) !important; }
.text-muted { color: var(--color-text-muted) !important; }
.text-white { color: #ffffff !important; }
.margin-0 { margin: 0 !important; }
.cursor-ptr { cursor: pointer !important; }

/* =============================================================================
   Header & Navigation
   ============================================================================= */
#top-bar {
    background: var(--bg-topbar);
    backdrop-filter: var(--backdrop-blur);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
    font-size: 0.85rem;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.top-contacts-left {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.top-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-muted);
}

.top-contact-link i {
    color: var(--color-primary);
}

.top-contact-link:hover {
    color: var(--color-text);
}

.top-socials {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.social-icon:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.social-icon.fb:hover { background: #3b5998; }
.social-icon.wa:hover { background: #25d366; }
.social-icon.yt:hover { background: #ff0000; }
.social-icon.insta:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }

#main-nav {
    background: var(--bg-panel);
    backdrop-filter: var(--backdrop-blur);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

#main-nav .container {
    max-width: 100%;
    padding: 0 40px;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-gold) 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.3rem;
}

.logo-meta {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.65rem;
    line-height: 1;
    letter-spacing: -0.01em;
}

.logo-sub {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-gold);
    letter-spacing: 0.08em;
    margin-top: 4px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-item {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.03em;
    color: var(--color-text-muted);
}

.nav-item:hover, .nav-item.active {
    color: var(--color-primary);
}

/* Dropdown styling */
.nav-dropdown {
    position: relative;
}

.dropdown-chevron {
    font-size: 0.65rem;
    margin-left: 2px;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-panel-solid);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    min-width: 220px;
    box-shadow: var(--shadow);
    padding: 8px 0;
    margin-top: 10px;
    z-index: 200;
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    width: 100%;
    height: 12px;
    background: transparent;
}

.dropdown-content a {
    display: block;
    padding: 10px 20px;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.dropdown-content a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-primary);
}

.nav-dropdown:hover .dropdown-content {
    display: block;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--color-text);
    font-size: 1.3rem;
    cursor: pointer;
}

/* =============================================================================
   Buttons
   ============================================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--color-primary);
    color: #ffffff;
}

.btn-primary:hover {
    background: var(--color-secondary);
    box-shadow: 0 0 16px rgba(14, 165, 233, 0.4);
}

.btn-gold {
    background: var(--color-gold);
    color: var(--color-text-dark);
}

.btn-gold:hover {
    background: var(--color-gold-dark);
    box-shadow: 0 0 16px rgba(245, 158, 11, 0.4);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--color-text-muted);
    color: var(--color-text);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-text);
}

.btn-success {
    background: var(--color-green);
    color: #ffffff;
}

.btn-success:hover {
    background: #059669;
    box-shadow: 0 0 16px rgba(16, 185, 129, 0.4);
}

.btn-whatsapp {
    background: #25d366;
    color: #ffffff;
}

.btn-whatsapp:hover {
    background: #128c7e;
    box-shadow: 0 0 16px rgba(37, 211, 102, 0.4);
}

.btn-block {
    width: 100%;
}

.btn-lg {
    padding: 12px 28px;
    font-size: 0.95rem;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 0.75rem;
}

/* Google Sign-in button */
.btn-google-login {
    background: #ffffff;
    color: #334155;
    border: 1px solid #cbd5e1;
    font-weight: 600;
}

.btn-google-login:hover {
    background: #f8fafc;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-google-login i {
    color: #ea4335;
}

/* User Card in Nav */
.user-profile-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 6px 12px;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
}

.user-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
}

.user-name {
    font-size: 0.8rem;
    font-weight: 600;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-panel-solid);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    min-width: 200px;
    margin-top: 10px;
    box-shadow: var(--shadow);
    display: none;
    padding: 8px 0;
    z-index: 110;
}

.user-profile-badge:hover .user-dropdown {
    display: block;
}

.user-dropdown-item {
    display: block;
    padding: 10px 20px;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.user-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-primary);
}

/* =============================================================================
   Hero Section
   ============================================================================= */
#hero-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

#hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.25);
    border-radius: 100px;
    color: var(--color-primary);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

#hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--color-text) 50%, var(--color-text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#hero-desc {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 36px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 36px;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

.hero-stat-item h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-primary);
}

.hero-stat-item p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Hero Panel Visual */
.visual-panel {
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    backdrop-filter: var(--backdrop-blur);
    padding: 24px;
    position: relative;
}

.visual-panel-header {
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
    margin-bottom: 20px;
}

.window-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.window-dot.red { background: #ef4444; }
.window-dot.yellow { background: #eab308; }
.window-dot.green { background: #22c55e; }

.window-title {
    font-size: 0.75rem;
    font-family: monospace;
    color: var(--color-text-muted);
    margin-left: 8px;
}

.mockup-chart-row {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    height: 150px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.chart-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40px;
}

.chart-bar {
    width: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px 4px 0 0;
    transition: height 1s ease;
}

.chart-bar.highlight {
    background: linear-gradient(to top, var(--color-primary), var(--color-secondary));
    box-shadow: 0 0 12px rgba(14, 165, 233, 0.4);
}

.chart-lbl {
    font-size: 0.65rem;
    color: var(--color-text-muted);
    margin-top: 6px;
    font-weight: 600;
}

.mockup-log {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(5, 10, 20, 0.3);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-family: monospace;
    margin-bottom: 8px;
}

.log-tag {
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
}

.log-tag.tag-success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-green);
}

.log-tag.tag-info {
    background: rgba(14, 165, 233, 0.1);
    color: var(--color-primary);
}

.log-text {
    color: var(--color-text);
}

/* =============================================================================
   Main Layout: Showcase + Services Grid
   ============================================================================= */
.main-content-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    padding-top: 40px;
    padding-bottom: 80px;
}

.content-left {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.section-header {
    margin-bottom: 32px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.section-header p {
    color: var(--color-text-muted);
}

/* =============================================================================
   Add-ons Catalog Cards Grid
   ============================================================================= */
.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.addon-card {
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.addon-card:hover {
    transform: translateY(-4px);
    border-color: rgba(14, 165, 233, 0.25);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.addon-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.addon-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

/* Number Badge on Card */
.addon-badge-number {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    color: #ffffff;
    text-transform: uppercase;
}

/* Color Categories for Badges/Icons */
.b-green {
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-green);
    border: 1px solid rgba(16, 185, 129, 0.2);
}
.b-green.addon-badge-number { background: var(--color-green); }

.b-purple {
    background: rgba(139, 92, 246, 0.1);
    color: var(--color-purple);
    border: 1px solid rgba(139, 92, 246, 0.2);
}
.b-purple.addon-badge-number { background: var(--color-purple); }

.b-orange {
    background: rgba(249, 115, 22, 0.1);
    color: var(--color-orange);
    border: 1px solid rgba(249, 115, 22, 0.2);
}
.b-orange.addon-badge-number { background: var(--color-orange); }

.b-blue {
    background: rgba(59, 130, 246, 0.1);
    color: var(--color-blue);
    border: 1px solid rgba(59, 130, 246, 0.2);
}
.b-blue.addon-badge-number { background: var(--color-blue); }

.b-gold {
    background: rgba(245, 158, 11, 0.1);
    color: var(--color-gold);
    border: 1px solid rgba(245, 158, 11, 0.2);
}
.b-gold.addon-badge-number { background: var(--color-gold); }

.addon-card-title {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--color-text);
}

.addon-card-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Card Slideshow/Visual panel */
.addon-slideshow-container {
    width: 100%;
    height: 120px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.addon-slides-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease;
}

.addon-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.addon-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 12px;
}

.addon-slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    opacity: 0;
    transition: var(--transition-fast);
}

.addon-slideshow-container:hover .addon-slide-arrow {
    opacity: 1;
}

.addon-slide-arrow.left { left: 8px; }
.addon-slide-arrow.right { right: 8px; }

.addon-slide-dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
}

.addon-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.addon-dot.active {
    background: var(--color-primary);
}

.addon-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
    margin-top: auto;
}

.addon-card-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-gold);
}

.addon-card-actions {
    display: flex;
    gap: 8px;
}

/* Spinner for Loader */
.loading-spinner-container {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    color: var(--color-text-muted);
    gap: 16px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.05);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 1s infinite linear;
}

/* =============================================================================
   Services Sidebar (Right Panel)
   ============================================================================= */
.services-sidebar {
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow);
    align-self: start;
    position: sticky;
    top: 80px;
}

.sidebar-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
    margin-bottom: 24px;
}

.sidebar-header h3 {
    font-size: 1.25rem;
    font-weight: 800;
}

.sidebar-header p {
    font-size: 0.8rem;
    color: var(--color-gold);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-top: 2px;
}

.sidebar-services-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 28px;
}

.service-item {
    display: flex;
    gap: 16px;
}

.service-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(14, 165, 233, 0.08);
    border: 1px solid rgba(14, 165, 233, 0.15);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.service-body h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--color-text);
}

.service-body p {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

.sidebar-cta-card {
    background: rgba(0, 0, 0, 0.2);
    border: 1px dashed var(--border-color);
    border-radius: var(--radius-sm);
    padding: 16px;
    text-align: center;
}

.sidebar-cta-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.sidebar-cta-card p {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

/* =============================================================================
   Stats Ribbon
   ============================================================================= */
#stats-ribbon {
    background: rgba(5, 10, 20, 0.5);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    text-align: center;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-box i {
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    font-weight: 600;
}

/* =============================================================================
   About & Direct Contact Sections
   ============================================================================= */
#about-section {
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
}

.about-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 40px;
}

.about-info h3, .about-why h3, .about-contact h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
}

.about-info h3::after, .about-why h3::after, .about-contact h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--color-gold);
}

.about-info p {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

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

.why-list li {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-list li i {
    font-size: 0.9rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 0.88rem;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-details i {
    color: var(--color-primary);
}

/* =============================================================================
   Footer Layout
   ============================================================================= */
#main-footer {
    background: #040810;
    border-top: 1px solid var(--border-color);
    padding-top: 60px;
    color: #f8fafc;
}

#main-footer .footer-brand p,
#main-footer .footer-links a,
#main-footer .footer-products a,
#main-footer .footer-bottom,
#main-footer .footer-bottom-links a {
    color: #94a3b8;
}

#main-footer .footer-links a:hover,
#main-footer .footer-products a:hover,
#main-footer .footer-bottom-links a:hover {
    color: var(--color-primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 16px;
    max-width: 320px;
}

.footer-links h4, .footer-products h4, .footer-socials-col h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-links ul, .footer-products ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a, .footer-products a {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.footer-links a:hover, .footer-products a:hover {
    color: var(--color-primary);
}

.social-circles-row {
    display: flex;
    gap: 12px;
}

.social-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.social-circle:hover {
    background: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 24px 0;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.footer-bottom-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a:hover {
    color: var(--color-primary);
}

/* =============================================================================
   Interactive Modals Overlays (Calculator, Purchase QR)
   ============================================================================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 7, 18, 0.8);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 200;
}

.modal-card {
    background: var(--bg-panel-solid);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: modalIn 0.3s ease-out;
}

.modal-card.max-width-720 { max-width: 720px; }
.modal-card.max-width-600 { max-width: 600px; }
.modal-card.max-width-500 { max-width: 500px; }

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    font-size: 1.2rem;
    font-weight: 800;
}

.modal-close-btn {
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    font-size: 1.3rem;
    cursor: pointer;
}

.modal-close-btn:hover {
    color: #ffffff;
}

.modal-body-content {
    padding: 24px;
    overflow-y: auto;
}

/* Calculator Modal Layout Columns */
.calculator-modal-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
}

.ctrl-group {
    margin-bottom: 24px;
}

.ctrl-lbl {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 10px;
}

/* Range input styling */
.calc-slider {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 5px;
    outline: none;
    -webkit-appearance: none;
}

.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--color-primary);
    cursor: pointer;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--color-text-muted);
    margin-top: 6px;
}

/* Quantity counter */
.qty-counter-input {
    display: inline-flex;
    align-items: center;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.qty-btn {
    background: transparent;
    border: none;
    color: var(--color-text);
    width: 36px;
    height: 36px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
}

.qty-counter-input input {
    background: transparent;
    border: none;
    color: var(--color-text);
    width: 50px;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 700;
}

.helper-note {
    display: block;
    font-size: 0.72rem;
    color: var(--color-text-muted);
    margin-top: 6px;
}

.checkbox-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.calc-check {
    width: 16px;
    height: 16px;
}

.addons-grid-checkboxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.addon-check-lbl {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
}

/* Right side total box */
.calc-results-side {
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.calc-badge {
    font-size: 0.7rem;
    font-weight: 700;
    background: rgba(14, 165, 233, 0.1);
    color: var(--color-primary);
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 12px;
}

.calc-total-amount {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--color-gold);
    line-height: 1;
}

.calc-terms {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.calc-breakdown-details {
    width: 100%;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
    margin-bottom: 24px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.receipt-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
}

.receipt-item span:first-child {
    color: var(--color-text-muted);
}

.receipt-item span:last-child {
    font-weight: 700;
}

/* =============================================================================
   Purchase Payment Modal Layout
   ============================================================================= */
.purchase-modal-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 28px;
}

.payment-instructions-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--bg-input);
    border-radius: var(--radius-md);
    padding: 20px;
}

.qr-container {
    background: #ffffff;
    padding: 10px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    width: 180px;
    height: 180px;
}

.qr-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.payment-details-box {
    margin-bottom: 12px;
}

.amount-to-pay-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

.payment-upi-id {
    font-family: monospace;
    font-size: 0.85rem;
    color: var(--color-primary);
    margin-top: 4px;
}

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

.purchase-details-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

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

.form-control {
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    color: var(--color-text);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.88rem;
    outline: none;
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 8px rgba(14, 165, 233, 0.2);
}

/* =============================================================================
   Full Screen Add-on Detail Overlay Page
   ============================================================================= */
.addon-detail-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-body);
    background-image: var(--bg-body-gradient);
    z-index: 150;
    overflow-y: auto;
    animation: slideUp 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.detail-header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-panel);
    backdrop-filter: var(--backdrop-blur);
    position: sticky;
    top: 0;
    z-index: 10;
}

.detail-back-button {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--color-text);
    padding: 8px 18px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    cursor: pointer;
    font-size: 0.8rem;
    transition: var(--transition-fast);
}

.detail-back-button:hover {
    background: var(--bg-panel-hover);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.detail-top-branding {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--color-gold);
    letter-spacing: 0.05em;
}

.detail-content-container {
    padding-top: 40px;
    padding-bottom: 80px;
}

.detail-grid-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
}

/* Slideshow Container */
.detail-visual-pane {
    position: sticky;
    top: 100px;
    align-self: start;
}

.detail-slideshow-container {
    width: 100%;
    height: 380px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.detail-slides-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease;
}

.detail-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-slide img {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.detail-slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-slide-arrow.left { left: 16px; }
.detail-slide-arrow.right { right: 16px; }

.detail-slide-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.detail-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.detail-dot.active {
    background: var(--color-primary);
}

/* Detail Text and Tabs */
.detail-text-pane {
    display: flex;
    flex-direction: column;
}

.detail-badge {
    align-self: start;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-primary);
    background: rgba(14, 165, 233, 0.1);
    padding: 4px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.detail-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.detail-meta-row {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.detail-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-tabs {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 24px;
    gap: 24px;
}

.detail-tab-btn {
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 10px 0;
    cursor: pointer;
    position: relative;
}

.detail-tab-btn.active {
    color: var(--color-primary);
}

.detail-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-primary);
}

.detail-tab-content {
    display: none;
}

.detail-tab-content.active {
    display: block;
}

.detail-rich-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 28px;
}

.detail-rich-description p {
    margin-bottom: 20px;
}

.detail-rich-description h5 {
    color: var(--color-text);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.detail-bullet-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.detail-bullet-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
}

.detail-bullet-list li i {
    color: var(--color-primary);
    margin-top: 4px;
}

.detail-action-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
    margin-top: 24px;
    flex-wrap: wrap;
    gap: 20px;
}

.addon-detail-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-gold);
    font-family: var(--font-heading);
}

.addon-detail-actions-row {
    display: flex;
    gap: 12px;
}

/* =============================================================================
   Simulation Workspace Sandbox Styles
   ============================================================================= */
.detail-sim-box {
    background: var(--bg-panel-solid);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    min-height: 280px;
}

.simulation-subtitle {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

/* Trading Analyzer simulation */
.preview-panel {
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    color: var(--color-text);
    border-radius: var(--radius-sm);
    padding: 16px;
    font-family: monospace;
    font-size: 0.8rem;
}

.preview-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 8px;
    margin-bottom: 12px;
    font-weight: bold;
    color: var(--color-primary);
}

.t-table-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.t-table-dr, .t-table-cr {
    display: flex;
    flex-direction: column;
}

.side-header {
    font-weight: bold;
    padding-bottom: 6px;
    margin-bottom: 8px;
    border-bottom: 2px solid;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.debit-text { color: #ef4444; border-color: rgba(239, 68, 68, 0.2); }
.credit-text { color: var(--color-green); border-color: rgba(16, 185, 129, 0.2); }

.t-line-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr;
    font-weight: bold;
    color: var(--color-text-muted);
    font-size: 0.7rem;
    padding-bottom: 4px;
}

.t-line-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr;
    padding: 4px 0;
    border-bottom: 1px dashed var(--border-color);
}

.t-line-row span:last-child {
    text-align: right;
}

.t-line-header span:last-child {
    text-align: right;
}

.highlighted-row {
    background: rgba(245, 158, 11, 0.08);
    font-weight: bold;
}

/* Financial Demo Simulation */
.toggle-buttons-row {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.toggle-subbtn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--color-text-muted);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: bold;
}

.toggle-subbtn.active {
    background: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
}

.view-panel-box {
    display: flex;
    flex-direction: column;
}

.v-line {
    padding: 4px 0;
}

.padding-l {
    padding-left: 20px;
}

.font-courier {
    font-family: monospace;
}

/* Grid Table inside sandbox */
.grid-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-body);
}

.grid-table th {
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--border-color);
    padding: 8px 12px;
    text-align: left;
    font-size: 0.75rem;
    font-weight: 700;
}

.grid-table td {
    padding: 8px 12px;
    font-size: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

/* Auto Importer Demo */
.terminal-area {
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    color: var(--color-text);
    border-radius: var(--radius-sm);
    font-family: monospace;
}

.terminal-title {
    background: rgba(15, 23, 42, 0.03);
    padding: 8px 12px;
    font-size: 0.7rem;
    color: var(--color-text-muted);
    border-bottom: 1px solid var(--border-color);
}

.terminal-body {
    padding: 16px;
    height: 180px;
    overflow-y: auto;
}

.term-log {
    margin-bottom: 6px;
    font-size: 0.75rem;
}

.term-log.success { color: var(--color-green); }
.term-log.warn { color: var(--color-gold); }

.center-btn-row {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

/* AI Dropzone Simulation */
.custom-dropzone {
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
    overflow: hidden;
}

.dz-icon {
    font-size: 2.2rem;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.dz-scanner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-primary);
    box-shadow: 0 0 10px var(--color-primary);
    opacity: 0;
}

.custom-dropzone.scanning .dz-scanner {
    animation: scanLine 2s infinite linear;
    opacity: 1;
}

.result-json-panel {
    font-family: monospace;
    font-size: 0.75rem;
}

.json-code-block {
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 12px;
    max-height: 150px;
    overflow-y: auto;
    color: var(--color-secondary);
    text-align: left;
}

/* =============================================================================
   Review Tab Layout & List Elements
   ============================================================================= */
.reviews-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
}

.addon-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 8px;
}

.review-item {
    background: var(--bg-panel-hover);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px;
}

.review-item-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.review-user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.review-user-info {
    display: flex;
    flex-direction: column;
}

.review-username {
    font-size: 0.85rem;
    font-weight: 700;
}

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

.review-stars {
    color: var(--color-gold);
    font-size: 0.75rem;
    margin-left: auto;
}

.review-title {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.review-comment {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.admin-reply-box {
    background: rgba(245, 158, 11, 0.04);
    border-left: 3px solid var(--color-gold);
    border-radius: 0 8px 8px 0;
    padding: 10px 14px;
    margin-top: 12px;
    font-size: 0.8rem;
}

.admin-reply-header {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 4px;
}

.admin-reply-date {
    font-size: 0.65rem;
    color: var(--color-text-muted);
    font-weight: normal;
}

.admin-reply-text {
    color: var(--color-text-muted);
}

.addon-reviews-form-panel {
    background: var(--bg-panel-solid);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    height: fit-content;
}

.addon-reviews-form-panel h4 {
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
}

/* Star selection block */
.star-rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 6px;
}

.star-rating-input input {
    display: none;
}

.star-rating-input label {
    font-size: 1.5rem;
    color: var(--border-color);
    cursor: pointer;
    transition: var(--transition-fast);
}

.star-rating-input label:hover,
.star-rating-input label:hover ~ label,
.star-rating-input input:checked ~ label {
    color: var(--color-gold);
}

.alert {
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    margin-bottom: 16px;
}

.alert-info {
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.25);
    color: var(--color-primary);
}

/* Reviews Summary Card on Homepage Grid side */
.reviews-summary-card {
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 24px;
}

.rating-number {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.rating-avg {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: var(--color-text);
}

.stars {
    color: var(--color-gold);
    font-size: 0.95rem;
    margin: 6px 0;
}

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

.rating-bars-container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rating-bar-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
}

.rating-bar-row span:first-child {
    width: 20px;
    text-align: right;
}

.rating-bar-bg {
    flex-grow: 1;
    height: 8px;
    background: var(--bg-input);
    border-radius: 4px;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background: var(--color-gold);
    border-radius: 4px;
}

.rating-bar-row span:last-child {
    width: 30px;
    text-align: left;
    color: var(--color-text-muted);
}

/* =============================================================================
   Keyframes and Transitions
   ============================================================================= */
@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.4);
        box-shadow: 0 0 10px var(--color-primary);
    }
}

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

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes scanLine {
    0% { top: 0; }
    50% { top: 100%; }
    100% { top: 0; }
}

/* =============================================================================
   Responsive Design Breakpoints
   ============================================================================= */
@media (max-width: 1024px) {
    #hero-title {
        font-size: 2.4rem;
    }
    .hero-container {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    .main-content-layout {
        grid-template-columns: 1fr;
    }
    .services-sidebar {
        position: relative;
        top: 0;
    }
    .about-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .detail-grid-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .detail-visual-pane {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* In Part 3 we will hook mobile toggle dropdown logic */
    }
    .mobile-menu-toggle {
        display: block;
    }
    .top-contacts-left {
        justify-content: center;
        width: 100%;
    }
    .top-contacts-right {
        justify-content: center;
        width: 100%;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .calculator-modal-layout {
        grid-template-columns: 1fr;
    }
    .purchase-modal-layout {
        grid-template-columns: 1fr;
    }
    .reviews-split {
        grid-template-columns: 1fr;
    }
}

/* =============================================================================
   Simulated Payment Gateway Styles
   ============================================================================= */
.payment-gateway-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    animation: modalIn 0.3s ease-out;
    color: #1e293b;
}

.gateway-container {
    width: 100%;
    max-width: 440px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

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

.gateway-logo {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gateway-secure {
    font-size: 0.72rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 4px;
}

.gateway-body {
    padding: 30px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gateway-spinner {
    width: 46px;
    height: 46px;
    border: 3.5px solid #f1f5f9;
    border-top-color: #3b82f6;
    border-radius: 50%;
    animation: spin 0.8s infinite linear;
    margin: 0 auto 16px auto;
}

#gateway-status-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.gateway-qr-wrapper {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px;
    display: inline-block;
    margin: 10px auto;
}

.gateway-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 8px;
}

.gateway-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
}

.gateway-upi-id {
    font-size: 0.75rem;
    color: #64748b;
    font-family: monospace;
}

.success-checkmark-icon {
    animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-details-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 16px;
    width: 100%;
    text-align: left;
    margin-bottom: 20px;
    font-size: 0.85rem;
}

@keyframes popIn {
    from { transform: scale(0.6); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* =============================================================================
   Subscription Plans & Billing Styles
   ============================================================================= */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.plan-card {
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: var(--backdrop-blur);
}

.plan-card:hover {
    transform: translateY(-4px);
    border-color: rgba(14, 165, 233, 0.3);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
}

.plan-card.popular {
    border-color: var(--color-primary);
    box-shadow: 0 8px 30px rgba(30, 64, 175, 0.12);
}

.plan-card.popular::before {
    content: 'POPULAR';
    position: absolute;
    top: 18px;
    right: -32px;
    background: var(--color-primary);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 32px;
    transform: rotate(45deg);
    letter-spacing: 0.05em;
}

.plan-header {
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
}

.plan-name {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.plan-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

.plan-price-box {
    margin-bottom: 24px;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-text);
    font-family: var(--font-heading);
    line-height: 1;
}

.plan-price-period {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.plan-features {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.plan-features li {
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text);
}

.plan-features li i {
    color: var(--color-green);
    font-size: 0.95rem;
}

/* =============================================================================
   NEW ENHANCEMENTS — Animated Gradient Mesh Hero Background
   ============================================================================= */
#hero-section {
    position: relative;
    overflow: hidden;
}
#hero-section::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 20% 50%, rgba(30, 64, 175, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 50% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    animation: heroMeshMove 20s ease-in-out infinite;
    z-index: 0;
}
@keyframes heroMeshMove {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(2deg); }
    66% { transform: translate(-20px, 20px) rotate(-1deg); }
}
#hero-section > * { position: relative; z-index: 1; }

/* =============================================================================
   Floating Particles
   ============================================================================= */
.particles-container {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    overflow: hidden; z-index: 0; pointer-events: none;
}
.particle {
    position: absolute;
    width: 6px; height: 6px;
    background: rgba(30, 64, 175, 0.15);
    border-radius: 50%;
    animation: particleFloat linear infinite;
}
.particle:nth-child(odd) { background: rgba(139, 92, 246, 0.12); }
.particle:nth-child(3n) { width: 4px; height: 4px; background: rgba(217, 119, 6, 0.1); }
@keyframes particleFloat {
    0% { transform: translateY(100vh) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-10vh) translateX(100px); opacity: 0; }
}

/* =============================================================================
   Typing Cursor Animation
   ============================================================================= */
.typing-cursor {
    display: inline-block;
    width: 3px; height: 1em;
    background: var(--color-primary);
    margin-left: 4px;
    animation: cursorBlink 0.7s infinite;
    vertical-align: text-bottom;
}
@keyframes cursorBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* =============================================================================
   Glowing Pulse CTA Button
   ============================================================================= */
.btn-glow {
    position: relative;
    overflow: visible;
}
.btn-glow::after {
    content: '';
    position: absolute;
    top: -4px; left: -4px; right: -4px; bottom: -4px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: inherit;
    z-index: -1;
    opacity: 0.5;
    filter: blur(12px);
    animation: btnGlow 2s ease-in-out infinite;
}
@keyframes btnGlow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

/* =============================================================================
   Trust Marquee Strip
   ============================================================================= */
.trust-marquee-section {
    padding: 20px 0;
    background: var(--bg-panel-solid);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
    position: relative;
}
.trust-marquee-section .trust-label {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}
.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 25s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 32px;
    font-size: 0.9rem; font-weight: 600;
    color: var(--color-text-muted);
    white-space: nowrap;
    opacity: 0.6;
    transition: opacity 0.3s;
}
.marquee-item:hover { opacity: 1; }
.marquee-item i { font-size: 1.3rem; color: var(--color-primary); }
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.trust-marquee-section::before,
.trust-marquee-section::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
}
.trust-marquee-section::before {
    left: 0; background: linear-gradient(90deg, var(--bg-panel-solid), transparent);
}
.trust-marquee-section::after {
    right: 0; background: linear-gradient(-90deg, var(--bg-panel-solid), transparent);
}

/* =============================================================================
   Scroll Reveal Animations
   ============================================================================= */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}
.reveal-on-scroll.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-on-scroll.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-on-scroll.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-on-scroll.reveal-delay-4 { transition-delay: 0.4s; }

/* =============================================================================
   3D Tilt Card Hover (addon-card enhancement)
   ============================================================================= */
.addon-card {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}
.addon-card:hover {
    transform: translateY(-8px) perspective(1000px) rotateX(2deg);
    box-shadow: 0 20px 60px rgba(30, 64, 175, 0.12), 0 0 0 1px rgba(30, 64, 175, 0.08);
}
.partner-credit-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 500;
    max-width: fit-content;
    margin: 32px auto 0;
}
.partner-credit-line strong {
    color: var(--color-green); font-weight: 700;
}

.btn-addon-details {
    width: 100%;
    border-radius: 8px;
    border: 1.5px solid var(--color-secondary);
    color: var(--color-secondary);
    font-weight: 600;
    padding: 10px 16px;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}
.btn-addon-details:hover {
    background: var(--color-secondary) !important;
    color: #ffffff !important;
}

/* =============================================================================
   Testimonials Carousel
   ============================================================================= */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-body) 0%, rgba(30, 64, 175, 0.03) 50%, var(--bg-body) 100%);
    position: relative;
    overflow: hidden;
}
.testimonials-section .section-header { text-align: center; margin-bottom: 48px; }
.testimonials-section .section-header h2 { font-size: 2rem; }
.testimonials-section .section-header p { color: var(--color-text-muted); margin-top: 8px; }
.testimonial-carousel {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    min-height: 280px;
}
.testimonial-slide {
    position: absolute; top: 0; left: 0; right: 0;
    opacity: 0; transform: translateX(60px) scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}
.testimonial-slide.active {
    opacity: 1; transform: translateX(0) scale(1);
    pointer-events: auto; position: relative;
}
.testimonial-card {
    background: var(--bg-panel);
    backdrop-filter: var(--backdrop-blur);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    text-align: center;
    position: relative;
}
.testimonial-card::before {
    content: '\201C';
    position: absolute; top: 16px; left: 24px;
    font-size: 5rem; color: rgba(30, 64, 175, 0.07);
    font-family: Georgia, serif; line-height: 1;
}
.testimonial-stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text {
    font-size: 1.05rem; line-height: 1.7;
    color: var(--color-text); font-style: italic;
    margin-bottom: 24px;
}
.testimonial-avatar {
    width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 700; font-size: 1.2rem;
    margin: 0 auto 12px;
    box-shadow: 0 0 0 4px rgba(30, 64, 175, 0.15);
}
.testimonial-name { font-weight: 700; font-size: 1rem; color: var(--color-text); }
.testimonial-business { font-size: 0.8rem; color: var(--color-text-muted); margin-top: 2px; }
.carousel-dots {
    display: flex; justify-content: center; gap: 8px; margin-top: 28px;
}
.carousel-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--border-color); border: none; cursor: pointer;
    transition: all 0.3s; padding: 0;
}
.carousel-dot.active {
    background: var(--color-primary);
    transform: scale(1.3);
    box-shadow: 0 0 0 4px rgba(30, 64, 175, 0.2);
}

/* =============================================================================
   Floating WhatsApp Button
   ============================================================================= */
.floating-whatsapp {
    position: fixed; bottom: 28px; right: 28px;
    width: 60px; height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.7rem;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    animation: waFloat 3s ease-in-out infinite;
}
.floating-whatsapp:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.55);
}
@keyframes waFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.floating-whatsapp .wa-tooltip {
    position: absolute; right: 72px; top: 50%; transform: translateY(-50%);
    background: #1e293b; color: white; padding: 8px 14px;
    border-radius: 8px; font-size: 0.8rem; font-weight: 600;
    white-space: nowrap;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s;
}
.floating-whatsapp:hover .wa-tooltip { opacity: 1; }
.floating-whatsapp .wa-tooltip::after {
    content: ''; position: absolute; right: -6px; top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent; border-left-color: #1e293b;
}

/* =============================================================================
   Back to Top Button
   ============================================================================= */
.back-to-top {
    position: fixed; bottom: 28px; right: 100px;
    width: 44px; height: 44px;
    background: var(--bg-panel-solid);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--color-text-muted); font-size: 1.1rem;
    cursor: pointer; z-index: 9998;
    opacity: 0; transform: translateY(20px);
    transition: all 0.3s;
    box-shadow: var(--shadow);
}
.back-to-top.visible {
    opacity: 1; transform: translateY(0);
}
.back-to-top:hover {
    background: var(--color-primary); color: white;
    border-color: var(--color-primary);
}

/* =============================================================================
   Mobile Sticky CTA Bar
   ============================================================================= */
.mobile-sticky-cta {
    display: none;
    position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--bg-panel-solid);
    border-top: 1px solid var(--border-color);
    padding: 12px 20px;
    z-index: 9997;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
.mobile-sticky-cta .btn { width: 100%; padding: 14px; font-size: 1rem; font-weight: 700; }
@media (max-width: 768px) {
    .mobile-sticky-cta { display: block; }
    body { padding-bottom: 70px; }
    .floating-whatsapp { bottom: 85px; }
    .back-to-top { bottom: 85px; right: 20px; }
}

/* =============================================================================
   Wave SVG Separator
   ============================================================================= */
.wave-separator {
    position: relative; width: 100%; overflow: hidden;
    line-height: 0; margin-top: -2px;
}
.wave-separator svg {
    display: block; width: 100%; height: 80px;
}
.wave-separator svg path {
    fill: #0f172a;
}

/* =============================================================================
   Newsletter Styles
   ============================================================================= */
.footer-newsletter {
    margin-top: 20px;
}
.footer-newsletter h4 {
    font-size: 1rem; margin-bottom: 8px; color: #f8fafc;
}
.footer-newsletter p {
    font-size: 0.8rem; color: #94a3b8; margin-bottom: 12px;
}
.newsletter-form {
    display: flex; gap: 8px;
}
.newsletter-form input {
    flex: 1; padding: 10px 14px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-sm);
    color: #f8fafc; font-size: 0.85rem;
    outline: none; transition: border-color 0.3s;
}
.newsletter-form input::placeholder { color: #64748b; }
.newsletter-form input:focus { border-color: var(--color-primary); }
.newsletter-form button {
    padding: 10px 20px;
    background: var(--color-primary);
    color: white; border: none;
    border-radius: var(--radius-sm);
    font-weight: 600; font-size: 0.85rem;
    cursor: pointer; transition: background 0.3s;
}
.newsletter-form button:hover { background: var(--color-secondary); }

/* =============================================================================
   Social Icon Brand Colors on Hover
   ============================================================================= */
.social-circle:hover[aria-label='Facebook'] { background: #1877f2; border-color: #1877f2; }
.social-circle:hover[aria-label='WhatsApp'] { background: #25d366; border-color: #25d366; }
.social-circle:hover[aria-label='YouTube'] { background: #ff0000; border-color: #ff0000; }
.social-circle:hover[aria-label='Instagram'] { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); border-color: #dc2743; }

/* =============================================================================
   Custom Scrollbar
   ============================================================================= */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-body); }
::-webkit-scrollbar-thumb { background: rgba(30, 64, 175, 0.2); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(30, 64, 175, 0.4); }
::selection { background: rgba(30, 64, 175, 0.15); color: var(--color-text); }

/* =============================================================================
   Navbar Scroll Glass Effect
   ============================================================================= */
#main-nav.scrolled {
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}
body.theme-dark-navy #main-nav.scrolled {
    background: rgba(15, 23, 42, 0.92) !important;
}

/* =============================================================================
   Stats Ribbon Counter Animation Style
   ============================================================================= */
#stats-ribbon .stat-number {
    font-variant-numeric: tabular-nums;
}
#stats-ribbon .stat-box i {
    transition: transform 0.3s;
}
#stats-ribbon .stat-box:hover i {
    transform: scale(1.2);
}



/* =============================================================================
   Premium Two-Column Split Layout (Desktop & Responsive)
   ============================================================================= */
.split-layout-wrapper {
    display: flex;
    width: 100%;
    height: calc(100vh - 112px); /* 100vh minus headers height */
    overflow: hidden;
}

.split-left-pane {
    width: 65%;
    height: 100%;
    overflow-y: auto;
    position: relative;
    scroll-behavior: smooth;
}

/* Ensure detail page behaves absolutely relative to the left scrollpane on desktop */
@media (min-width: 1025px) {
    .addon-detail-overlay {
        position: absolute !important;
        height: 100% !important;
        z-index: 150 !important;
    }
}

.split-right-pane {
    width: 35%;
    height: 100%;
    overflow-y: auto;
    background: var(--bg-panel-solid);
    border-left: 1px solid var(--border-color);
    padding: 24px 20px;
}

/* Sidebar inside split pane styling overrides */
.split-right-pane .services-sidebar {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    position: static !important;
    width: 100% !important;
}

/* Responsive Overrides: Disable split pane on tablet & mobile */
@media (max-width: 1024px) {
    .split-layout-wrapper {
        display: block;
        height: auto;
        overflow: visible;
    }
    .split-left-pane {
        width: 100%;
        height: auto;
        overflow: visible;
    }
    .split-right-pane {
        width: 100%;
        height: auto;
        overflow: visible;
        border-left: none;
        border-top: 1px solid var(--border-color);
        padding: 40px 24px;
        background: var(--bg-body);
    }
    .split-right-pane .services-sidebar {
        background: var(--bg-panel) !important;
        border: 1px solid var(--border-color) !important;
        box-shadow: var(--shadow) !important;
        padding: 24px !important;
        position: relative !important;
    }
}

/* =============================================================================
   Premium Services Sidebar Enhancements (Friend's Marketing Upgrade)
   ============================================================================= */
.sidebar-trust-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-green);
}

.pulse-dot-online {
    width: 8px;
    height: 8px;
    background-color: var(--color-green);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulseOnline 1.8s infinite;
}

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

.sidebar-experience-badge {
    margin-top: 8px;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    border-top: 1px dashed var(--border-color);
    padding-top: 8px;
}

.service-item {
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: var(--bg-panel-solid);
    transition: all 0.3s ease;
    display: flex;
    gap: 16px;
    position: relative;
    cursor: pointer;
}

.service-item:hover {
    transform: translateY(-2px);
    border-color: rgba(217, 119, 6, 0.3) !important; /* Gold Border Glow */
    box-shadow: 0 8px 24px rgba(217, 119, 6, 0.08) !important;
}

/* Service Pricing Pill Badges */
.service-price-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    background: rgba(217, 119, 6, 0.06);
    color: var(--color-gold-dark);
    border: 1px solid rgba(217, 119, 6, 0.15);
    margin-top: 8px;
    font-family: var(--font-heading);
}

.service-price-badge.free {
    background: rgba(16, 185, 129, 0.06);
    color: var(--color-green);
    border-color: rgba(16, 185, 129, 0.15);
}

.service-price-badge.official {
    background: rgba(59, 130, 246, 0.06);
    color: var(--color-blue);
    border-color: rgba(59, 130, 246, 0.15);
}

/* =============================================================================
   BUSY Pricing & Licensing Styles
   ============================================================================= */
#busy-pricing-section {
    position: relative;
    z-index: 2;
    margin-top: 20px;
    margin-bottom: 40px;
}

.pricing-split-layout {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
    align-items: stretch;
}

.pricing-tables-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%;
}

.table-card {
    background: var(--bg-panel);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.table-card:hover {
    transform: translateY(-3px);
    border-color: rgba(var(--color-primary-rgb), 0.2);
}

.table-card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.table-container {
    width: 100%;
    overflow-x: auto;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.table-container.no-margin {
    margin: 0 !important;
}

.premium-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.95rem;
}

.premium-table th {
    background: rgba(0, 0, 0, 0.02);
    color: var(--color-text);
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 12px 16px;
    border-bottom: 2px solid var(--border-color);
}

body.theme-dark-navy .premium-table th {
    background: rgba(255, 255, 255, 0.02);
}

.premium-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
    color: var(--color-text);
    font-weight: 500;
    vertical-align: middle;
}

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

.premium-table tr {
    transition: var(--transition-fast);
}

.premium-table tr:hover {
    background: rgba(var(--color-primary-rgb), 0.02);
}

body.theme-dark-navy .premium-table tr:hover {
    background: rgba(255, 255, 255, 0.01);
}

.price-val {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--color-text);
}

/* Rowspan cell style */
.type-cell-span {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-right: 1px solid var(--border-color) !important;
}

/* Badges inside tables */
.variant-badge {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    display: inline-block;
}

.badge-basic { background: rgba(100, 116, 139, 0.1); color: #64748b; }
.badge-standard { background: rgba(217, 119, 6, 0.1); color: var(--color-gold); }
.badge-enterprise { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }

.badge-blue { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.badge-saffron { background: rgba(249, 115, 22, 0.1); color: #f97316; }
.badge-emerald { background: rgba(16, 185, 129, 0.1); color: #10b981; }

/* Comparison Card Styles */
.comparison-card {
    background: var(--bg-panel);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.comparison-card.no-margin {
    margin: 0 !important;
}

.comparison-header {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
}

.comparison-header h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.comparison-header p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.comparison-rows-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comparison-row-panel {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.col-head {
    display: flex;
    align-items: center;
    gap: 10px;
}

.col-head i {
    font-size: 1.25rem;
}

.col-head h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
}

.comp-text {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.comp-text strong {
    color: var(--color-text);
}

.status-badge {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 6px 12px;
    border-radius: 6px;
    display: inline-block;
    align-self: flex-start;
}

.badge-green-light {
    background: rgba(16, 185, 129, 0.08);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.badge-orange-light {
    background: rgba(249, 115, 22, 0.08);
    color: #f97316;
    border: 1px solid rgba(249, 115, 22, 0.15);
}

.comp-bullets {
    list-style: none;
    padding-left: 0;
}

.comp-bullets li {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 6px;
    padding-left: 15px;
    position: relative;
}

.comp-bullets li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-text-muted);
}

.comparison-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.comparison-footer p strong {
    color: var(--color-text);
}

.comparison-footer p span {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    padding: 2px 6px;
    border-radius: 4px;
}

.comparison-footer p span:nth-of-type(1) {
    background: rgba(16, 185, 129, 0.08);
    color: #10b981;
}

.comparison-footer p span:nth-of-type(2) {
    background: rgba(59, 130, 246, 0.08);
    color: #3b82f6;
}

/* =============================================================================
   Responsive Media Queries for Pricing Section
   ============================================================================= */
@media (max-width: 991px) {
    .pricing-split-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* =============================================================================
   Bank Statement Converter Styles
   ============================================================================= */
.converter-dropzone.dragover {
    border-color: var(--color-gold) !important;
    background: rgba(212, 175, 55, 0.08) !important;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.converter-console::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.converter-console::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}

.converter-console::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}

.converter-console::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

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