/* =============================================
   TALIO - Modern Clean Design
   Inspired by tryholo.ai
   ============================================= */

/* CSS Variables */
:root {
    /* Colors */
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-tertiary: #1a1a25;
    --bg-card: #16161f;
    
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    
    --accent-primary: #6366f1;
    --accent-secondary: #8b5cf6;
    --accent-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.12);
    
    /* Spacing */
    --section-padding: 120px;
    --container-max: 1200px;
    
    /* Typography */
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

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

.trusted-section{
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
}

html {
    scroll-behavior: smooth;
    background: radial-gradient(ellipse at 50% 0%, #1a1035 0%, #0a0a0f 50%, #050507 100%) !important;
    background-attachment: fixed;
}

body {
    font-family: var(--font-body);
    background: transparent;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

/* =============================================
   GLOBAL PARTICLE CANVAS
   ============================================= */
#mira-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

/* All main sections need z-index to layer above canvas */
.hero,
.page-header,
.page-section,
.feature-section,
.cta-section,
.faq-section,
.lead-section,
section {
    position: relative;
    z-index: 1;
}

/* Header needs higher z-index for dropdowns */
.header,
header,
nav {
    position: relative;
    z-index: 1000;
}

img {
    max-width: 100%;
    height: auto;
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--accent-gradient);
    z-index: 1001;
    width: 0%;
    transition: width 0.1s linear;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Ensure all sections are above particle canvas */
section {
    position: relative;
    z-index: 1;
}

/* =============================================
   NAVIGATION - Floating Pill Design
   ============================================= */
.navbar {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1200px;
    z-index: 1000;
    padding: 12px 24px;
    background: rgba(15, 15, 25, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    top: 12px;
    background: rgba(12, 12, 20, 0.9);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-color: rgba(139, 92, 246, 0.15);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(139, 92, 246, 0.1) inset,
        0 0 60px rgba(139, 92, 246, 0.08);
}

.nav-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

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

.nav-link {
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--text-primary);
}

/* =============================================
   MEGA MENU (Header)
   ============================================= */
.nav-dropdown {
    position: relative;
}

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

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform var(--transition-fast);
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-mega {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: linear-gradient(135deg, rgba(15, 15, 25, 0.98) 0%, rgba(10, 10, 18, 0.99) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 0;
    min-width: 820px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 0.25s, opacity 0.3s ease 0s;
    z-index: 9999;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

/* Bridge element to prevent gap between trigger and menu */
.dropdown-mega::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
    background: transparent;
}

/* Show menu on hover or when menu-open class is added */
.nav-dropdown:hover .dropdown-mega,
.nav-dropdown.menu-open .dropdown-mega {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    transition-delay: 0s;
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown.menu-open .dropdown-arrow {
    transform: rotate(180deg);
}

.mega-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 240px;
    gap: 0;
    padding: 8px;
}

.mega-column {
    padding: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.mega-column:last-child {
    border-right: none;
}

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

.mega-column-header h4 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.mega-column-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.mega-items {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mega-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mega-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.mega-item-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.mega-item-content {
    flex: 1;
    min-width: 0;
}

.mega-item-title {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 2px;
}

.mega-item-desc {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Downloads promo column */
.mega-promo {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    border-radius: 0 12px 12px 0;
}

.mega-promo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 16px;
}

.mega-promo h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 8px 0;
}

.mega-promo p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 16px 0;
    line-height: 1.5;
}

.mega-promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 8px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-top: auto;
}

.mega-promo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

/* Mega menu icon colors */
.mega-column-icon.blue { background: rgba(59, 130, 246, 0.15); color: #3b82f6; }
.mega-column-icon.purple { background: rgba(139, 92, 246, 0.15); color: #8b5cf6; }
.mega-column-icon.teal { background: rgba(20, 184, 166, 0.15); color: #14b8a6; }
.mega-column-icon.green { background: rgba(16, 185, 129, 0.15); color: #10b981; }
.mega-column-icon.orange { background: rgba(249, 115, 22, 0.15); color: #f97316; }

.mega-item-icon.blue { background: rgba(59, 130, 246, 0.15); color: #3b82f6; }
.mega-item-icon.green { background: rgba(34, 197, 94, 0.15); color: #22c55e; }
.mega-item-icon.orange { background: rgba(249, 115, 22, 0.15); color: #f97316; }
.mega-item-icon.purple { background: rgba(139, 92, 246, 0.15); color: #8b5cf6; }
.mega-item-icon.pink { background: rgba(236, 72, 153, 0.15); color: #ec4899; }
.mega-item-icon.cyan { background: rgba(6, 182, 212, 0.15); color: #06b6d4; }
.mega-item-icon.teal { background: rgba(20, 184, 166, 0.15); color: #14b8a6; }
.mega-item-icon.yellow { background: rgba(234, 179, 8, 0.15); color: #eab308; }
.mega-item-icon.gradient { 
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2)); 
    color: #a78bfa; 
}

.nav-cta {
    padding: 10px 22px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 2px 12px rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
    background: linear-gradient(135deg, #9f7aea 0%, #7c3aed 100%);
    color: white;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-fast);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

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

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

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    min-height: 100vh;
    padding: 160px 0 80px;
    display: flex;
    align-items: center;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--accent-primary);
    margin-bottom: 24px;
}

.badge-icon {
    font-size: 1rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

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

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.hero-cta {
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.hero-stat-icon {
    font-size: 1.1rem;
}

.hero-stat-divider {
    width: 1px;
    height: 16px;
    background: var(--border-light);
}

/* Hero Visual / Mockup */
.hero-visual {
    margin-top: 60px;
}

.hero-mockup {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.mockup-img {
    width: 100%;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.mockup-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* =============================================
   TRUSTED SECTION - MARQUEE
   ============================================= */
.trusted-section {
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.trusted-label {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.marquee-wrapper {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.marquee-content {
    display: flex;
    gap: 60px;
    padding-right: 60px;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.25rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.marquee-item i {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* =============================================
   WORD ANIMATION SECTION
   ============================================= */
.word-section {
    padding: var(--section-padding) 0;
}

.word-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 12px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.word-content p {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 500;
    opacity: 0.4;
    transition: opacity 0.5s ease;
}

.word-content p.word-brand {
    color: var(--accent-primary);
    font-weight: 700;
    opacity: 1;
}

.word-content p.word-highlight {
    color: var(--text-primary);
    opacity: 1;
}

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.section-badge i {
    font-size: 0.85rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* =============================================
   HOW IT WORKS - STEPS
   ============================================= */
.how-section {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

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

.step-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.step-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
}

.step-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
    line-height: 1;
}

.step-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.step-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* =============================================
   FEATURES - BENTO GRID
   ============================================= */
.features-section {
    padding: var(--section-padding) 0;
}

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

.bento-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.bento-card:hover {
    border-color: var(--border-light);
}

.bento-card.bento-large {
    grid-column: span 2;
    grid-row: span 2;
    padding: 40px;
}

.bento-card.bento-wide {
    grid-column: span 3;
}

.bento-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.bento-icon i {
    font-size: 1.25rem;
    color: var(--accent-primary);
}

.bento-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.bento-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Chat Preview in Large Card */
.bento-visual {
    margin-top: 32px;
}

.chat-preview {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-bubble {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    line-height: 1.5;
}

.chat-bubble.user {
    align-self: flex-end;
    background: var(--accent-gradient);
    color: white;
}

.chat-bubble.ai {
    align-self: flex-start;
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

/* Platform Icons */
.platform-icons {
    display: flex;
    gap: 24px;
    margin-top: 20px;
}

.platform-icons span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.platform-icons i {
    font-size: 1.25rem;
    color: var(--accent-primary);
}

/* =============================================
   STATS SECTION
   ============================================= */
.stats-section {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.stats-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.stat-card {
    text-align: center;
    padding: 32px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    word-break: break-word;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    display: block;
    margin-top: 8px;
    font-size: 1rem;
    color: var(--text-secondary);
}

/* =============================================
   PRICING SECTION
   ============================================= */
.pricing-section {
    padding: var(--section-padding) 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    padding: 40px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.pricing-card:hover {
    border-color: var(--border-light);
}

.pricing-card.featured {
    border-color: var(--accent-primary);
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.05) 0%, var(--bg-card) 100%);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--accent-gradient);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    white-space: nowrap;
}

.pricing-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.pricing-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 24px;
}

.price-currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.price-amount {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}

.price-period {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pricing-features {
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--accent-primary);
    font-size: 0.8rem;
}

.pricing-btn {
    width: 100%;
    justify-content: center;
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
.testimonials-section {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

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

.testimonial-card {
    position: relative;
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    border-color: var(--border-light);
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    border-radius: 50%;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
}

.author-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
}

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

.testimonial-date {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.testimonials-footer {
    text-align: center;
    margin-top: 40px;
}

.testimonials-count {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* =============================================
   FAQ SECTION (Homepage style)
   ============================================= */
.faq-section {
    padding: var(--section-padding) 0;
}

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

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

/* Homepage FAQ - minimal inline style (override if no liquid-glass) */
.faq-grid > .faq-item:not(.liquid-glass) {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-color);
    border-radius: 0;
    margin-bottom: 0;
}

.faq-grid > .faq-item:not(.liquid-glass) .faq-question {
    padding: 24px 0;
}

.faq-grid > .faq-item:not(.liquid-glass) .faq-answer p {
    padding: 0 0 24px 0;
}

.faq-grid > .faq-item:not(.liquid-glass).active .faq-question i {
    transform: rotate(45deg);
    color: var(--accent-primary);
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
    padding: var(--section-padding) 0;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 8px;
}

.cta-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.cta-form {
    max-width: 500px;
    margin: 0 auto;
}

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

.form-row input {
    flex: 1;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-primary);
    outline: none;
    transition: var(--transition-fast);
}

.form-row input::placeholder {
    color: var(--text-muted);
}

.form-row input:focus {
    border-color: var(--accent-primary);
}

.form-note {
    margin-top: 16px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* CTA Lead Form Styles */
.cta-lead-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-info {
    text-align: left;
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.cta-benefit i {
    color: var(--accent-primary);
    font-size: 1rem;
}

.cta-form-wrapper {
    background: rgba(20, 20, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(12px);
}

.cta-form-wrapper .lead-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.lead-form-group input,
.lead-form-group select {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    outline: none;
    transition: var(--transition-fast);
}

.lead-form-group input::placeholder {
    color: var(--text-muted);
}

.lead-form-group select {
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23888' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.lead-form-group select option {
    background: #1a1a24;
    color: #fff;
}

.lead-form-group input:focus,
.lead-form-group select:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.btn-block {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    font-size: 1rem;
    margin-top: 8px;
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success.active {
    display: block;
}

.form-success .success-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #fff;
}

.form-success h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.form-success p {
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .cta-lead-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-info {
        text-align: center;
    }
    
    .cta-benefits {
        align-items: center;
    }
    
    .lead-form-row {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-color);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand p {
    margin-top: 16px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 250px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

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

.footer-column li {
    margin-bottom: 12px;
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--accent-gradient);
    border-color: transparent;
    color: white;
}

.footer-column h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.footer-column ul li a:hover {
    color: var(--text-primary);
}

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

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

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

.footer-legal a {
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--text-primary);
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */
@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bento-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .bento-card.bento-large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .bento-card.bento-wide {
        grid-column: span 2;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }
    
    /* Prevent horizontal overflow but allow vertical - avoid breaking sticky */
    html {
        overflow-x: hidden;
        width: 100%;
    }
    
    body {
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        position: relative;
    }
    
    .container {
        padding: 0 16px;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    section {
        max-width: 100vw;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    /* Hide nav links on mobile - use sidebar instead */
    .nav-links {
        display: none !important;
    }
    
    .nav-link {
        font-size: 1.5rem;
    }
    
    .mobile-menu-btn {
        display: flex;
        z-index: 1000;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-card.bento-large,
    .bento-card.bento-wide {
        grid-column: span 1;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        flex-direction: column;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-stat-divider {
        display: none;
    }
    
    /* Mobile hero adjustments */
    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    /* Mobile navbar pill adjustments */
    .navbar {
        top: 10px;
        width: calc(100% - 24px);
        padding: 10px 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        grid-column: span 1;
    }

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

    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
    
    .stat-number {
        font-size: clamp(1.25rem, 5vw, 2rem);
    }
    
    .stat-suffix {
        font-size: 1.5rem;
    }
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* DISABLE AOS - Use simple page fade instead */
[data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

[data-aos].aos-animate {
    opacity: 1 !important;
    transform: none !important;
}

/* Simple page fade-in animation */
@keyframes pageFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

body {
    animation: pageFadeIn 0.5s ease-out forwards;
}

/* =============================================
   MOBILE SIDEBAR NAVIGATION
   ============================================= */
.mobile-sidebar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    pointer-events: none;
}

.mobile-sidebar.active {
    pointer-events: auto;
}

.sidebar-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
}

.mobile-sidebar.active .sidebar-backdrop {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.sidebar-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100%;
    background-color: #0a0a0f;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    /* Prevent any transparency */
    opacity: 1;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.mobile-sidebar.active .sidebar-panel {
    transform: translateX(0);
}

/* Sidebar Header */
.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: #0a0a0f;
    position: relative;
    z-index: 20;
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.sidebar-logo img {
    width: 32px;
    height: 32px;
}

.sidebar-logo span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
}

.sidebar-close {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Sidebar Content */
.sidebar-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    background-color: #0a0a0f;
    /* Prevent transparency */
    opacity: 1;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

/* Ensure submenu has solid background */
.sidebar-content.sidebar-submenu,
.sidebar-content.sidebar-submenu.active {
    background-color: #0a0a0f !important;
    padding-top: 20px;
}

.sidebar-submenu {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0f !important;
    background-color: #0a0a0f !important;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 200 !important;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /* Ensure completely opaque - no transparency */
    opacity: 1 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    /* Add box shadow to cover anything behind */
    box-shadow: -100vw 0 0 100vw #0a0a0f;
}

.sidebar-submenu.active {
    transform: translateX(0);
    background: #0a0a0f !important;
    background-color: #0a0a0f !important;
}

/* CRITICAL: Hide main sidebar content when submenu is active */
.sidebar-panel:has(.sidebar-submenu.active) > #sidebarMain {
    display: none !important;
    visibility: hidden;
    opacity: 0;
}

/* Also hide the main sidebar header when submenu is active */
.sidebar-panel:has(.sidebar-submenu.active) > .sidebar-header {
    display: none !important;
    visibility: hidden;
    opacity: 0;
}

/* Fallback for browsers that don't support :has() */
.sidebar-panel.submenu-active > #sidebarMain,
.sidebar-panel.submenu-active > .sidebar-content:not(.sidebar-submenu .sidebar-content) {
    display: none !important;
    visibility: hidden;
    opacity: 0;
}

.sidebar-panel.submenu-active > .sidebar-header:not(.sidebar-submenu .sidebar-header) {
    display: none !important;
    visibility: hidden;
    opacity: 0;
}

.sidebar-submenu .sidebar-header {
    flex-shrink: 0;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: #0a0a0f !important;
    background-color: #0a0a0f !important;
    position: relative;
    z-index: 201;
}

.sidebar-submenu .sidebar-content {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 16px;
    padding-bottom: 100px;
    background: #0a0a0f !important;
    background-color: #0a0a0f !important;
    position: relative;
    z-index: 201;
}

.sidebar-content.sidebar-submenu.active {
    background-color: #0a0a0f !important;
}

/* Sidebar Navigation */
.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 14px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s ease;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.sidebar-link:hover,
.sidebar-link:focus {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.sidebar-link-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    flex-shrink: 0;
}

/* Icon Colors */
.sidebar-link-icon.blue { background: rgba(59, 130, 246, 0.15); color: #3b82f6; }
.sidebar-link-icon.green { background: rgba(34, 197, 94, 0.15); color: #22c55e; }
.sidebar-link-icon.orange { background: rgba(249, 115, 22, 0.15); color: #f97316; }
.sidebar-link-icon.purple { background: rgba(139, 92, 246, 0.15); color: #8b5cf6; }
.sidebar-link-icon.pink { background: rgba(236, 72, 153, 0.15); color: #ec4899; }
.sidebar-link-icon.cyan { background: rgba(6, 182, 212, 0.15); color: #06b6d4; }
.sidebar-link-icon.teal { background: rgba(20, 184, 166, 0.15); color: #14b8a6; }
.sidebar-link-icon.yellow { background: rgba(234, 179, 8, 0.15); color: #eab308; }
.sidebar-link-icon.gradient { 
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2)); 
    color: #a78bfa; 
}

.sidebar-link span {
    flex: 1;
}

.sidebar-arrow {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    transition: transform 0.2s ease;
}

.sidebar-link.has-submenu:hover .sidebar-arrow {
    transform: translateX(4px);
}

/* Back Button */
.sidebar-back {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.sidebar-back:hover {
    color: #fff;
}

.sidebar-back i {
    font-size: 0.9rem;
}

/* Submenu Header */
.sidebar-submenu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding: 0 4px;
}

.sidebar-submenu-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.sidebar-view-all {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--accent-primary, #6366f1);
    text-decoration: none;
    transition: gap 0.2s ease;
}

.sidebar-view-all:hover {
    gap: 10px;
}

/* Sidebar Categories */
.sidebar-category {
    margin-bottom: 20px;
}

.sidebar-category-title {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
    padding: 0 16px;
    margin-bottom: 8px;
}

/* Sidebar CTA */
.sidebar-cta {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sidebar-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 14px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sidebar-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

/* Mobile Menu Button Animation */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Show mobile sidebar on mobile */
@media (max-width: 768px) {
    .mobile-sidebar {
        display: block;
    }
    
    .nav-links {
        display: none !important;
    }
    
    .nav-dropdown,
    .dropdown-mega {
        display: none !important;
    }
}

/* ============================================
   PAGE SPECIFIC STYLES (Merged from pages-dark.css)
   ============================================ */

/* Color Variables for Pages */
:root {
    --purple-400: #a78bfa;
    --purple-500: #8b5cf6;
    --primary-500: #6366f1;
    --green-500: #22c55e;
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: visible;
    min-height: auto;
}



.page-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.3;
    padding-bottom: 0.15em;
}

.page-title .gradient-text,
.page-title span {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
    padding-bottom: 0.1em;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.page-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--purple-400);
    margin-bottom: 20px;
}

.page-badge i {
    font-size: 0.9rem;
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-header-content h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #ffffff;
    line-height: 1.3;
    padding-bottom: 0.1em;
}

.page-header-content h1 .gradient-text,
.page-header-content h1 span {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-bottom: 0.1em;
    display: inline;
}

.page-header-content p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   LIQUID GLASS CARD
   ============================================ */
.liquid-glass {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.02) 50%,
        rgba(255, 255, 255, 0.05) 100%
    );
    backdrop-filter: blur(40px) saturate(150%);
    -webkit-backdrop-filter: blur(40px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.liquid-glass::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(
        135deg,
        rgba(139, 92, 246, 0.3) 0%,
        transparent 30%,
        transparent 70%,
        rgba(99, 102, 241, 0.2) 100%
    );
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.liquid-glass:hover::before {
    opacity: 1;
}

.liquid-glass::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 20%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0.4) 80%,
        transparent 100%
    );
    z-index: 1;
}

/* ============================================
   PAGE SECTIONS
   ============================================ */
.page-section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #ffffff;
    line-height: 1.3;
}

.section-header h2 .gradient-text,
.section-header h2 span {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--purple-400);
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   CONTENT GRID
   ============================================ */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-text h2 {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.3;
}

.content-text h2 .gradient-text,
.content-text h2 span {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
}

.content-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.content-text ul {
    margin-bottom: 24px;
}

.content-text li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-secondary);
}

.content-text li i {
    color: var(--green-500);
}

.content-visual {
    padding: 40px;
    text-align: center;
}

/* ============================================
   UMBRELLA SECTION
   ============================================ */
.umbrella-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.umbrella-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
}

.umbrella-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
}

.umbrella-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--purple-500), var(--primary-500));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.umbrella-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: #ffffff;
}

.umbrella-card h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.umbrella-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.umbrella-desc {
    font-size: 1.1rem;
    max-width: 800px;
    margin-bottom: 40px;
}

.umbrella-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.umbrella-feature {
    text-align: left;
}

.umbrella-feature i {
    font-size: 1.5rem;
    color: var(--accent-primary);
    margin-bottom: 12px;
    display: block;
}

.umbrella-feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.umbrella-feature p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   FEATURE SECTION & GRID
   ============================================ */
.feature-section {
    padding: 100px 0;
}

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

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

.feature-grid.three-col,
.feature-grid.feature-grid-3 {
    grid-template-columns: repeat(4, 1fr);
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--purple-500), var(--primary-500));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #ffffff;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Feature Icon Color Variants */
.feature-icon.green {
    background: linear-gradient(135deg, var(--green-500), var(--green-600, #059669));
}

.feature-icon.orange {
    background: linear-gradient(135deg, var(--orange-500, #f97316), var(--orange-600, #ea580c));
}

.feature-icon.cyan {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.feature-icon.pink {
    background: linear-gradient(135deg, var(--pink-500), var(--purple-500));
}

.feature-icon.blue {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600, #4f46e5));
}

/* ============================================
   STATS GRID
   ============================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.stats-grid.centered {
    max-width: 1000px;
    margin: 60px auto 0;
}

.stat-card {
    text-align: center;
    padding: 32px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1.2;
    word-break: break-word;
    hyphens: auto;
}

/* Text-based stat numbers (like "Real-time", "Unlimited") */
.stat-number:not(:empty) {
    font-size: clamp(1.25rem, 3vw, 2rem);
}

/* Numeric stat numbers retain larger size */
.stat-card[data-type="number"] .stat-number {
    font-size: clamp(2rem, 5vw, 3rem);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Stats Card (About page vertical layout) */
.stats-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.stats-card .stat-item {
    text-align: center;
}

.stats-card .stat-item .stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1.1;
}

.stats-card .stat-item .stat-label {
    display: block;
    margin-top: 8px;
    color: var(--text-secondary);
    font-size: 1rem;
}

/* ============================================
   STEPS GRID
   ============================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.step-card {
    text-align: center;
    padding: 40px;
}

.step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-500), var(--primary-500));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 auto 24px;
}

.step-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: #ffffff;
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-500), var(--primary-500));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #ffffff;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

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

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    margin: 60px 24px;
    padding: 80px 40px;
    text-align: center;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(99, 102, 241, 0.15));
    border: 1px solid rgba(139, 92, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.2), transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px;
    text-align: center;
    border-radius: 24px;
    background: transparent;
    border: none;
    backdrop-filter: none;
}

.cta-box h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* ============================================
   BUTTON VARIANTS
   ============================================ */
.btn-secondary {
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-white {
    background: #ffffff;
    color: #0a0a0f;
}

.btn-white:hover {
    background: #f0f0f0;
}

.btn-outline {
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    cursor: pointer;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

.contact-info {
    padding: 40px;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(139, 92, 246, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-400);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-details p,
.contact-details a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: var(--purple-400);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--purple-500);
    border-color: var(--purple-500);
    color: #ffffff;
    transform: translateY(-3px);
}

.contact-form-wrapper {
    padding: 40px;
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: 32px;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--purple-500);
    background: rgba(255, 255, 255, 0.08);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23a0a0b0'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 24px;
}

.form-group select option {
    background: #1a1a24;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.map-container {
    padding: 8px;
}

.map-container iframe {
    width: 100%;
    border-radius: 16px;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.faq-question i {
    color: var(--text-secondary);
    transition: transform 0.3s;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

/* ============================================
   LEGAL CONTENT (Privacy, Terms)
   ============================================ */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px;
}

.legal-meta {
    display: flex;
    gap: 32px;
    padding-bottom: 24px;
    margin-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin: 48px 0 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-content h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-content h3 {
    font-size: 1.25rem;
    margin: 32px 0 12px;
}

.legal-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    color: var(--text-secondary);
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.legal-content a {
    color: var(--purple-400);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* ============================================
   PARTNERS PAGE
   ============================================ */
.partner-perks {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}

.partner-perks li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-secondary);
}

.partner-perks i {
    color: var(--green-500);
}

.feature-card.featured {
    border-color: var(--purple-500);
    position: relative;
}

.feature-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--purple-500), var(--primary-500));
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #ffffff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.process-step {
    padding: 32px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-500), var(--primary-500));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.process-step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ============================================
   SOLUTIONS PAGE
   ============================================ */
.solution-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.solution-block.reverse {
    direction: rtl;
}

.solution-block.reverse > * {
    direction: ltr;
}

.solution-content .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--purple-400);
    margin-bottom: 16px;
}

.solution-content h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.solution-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-secondary);
}

.solution-features i {
    color: var(--green-500);
}

.solution-visual {
    padding: 60px;
    text-align: center;
}

.solution-icon {
    width: 120px;
    height: 120px;
    border-radius: 32px;
    background: linear-gradient(135deg, var(--purple-500), var(--primary-500));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ffffff;
    margin: 0 auto 32px;
}

.solution-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
}

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

.solution-stat .stat-number {
    font-size: 2rem;
}

.solution-stat .stat-label {
    font-size: 0.9rem;
}

/* ============================================
   LEAD CAPTURE FORM STYLES
   ============================================ */
.lead-section {
    padding: 100px 0;
    position: relative;
}

.lead-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.lead-info {
    padding-right: 40px;
}

.lead-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lead-info p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.lead-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.lead-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lead-benefit i {
    color: var(--green-500);
    font-size: 1rem;
}

.lead-benefit span {
    color: var(--text-primary);
    font-weight: 500;
}

.lead-trust {
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.lead-trust p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.trust-logos {
    display: flex;
    gap: 24px;
}

.trust-logos i {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.lead-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(20px);
}

.lead-form .form-step {
    display: none;
}

.lead-form .form-step.active {
    display: block;
}

.step-header {
    margin-bottom: 32px;
    text-align: center;
}

.step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.step-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.step-dot.active {
    background: linear-gradient(135deg, var(--purple-500), var(--primary-500));
    color: #ffffff;
    border-color: var(--purple-500);
}

.step-dot.completed {
    background: var(--green-500);
    color: #ffffff;
    border-color: var(--green-500);
}

.step-line {
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.step-line.active {
    background: linear-gradient(90deg, var(--green-500), var(--purple-500));
}

.step-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.step-header p {
    color: var(--text-secondary);
}

.form-actions {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.btn-block {
    width: 100%;
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success.active {
    display: block;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-500), #16a34a);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.success-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.form-success h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.form-success p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* ============================================
   PAGE RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 1024px) {
    .content-grid,
    .contact-grid,
    .solution-block {
        grid-template-columns: 1fr;
    }
    
    .solution-block.reverse {
        direction: ltr;
    }
    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-grid.three-col,
    .feature-grid.feature-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 60px;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-header-content h1 {
        font-size: 2.25rem;
    }
    
    .page-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .legal-content {
        padding: 32px 24px;
    }
    
    .legal-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .umbrella-card {
        padding: 32px;
    }
    
    .cta-section {
        margin: 20px 12px;
        padding: 60px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .pricing-toggle {
        flex-direction: column;
        gap: 12px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-grid.three-col,
    .feature-grid.feature-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lead-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .lead-info {
        padding-right: 0;
        text-align: center;
    }
    
    .lead-benefits {
        align-items: center;
    }
    
    .lead-form-wrapper {
        padding: 24px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    /* MIRA Feature Section - Centered on mobile */
    .mira-feature-card {
        flex-direction: column !important;
        text-align: center;
        gap: 40px;
        align-items: center;
        justify-content: center;
    }
    
    .mira-feature-text {
        text-align: center;
        align-items: center;
    }
    
}

/* =============================================
   HOMEPAGE MIRA SECTION STYLES
   ============================================= */

/* Hero readability overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 15, 0.7) 0%, rgba(10, 10, 15, 0.4) 30%, rgba(10, 10, 15, 0.1) 60%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.hero > .container {
    position: relative;
    z-index: 1;
}

/* MIRA AI Section - Liquid Glass Experience */
.mira-experience {
    position: relative;
    background: transparent;
    z-index: 2;
}

.mira-scroll-container {
    position: relative;
    height: 1100vh;
}

.mira-viewport {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Gradient overlay - animated position */
.mira-gradient-overlay {
    position: fixed;
    inset: 0;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.mira-gradient-overlay.active {
    opacity: 1;
}

/* Vignette effect */
.mira-vignette {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at center, transparent 30%, rgba(10, 10, 15, 0.85) 75%);
    z-index: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* Animated Gradient Blobs */
.gradient-blobs {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -2;
    opacity: 0;
    transition: opacity 1s ease;
    overflow: hidden;
}

.gradient-blobs.visible {
    opacity: 1;
}

.gradient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: blobFloat 20s ease-in-out infinite;
}

.gradient-blob.blob-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.4), rgba(139, 92, 246, 0.2));
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.gradient-blob.blob-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(236, 72, 153, 0.2));
    top: 50%;
    right: -150px;
    animation-delay: -5s;
}

.gradient-blob.blob-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(99, 102, 241, 0.2));
    bottom: -100px;
    left: 30%;
    animation-delay: -10s;
}

.gradient-blob.blob-4 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.25), rgba(59, 130, 246, 0.15));
    top: 30%;
    left: 20%;
    animation-delay: -15s;
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -50px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(50px, 30px) scale(1.05); }
}

/* MIRA Content Layers */
.mira-content-layer {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(50px);
    pointer-events: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
    z-index: 10;
    background: rgba(0, 0, 0, 0) !important;
}

.mira-content-layer.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mira-content-layer.exiting {
    opacity: 0;
    transform: translateY(-50px);
}

.mira-content-layer.fade-up {
    transform: translateY(30px);
}

.mira-content-layer.active.fade-up {
    transform: translateY(0);
}

/* MIRA Intro */
.mira-intro {
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
    position: relative;
}

.mira-intro::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130%;
    height: 150%;
    background: radial-gradient(
        ellipse at center,
        rgba(10, 10, 15, 0.9) 0%,
        rgba(10, 10, 15, 0.7) 30%,
        rgba(10, 10, 15, 0.4) 55%,
        transparent 80%
    );
    z-index: -1;
    pointer-events: none;
}

.mira-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(99, 102, 241, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--accent-secondary);
    margin-bottom: 24px;
}

.mira-badge i {
    font-size: 0.9rem;
}

.mira-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff 0%, #a78bfa 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mira-subtitle {
    font-size: 1.35rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* MIRA Feature Cards */
.mira-feature-card {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1100px;
    padding: 0 40px;
}

.mira-feature-card.reverse {
    flex-direction: row-reverse;
}

/* Feature Visual with Icon */
.mira-feature-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.mira-feature-icon-wrapper {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(
        circle at center,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.9) 50%,
        rgba(139, 92, 246, 0.2) 80%,
        transparent 100%
    );
    backdrop-filter: blur(20px);
    border: 2px solid rgba(139, 92, 246, 0.5);
    border-radius: 50%;
    box-shadow: 
        0 0 40px rgba(139, 92, 246, 0.4),
        0 0 80px rgba(139, 92, 246, 0.2),
        inset 0 0 30px rgba(0, 0, 0, 0.9);
    overflow: visible;
}

.mira-feature-icon-wrapper i {
    font-size: 3.5rem;
    color: #c4b5fd;
    position: relative;
    z-index: 5;
    text-shadow: 
        0 0 10px rgba(196, 181, 253, 0.8),
        0 0 20px rgba(139, 92, 246, 0.6),
        0 0 40px rgba(139, 92, 246, 0.4);
    filter: drop-shadow(0 0 15px rgba(196, 181, 253, 0.7));
}

.mira-feature-particles {
    position: absolute;
    width: 800px !important;
    height: 800px !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

/* Feature Text */
.mira-feature-text {
    flex: 1.2;
    position: relative;
}

.mira-feature-text::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 130%;
    background: radial-gradient(
        ellipse at center,
        rgba(10, 10, 15, 0.95) 0%,
        rgba(10, 10, 15, 0.85) 30%,
        rgba(10, 10, 15, 0.6) 50%,
        rgba(10, 10, 15, 0.3) 70%,
        transparent 100%
    );
    z-index: -1;
    pointer-events: none;
}

.mira-feature-number {
    font-family: var(--font-display);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-secondary);
    margin-bottom: 12px;
}

.mira-feature-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.mira-feature-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.mira-feature-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.mira-highlight-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.mira-highlight-tag i {
    font-size: 0.7rem;
    color: var(--accent-secondary);
}

/* MIRA Progress Indicator */
.mira-progress {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mira-progress.visible {
    opacity: 1;
}

.mira-progress-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.mira-progress-dot.active {
    background: var(--accent-secondary);
    box-shadow: 0 0 15px var(--accent-secondary);
    transform: scale(1.3);
}

.mira-progress-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* MIRA Scroll indicator */
.mira-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 20;
    transition: opacity 0.3s ease;
}

.mira-scroll-hint span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.mira-scroll-hint i {
    font-size: 1.25rem;
    color: var(--accent-secondary);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(8px); }
    60% { transform: translateY(4px); }
}

/* Hero scroll hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 20;
    animation: fadeInUp 1s ease 1s both;
}

.hero-scroll-hint span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-secondary);
    font-weight: 500;
}

.hero-scroll-hint i {
    font-size: 1.5rem;
    color: var(--accent-secondary);
    animation: bounce 2s infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* =============================================
   HOMEPAGE FEATURE SECTION CARDS
   ============================================= */
.feature-detail-section {
    padding: var(--section-padding) 0;
    position: relative;
    background: transparent !important;
}

.feature-detail-section:nth-child(even) {
    background: transparent !important;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-row.reverse {
    direction: rtl;
}

.feature-row.reverse > * {
    direction: ltr;
}

.feature-text {
    max-width: 500px;
}

.feature-icon-large {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.1));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    margin-bottom: 24px;
}

.feature-icon-large i {
    font-size: 1.75rem;
    color: var(--accent-primary);
}

.feature-icon-large.purple { background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(139, 92, 246, 0.08)); }
.feature-icon-large.purple i { color: #8b5cf6; }

.feature-icon-large.green { background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.08)); }
.feature-icon-large.green i { color: #10b981; }

.feature-icon-large.orange { background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(249, 115, 22, 0.08)); }
.feature-icon-large.orange i { color: #f97316; }

.feature-icon-large.cyan { background: rgba(6, 182, 212, 0.1); }
.feature-icon-large.cyan i { color: #06b6d4; }

.feature-icon-large.pink { background: rgba(236, 72, 153, 0.1); }
.feature-icon-large.pink i { color: #ec4899; }

.feature-title-large {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.feature-description-large {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.feature-list-detailed {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-list-detailed li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-list-detailed li i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 50%;
    font-size: 0.7rem;
    color: var(--accent-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-list-detailed li div h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.feature-list-detailed li div p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Feature Visual / Mockup - Liquid Glass */
.feature-visual {
    position: relative;
}

.feature-mockup {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 50%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(30px) saturate(140%);
    -webkit-backdrop-filter: blur(30px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(139, 92, 246, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

.feature-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-light);
}

.mockup-dots span:first-child { background: #ef4444; }
.mockup-dots span:nth-child(2) { background: #eab308; }
.mockup-dots span:last-child { background: #22c55e; }

.mockup-title {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.mockup-body {
    padding: 24px;
}

/* Dashboard Stats */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.dash-stat {
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: center;
}

.dash-stat i {
    font-size: 1.5rem;
    color: var(--accent-primary);
    margin-bottom: 8px;
}

.dash-stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
}

.dash-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Chart Bars */
.dashboard-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 120px;
    padding: 16px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--accent-primary) 0%, rgba(99, 102, 241, 0.3) 100%);
    border-radius: 4px 4px 0 0;
    height: var(--h, 50%);
    transition: height 0.5s ease;
}

.chart-bar.active {
    background: linear-gradient(180deg, var(--accent-secondary) 0%, rgba(139, 92, 246, 0.3) 100%);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(22, 22, 31, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.floating-card.card-1 {
    top: -20px;
    right: -20px;
}

.floating-card.card-2 {
    bottom: 40px;
    left: -30px;
}

.floating-card i {
    color: var(--accent-primary);
}

.floating-card span {
    font-size: 0.9rem;
}

/* =============================================
   HOMEPAGE WORKFLOW SECTION
   ============================================= */
.workflow-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 60px 20px;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    margin-bottom: 60px;
}

.workflow-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    min-width: 140px;
}

.workflow-node .node-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.15);
    border-radius: 50%;
    margin-bottom: 12px;
}

.workflow-node .node-icon i {
    font-size: 1.25rem;
    color: var(--accent-primary);
}

.workflow-node span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.workflow-node p {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
}

.workflow-connector {
    display: flex;
    align-items: center;
}

.connector-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
}

.connector-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-secondary);
    border-radius: 50%;
}

/* Workflow Templates */
.workflow-templates {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.workflow-template {
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-normal);
}

.workflow-template:hover {
    border-color: var(--accent-primary);
    transform: translateY(-4px);
}

.workflow-template i {
    font-size: 2rem;
    color: var(--accent-primary);
    margin-bottom: 16px;
}

.workflow-template h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.workflow-template p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* =============================================
   HOMEPAGE RESPONSIVE STYLES
   ============================================= */
@media (max-width: 1024px) {
    .feature-row {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .feature-row.reverse {
        direction: ltr;
    }

    .feature-text {
        max-width: 100%;
    }

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

    .mira-feature-particle {
        display: none;
    }
}

@media (max-width: 900px) {
    .mira-feature-card {
        flex-direction: column !important;
        text-align: center;
        gap: 40px;
    }

    .mira-feature-icon-wrapper {
        width: 140px;
        height: 140px;
    }

    .mira-feature-icon-wrapper i {
        font-size: 3rem;
    }

    .mira-feature-highlights {
        justify-content: center;
    }

    .mira-progress {
        display: none;
    }
}

@media (max-width: 768px) {
    .workflow-diagram {
        flex-direction: column;
    }

    .workflow-connector {
        transform: rotate(90deg);
    }

    .workflow-templates {
        grid-template-columns: 1fr;
    }

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

    .floating-card {
        display: none;
    }

    /* MIRA Section Mobile Styles */
    .mira-experience {
        overflow: visible !important;
        position: relative;
    }
    
    .mira-scroll-container {
        height: 800vh !important;
        min-height: 800vh !important;
        position: relative !important;
        overflow: visible !important;
        display: block;
    }

    .mira-viewport {
        position: relative;
        top: 0;
        left: 0;
        height: 100vh;
        width: 100%;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent !important;
        z-index: 10;
    }

    .mira-content-layer {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transform: translateY(40px);
        pointer-events: none;
        transition: opacity 0.5s ease, transform 0.5s ease;
        padding: 20px;
        background: #0a0a0f;
    }

    .mira-content-layer.active {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        background: #0a0a0f;
    }

    .mira-content-layer.exiting {
        opacity: 0;
        transform: translateY(-40px);
    }

    .mira-intro {
        padding: 20px;
        margin: 0 auto;
        max-width: 100%;
        text-align: center;
    }

    .mira-title {
        font-size: 2.2rem !important;
    }

    .mira-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .mira-scroll-hint {
        display: flex !important;
        font-size: 0.8rem;
        position: absolute;
        bottom: 100px;
        left: 50%;
        transform: translateX(-50%);
    }

    .mira-feature-card {
        flex-direction: column !important;
        gap: 20px;
        padding: 0 20px;
        text-align: center;
        max-width: 100%;
    }

    .mira-feature-card.reverse {
        flex-direction: column !important;
    }

    .mira-feature-visual {
        order: -1;
    }

    .mira-feature-icon-wrapper {
        width: 90px;
        height: 90px;
    }

    .mira-feature-icon-wrapper i {
        font-size: 2rem;
    }

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

    .mira-feature-text::before {
        display: none;
    }

    .mira-feature-number {
        font-size: 0.75rem;
    }

    .mira-feature-title {
        font-size: 1.35rem !important;
    }

    .mira-feature-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .mira-feature-highlights {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }

    .mira-highlight-tag {
        font-size: 0.75rem;
        padding: 4px 10px;
    }

    /* Keep particle rings on mobile but smaller */
    .mira-feature-particles {
        display: block !important;
        width: 500px !important;
        height: 500px !important;
    }

    /* Progress dots on mobile */
    .mira-progress {
        display: flex !important;
        right: 10px;
        gap: 8px;
    }

    .mira-progress-dot {
        width: 8px;
        height: 8px;
    }

    .mira-gradient-overlay,
    .mira-vignette {
        display: block;
    }

    .hero-scroll-hint {
        display: none !important;
    }
}

/* =============================================
   DOCUMENTATION PAGE STYLES
   ============================================= */
.docs-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    margin-top: 32px;
}

.docs-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

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

.sidebar-section h4 {
    color: var(--text-secondary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.sidebar-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-section li {
    margin-bottom: 8px;
}

.sidebar-section a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    display: block;
    padding: 6px 12px;
    border-radius: 8px;
}

.sidebar-section a:hover,
.sidebar-section a.active {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.doc-section {
    margin-bottom: 64px;
}

.doc-section h2 {
    font-size: 1.75rem;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}

.doc-section h3 {
    font-size: 1.25rem;
    margin: 32px 0 16px;
}

.doc-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.doc-section ul {
    color: var(--text-secondary);
    margin-bottom: 16px;
    padding-left: 24px;
}

.doc-section li {
    margin-bottom: 8px;
}

.info-box, .warning-box {
    display: flex;
    gap: 16px;
    padding: 20px;
    border-radius: 12px;
    margin: 24px 0;
}

.info-box {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.info-box i {
    color: var(--primary-500);
    font-size: 1.25rem;
}

.warning-box {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.warning-box i {
    color: #F59E0B;
    font-size: 1.25rem;
}

.info-box strong, .warning-box strong {
    display: block;
    margin-bottom: 4px;
}

.info-box p, .warning-box p {
    margin: 0;
    font-size: 0.9rem;
}

.code-block {
    background: #1e1e2e;
    border-radius: 12px;
    overflow: hidden;
    margin: 24px 0;
}

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

.code-header span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.copy-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}

.copy-btn:hover {
    color: var(--text-primary);
}

.code-block pre {
    margin: 0;
    padding: 20px;
    overflow-x: auto;
}

.code-block code {
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
}

.endpoint-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 20px;
    margin: 16px 0;
}

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

.method {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.method.get { background: rgba(34, 197, 94, 0.2); color: #22C55E; }
.method.post { background: rgba(59, 130, 246, 0.2); color: #3B82F6; }
.method.put { background: rgba(245, 158, 11, 0.2); color: #F59E0B; }
.method.delete { background: rgba(239, 68, 68, 0.2); color: #EF4444; }

.endpoint-path {
    font-family: 'Fira Code', monospace;
    color: var(--text-primary);
}

.endpoint-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .docs-layout {
        grid-template-columns: 1fr;
    }

    .docs-sidebar {
        position: static;
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        padding: 20px;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 12px;
    }

    .sidebar-section {
        margin-bottom: 0;
    }
}

/* =============================================
   PRICING PAGE STYLES
   ============================================= */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 40px 0;
}

.pricing-toggle span {
    color: var(--text-secondary);
    font-weight: 500;
}

.pricing-toggle span.active {
    color: #ffffff;
}

.toggle-switch {
    width: 56px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.toggle-switch::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, var(--purple-500), var(--primary-500));
    border-radius: 50%;
    top: 2px;
    left: 3px;
    transition: transform 0.3s ease;
}

.toggle-switch.annual::after {
    transform: translateX(26px);
}

.save-badge {
    background: rgba(34, 197, 94, 0.2);
    color: var(--green-500);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
    padding-top: 30px;
}

.pricing-card {
    padding: 40px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: visible;
}

.pricing-card.popular {
    border: 2px solid var(--purple-500);
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.08) 0%, rgba(15, 15, 20, 0.95) 100%);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--purple-500), var(--primary-500));
    color: #ffffff;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 8px;
}

.pricing-card .description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.price {
    margin-bottom: 24px;
}

.price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
}

.price .currency {
    font-size: 1.5rem;
    vertical-align: super;
    color: var(--text-secondary);
}

.price .period {
    color: var(--text-secondary);
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
}

.pricing-features li i {
    color: var(--green-500);
    font-size: 0.9rem;
}

.pricing-features li.disabled {
    color: var(--text-muted);
}

.pricing-features li.disabled i {
    color: var(--text-muted);
}

.pricing-card .pricing-features {
    flex-grow: 1;
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

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

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

/* =============================================
   PRICING MODAL STYLES
   ============================================= */
.pricing-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.pricing-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.pricing-modal-content {
    position: relative;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s ease;
}

.pricing-modal.active .pricing-modal-content {
    transform: translateY(0) scale(1);
}

.pricing-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.pricing-modal-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.pricing-modal-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-modal-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--purple-500), var(--primary-500));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: #ffffff;
}

.pricing-modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.pricing-modal-header h3 span {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-modal-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.pricing-modal .lead-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricing-modal .lead-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.pricing-modal .lead-form-group input,
.pricing-modal .lead-form-group select {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.pricing-modal .lead-form-group input::placeholder {
    color: var(--text-muted);
}

.pricing-modal .lead-form-group input:focus,
.pricing-modal .lead-form-group select:focus {
    outline: none;
    border-color: var(--purple-500);
    background: rgba(139, 92, 246, 0.1);
}

.pricing-modal .lead-form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%239ca3af'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
}

.pricing-modal .lead-form-group select option {
    background: #1a1a2e;
    color: #ffffff;
}

.pricing-modal .form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.pricing-modal .form-success.active {
    display: block;
}

.pricing-modal .form-success .success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-500), #059669);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    color: #ffffff;
}

.pricing-modal .form-success h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 8px;
}

.pricing-modal .form-success p {
    color: var(--text-secondary);
}

@media (max-width: 600px) {
    .pricing-modal-content {
        padding: 24px;
    }
    
    .pricing-modal .lead-form-row {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   DOWNLOADS PAGE STYLES
   ============================================= */
.download-hero {
    padding: 160px 0 80px;
    text-align: center;
}

.download-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: #a78bfa;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 24px;
}

.download-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.download-hero .subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.recommended-download {
    max-width: 600px;
    margin: 0 auto 48px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.recommended-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 16px;
}

.sparkle-icon {
    width: 20px;
    height: 20px;
    color: #fbbf24;
}

.download-btn-large {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    text-decoration: none;
    color: white;
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    border-radius: 16px;
    padding: 20px 24px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.download-btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.3);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
}

.btn-icon svg {
    width: 28px;
    height: 28px;
}

.btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 4px;
}

.btn-title {
    font-weight: 700;
    font-size: 1.125rem;
}

.btn-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.download-arrow {
    width: 28px;
    height: 28px;
    opacity: 0.8;
}

/* All Platforms Section */
.all-platforms {
    max-width: 1000px;
    margin: 0 auto 64px;
    padding: 0 24px;
}

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

.platform-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 24px;
    transition: all 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.platform-card.highlighted {
    border-color: rgba(139, 92, 246, 0.5);
    background: rgba(139, 92, 246, 0.08);
}

.platform-card.disabled {
    opacity: 0.6;
}

.platform-card.disabled:hover {
    transform: none;
}

.platform-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.platform-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.platform-icon svg {
    width: 28px;
    height: 28px;
    fill: rgba(255, 255, 255, 0.9);
}

.platform-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.platform-name {
    font-weight: 700;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
}

.platform-version {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.platform-downloads {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.platform-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.platform-link:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
}

.size {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.coming-soon-badge {
    margin-top: 12px;
    padding: 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px dashed rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    text-align: center;
}

.coming-soon-badge i {
    margin-right: 8px;
    color: #8b5cf6;
}

/* System Requirements */
.requirements {
    max-width: 800px;
    margin: 0 auto 80px;
    padding: 0 24px;
}

.requirements-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px;
}

.requirements h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    text-align: center;
}

.req-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.req-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
}

.req-item ul {
    margin-left: 20px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

.req-item ul li {
    margin-bottom: 4px;
}

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

@media (max-width: 768px) {
    .download-hero {
        padding: 140px 0 60px;
    }
    
    .download-hero h1 {
        font-size: 2.25rem;
    }
    
    .download-hero .subtitle {
        font-size: 1rem;
        padding: 0 16px;
    }
    
    .recommended-download {
        margin: 0 16px 40px;
    }
    
    .download-btn-large {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .btn-content {
        flex-direction: column;
    }
    
    .btn-text {
        text-align: center;
    }
    
    .download-arrow {
        display: none;
    }
    
    .platform-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .all-platforms {
        padding: 0 16px;
    }
    
    .req-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .requirements {
        padding: 0 16px;
    }
}

/* =============================================
   GET STARTED PAGE STYLES
   ============================================= */
.get-started-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
}

.get-started-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

/* Left Side - Benefits */
.get-started-info {
    padding-right: 20px;
}

.get-started-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    color: #a78bfa;
    margin-bottom: 24px;
}

.get-started-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #ffffff;
}

.get-started-title .gradient-text {
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 50%, #3b82f6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.get-started-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 40px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.benefit-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.benefit-icon.purple {
    background: rgba(139, 92, 246, 0.2);
    color: #a78bfa;
}

.benefit-icon.blue {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
}

.benefit-icon.green {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
}

.benefit-icon.orange {
    background: rgba(249, 115, 22, 0.2);
    color: #fb923c;
}

.benefit-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.benefit-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.trust-badges {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.trust-badge i {
    color: #8b5cf6;
}

/* Right Side - Form */
.get-started-form-container {
    background: rgba(20, 20, 30, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 24px 28px;
}

.form-header {
    text-align: center;
    margin-bottom: 16px;
}

.form-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.form-header p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 4px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-footer {
    text-align: center;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.form-footer p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.form-footer a {
    color: #8b5cf6;
    text-decoration: none;
}

.form-footer a:hover {
    text-decoration: underline;
}

/* Success State */
.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success.visible {
    display: block;
}

.form-success .success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    color: #34d399;
}

.form-success h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.form-success p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 24px;
}

.form-success .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.form-success .btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 900px) {
    .get-started-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .get-started-info {
        padding-right: 0;
        text-align: center;
    }
    
    .benefits-list {
        max-width: 400px;
        margin: 0 auto 40px;
        text-align: left;
    }
    
    .trust-badges {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .get-started-page {
        padding: 100px 0 60px;
    }
    
    .get-started-form-container {
        padding: 28px 20px;
    }
}
/* =============================================
   COMPREHENSIVE MOBILE FIXES
   ============================================= */

/* Global overflow prevention */
*, *::before, *::after {
    box-sizing: border-box;
}

/* Ensure all text content doesn't overflow */
h1, h2, h3, h4, h5, h6, p, span, a {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Fix potential overflow issues on mobile */
@media (max-width: 768px) {
    /* Ensure images scale properly */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Fix navbar on mobile */
    .navbar {
        width: calc(100% - 24px);
        padding: 10px 16px;
    }
    
    /* Fix hero section */
    .hero-content {
        padding: 0 16px;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    /* Fix stats section */
    .stat-number {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }
    
    /* Fix marquee */
    .marquee-wrapper {
        width: 100%;
    }
    
    /* Fix feature cards */
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .feature-grid.three-col,
    .feature-grid.feature-grid-3 {
        grid-template-columns: 1fr;
    }
    
    /* Fix pricing cards */
    .pricing-grid {
        grid-template-columns: 1fr;
        padding: 16px;
        gap: 24px;
    }
    
    .pricing-card {
        padding: 24px 20px;
    }
    
    .price .amount {
        font-size: 2.5rem;
    }
    
    /* Fix CTA sections */
    .cta-section {
        margin: 20px 12px;
        padding: 40px 20px;
    }
    
    /* Fix lead form */
    .lead-form-container {
        padding: 24px 20px;
    }
    
    .lead-form-row {
        grid-template-columns: 1fr;
    }
    
    /* Fix page headers */
    .page-header {
        padding: 120px 0 50px;
        overflow: visible;
        min-height: auto;
        height: auto;
    }
    
    .page-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        padding: 0 10px;
    }
    
    .page-subtitle {
        font-size: 1rem;
        padding: 0 16px;
    }
    
    /* Fix download page */
    .download-hero h1 {
        font-size: clamp(2rem, 7vw, 3rem);
    }
    
    .platform-grid {
        grid-template-columns: 1fr;
        padding: 0 16px;
    }
    
    /* Fix docs page */
    .docs-layout {
        grid-template-columns: 1fr;
    }
    
    .docs-sidebar {
        position: static;
        padding: 16px;
    }
    
    /* Fix contact page */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Fix about page */
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    /* Fix testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    /* Fix steps grid */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    /* Fix bento grid */
    .bento-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .bento-card.bento-large,
    .bento-card.bento-wide {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    /* Fix footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 8px;
    }
    
    /* Fix FAQ section */
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-question {
        padding: 16px;
        font-size: 0.95rem;
    }
    
    .faq-answer {
        padding: 0 16px 16px;
        font-size: 0.9rem;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    /* Even smaller text adjustments */
    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }
    
    .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    
    .mira-title {
        font-size: clamp(2rem, 10vw, 3rem) !important;
    }
    
    /* Tighter padding */
    .container {
        padding: 0 12px;
    }
    
    section {
        padding: 60px 0;
    }
    
    /* Fix buttons */
    .btn-lg {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
    
    /* Fix cards */
    .pricing-card {
        padding: 20px 16px;
    }
    
    .bento-card {
        padding: 20px;
    }
    
    .step-card {
        padding: 20px;
    }
    
    /* Fix sidebar on very small screens */
    .sidebar-panel {
        width: 100%;
        max-width: 100vw;
    }
}

/* Fix sidebar categories spacing */
.sidebar-category {
    margin-bottom: 16px;
    padding-bottom: 8px;
}

.sidebar-category:last-child {
    margin-bottom: 0;
}

/* Fix sidebar back button position */
.sidebar-back {
    margin: 16px;
    margin-bottom: 20px;
}

/* Ensure sidebar submenu scrolls properly */
.sidebar-submenu .sidebar-nav {
    padding-bottom: 100px;
}

/* Fix any potential text overflow in navigation */
.sidebar-link span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Mobile sidebar improvements */
@media (max-width: 768px) {
    .mobile-sidebar {
        display: block;
    }
    
    .sidebar-panel {
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }
    
    .sidebar-content {
        padding-bottom: 100px;
    }
    
    /* Ensure submenu covers everything */
    .sidebar-submenu {
        box-shadow: none;
        background-color: #0a0a0f !important;
    }
    
    /* Fix potential inner scroll issues */
    .sidebar-nav {
        overflow-y: visible;
    }
}

/* Body scroll lock when sidebar is open */
body.sidebar-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
    touch-action: none;
}

html.sidebar-open {
    overflow: hidden !important;
}

/* Ensure sidebar content is still scrollable when body is locked */
.mobile-sidebar.active .sidebar-content {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-sidebar.active .sidebar-submenu .sidebar-content {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* =============================================
   COMPREHENSIVE MOBILE OVERFLOW FIX
   ============================================= */
@media (max-width: 768px) {
    /* Prevent any element from causing horizontal overflow */
    *, *::before, *::after {
        max-width: 100vw;
    }
    
    /* Ensure all sections don't overflow */
    .page-header,
    .page-section,
    .feature-section,
    .hero,
    section {
        overflow-x: hidden;
        overflow-y: visible;
        max-width: 100vw;
    }
    
    /* Fix any potential inner scrolling on containers */
    .container {
        overflow-x: hidden;
        max-width: 100%;
    }
    
    /* Page content wrapper fix */
    .page-header-content,
    .hero-content,
    .section-header {
        overflow: visible;
        max-width: 100%;
    }
    
    /* Ensure titles don't cause overflow */
    h1, h2, h3, .page-title, .hero-title, .section-title {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
}