:root {
    --primary-purple: #941ad2;
    --primary-purple-dark: #7a15ad;
    --primary-purple-light: #a855f7;
    --light-purple: #d9c5ff;
    --lighter-purple: #f3edff;
    --lightest-purple: #faf8ff;
    --white: #ffffff;
    --dark-text: #1a1a1a;
    --gray-text: #6b7280;
    --light-gray: #f3f4f6;
    --border-gray: #e5e7eb;
    --success-green: #10b981;
    --warning-orange: #f59e0b;
    --error-red: #ef4444;
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;
    --ease-out-expo: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Dark Hero Variables */
    --hero-dark-bg: #0a0612;
    --hero-dark-secondary: #1a0a2e;
    --hero-dark-accent: #2d1052;
    --hero-glow-purple: rgba(148, 26, 210, 0.5);
    --hero-glow-cyan: rgba(34, 211, 238, 0.4);
    --hero-glow-pink: rgba(236, 72, 153, 0.3);
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-bg-hover: rgba(255, 255, 255, 0.12);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-border-hover: rgba(255, 255, 255, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--dark-text);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

.container-lg {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Styles — Elegant Glass Morphism Design */
.promo-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(250, 245, 255, 0.85) 0%, rgba(240, 230, 255, 0.8) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 1px solid rgba(148, 26, 210, 0.08);
    box-shadow: 0 4px 30px rgba(108, 29, 165, 0.06);
}

.promo-header .promo-nav {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(250, 245, 255, 0.6) 100%);
    border: 1px solid rgba(148, 26, 210, 0.12);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    padding: 0.35rem;
}

.promo-header .promo-nav-item {
    color: var(--dark-text);
    font-weight: 500;
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.promo-header .promo-nav-item:hover {
    background: rgba(148, 26, 210, 0.08);
    color: var(--primary-purple);
}

.promo-header .promo-nav-item.active {
    background: linear-gradient(135deg, var(--primary-purple) 0%, #b44de8 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(148, 26, 210, 0.35);
}

.promo-header .promo-btn-secondary {
    background: rgba(255, 255, 255, 0.7);
    color: var(--dark-text);
    border: 1px solid rgba(148, 26, 210, 0.15);
    font-weight: 500;
    transition: all 0.3s ease;
}

.promo-header .promo-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--primary-purple);
    color: var(--primary-purple);
    transform: translateY(-1px);
}

.promo-header .promo-btn-primary {
    background: linear-gradient(135deg, var(--primary-purple) 0%, #b44de8 100%);
    box-shadow: 0 4px 20px rgba(148, 26, 210, 0.4);
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.promo-header .promo-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.promo-header .promo-btn-primary:hover::before {
    left: 100%;
}

.promo-header .promo-btn-primary:hover {
    box-shadow: 0 6px 25px rgba(148, 26, 210, 0.5);
    transform: translateY(-2px);
}

.promo-header .promo-logo img {
    filter: none;
    transition: transform 0.3s ease;
}

.promo-header .promo-logo:hover img {
    transform: scale(1.02);
}

.promo-header .mobile-menu-toggle span {
    background: var(--dark-text);
}

.promo-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    padding: 0 2.5rem;
    max-width: 1440px;
    margin: 0 auto;
}

.promo-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.promo-logo img {
    height: 42px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(108, 29, 165, 0.1));
}

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

.promo-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(255, 255, 255, 0.6);
    padding: 0.375rem;
    border-radius: 50px;
    border: 1px solid rgba(108, 29, 165, 0.08);
}

.promo-nav-item {
    position: relative;
    padding: 0.625rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--dark-text);
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-fast);
    letter-spacing: -0.01em;
}

.promo-nav-item:hover {
    background: var(--white);
    color: var(--primary-purple);
    box-shadow: 0 2px 8px rgba(108, 29, 165, 0.12);
}

.promo-nav-item.active {
    background: var(--primary-purple);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(108, 29, 165, 0.25);
}

.promo-nav-item.active:hover {
    background: var(--primary-purple-dark);
    color: var(--white);
}

.promo-site .promo-nav > a.promo-nav-item:not([data-apps-toggle])::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 6px;
    width: 0;
    height: 2px;
    background: var(--primary-purple);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width var(--transition-normal) var(--ease-out-expo);
    opacity: 0.85;
}

.promo-site .promo-nav > a.promo-nav-item:not([data-apps-toggle]):not(.active):hover::after {
    width: calc(100% - 1.5rem);
}

.promo-nav-item i {
    margin-left: 0.5rem;
    font-size: 0.625rem;
    transition: transform var(--transition-fast);
    opacity: 0.7;
}

.promo-nav-item.dropdown-open i {
    transform: rotate(180deg);
}

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

.promo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
    border: none;
    outline: none;
    letter-spacing: -0.01em;
    position: relative;
}

.promo-btn:focus-visible {
    outline: 2px solid var(--primary-purple);
    outline-offset: 3px;
}

.promo-btn:active {
    transform: scale(0.98);
}

.promo-btn-primary {
    background: linear-gradient(135deg, var(--primary-purple) 0%, #8b2fc9 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(108, 29, 165, 0.25);
    overflow: hidden;
}

.promo-btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-purple-dark) 0%, var(--primary-purple) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 29, 165, 0.35);
}

.promo-site .promo-btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
    transform: skewX(-18deg);
    transition: left 0.55s ease;
    pointer-events: none;
}

.promo-site .promo-btn-primary:hover::after {
    left: 120%;
}

.promotional-auth-body .promo-btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
    transform: skewX(-18deg);
    transition: left 0.55s ease;
    pointer-events: none;
}

.promotional-auth-body .promo-btn-primary:hover::after {
    left: 120%;
}

.promo-btn-secondary {
    background: var(--white);
    color: var(--primary-purple);
    border: 1px solid rgba(108, 29, 165, 0.15);
}

.promo-btn-secondary:hover {
    background: var(--lightest-purple);
    border-color: var(--primary-purple);
}

.promo-btn-outline {
    background: transparent;
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
}

.promo-btn-outline:hover {
    background: var(--primary-purple);
    color: var(--white);
}

.promo-btn-lg {
    padding: 0.875rem 2rem;
    font-size: 0.9375rem;
}

.promo-btn-xl {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    border-radius: 50px;
}

/* Apps Dropdown — Premium Floating Panel Design */
.apps-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    pointer-events: none;
}

.apps-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.apps-dropdown-inner {
    width: 880px;
    max-height: 70vh;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.97) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(108, 29, 165, 0.08);
    border-radius: 24px;
    box-shadow: 
        0 25px 50px -12px rgba(108, 29, 165, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: scale(0.96);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.apps-dropdown.open .apps-dropdown-inner {
    transform: scale(1);
}

.apps-dropdown-header {
    padding: 1.75rem 2rem 1.25rem;
    background: linear-gradient(135deg, rgba(108, 29, 165, 0.03) 0%, transparent 100%);
    border-bottom: 1px solid rgba(108, 29, 165, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.apps-dropdown-header-content {
    flex: 1;
}

.apps-dropdown-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
}

.apps-dropdown-title span {
    background: linear-gradient(135deg, var(--primary-purple) 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.apps-dropdown-subtitle {
    font-size: 0.8125rem;
    color: var(--gray-text);
    font-weight: 400;
}

.apps-dropdown-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--primary-purple) 0%, #a855f7 100%);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.apps-dropdown-badge i {
    font-size: 0.625rem;
}

.apps-dropdown-content {
    padding: 1.5rem 2rem;
    overflow-y: auto;
    flex: 1;
}

/* Masonry-style flow: categories pack by height without row gaps (CSS columns) */
.apps-categories-grid {
    column-count: 3;
    column-gap: 2rem;
    column-fill: balance;
}

.apps-category {
    break-inside: avoid;
    page-break-inside: avoid;
    -webkit-column-break-inside: avoid;
    display: inline-block;
    width: 100%;
    min-width: 0;
    vertical-align: top;
    margin-bottom: 1.25rem;
}

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

.apps-category-title {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.875rem;
    padding-bottom: 0.625rem;
    border-bottom: 1px solid rgba(108, 29, 165, 0.08);
}

.apps-category-title i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-purple) 0%, #a855f7 100%);
    color: var(--white);
    border-radius: 6px;
    font-size: 0.6875rem;
}

.apps-category-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.apps-category-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.625rem;
    border-radius: 10px;
    transition: all 0.2s ease;
    cursor: pointer;
    position: relative;
}

.apps-category-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--lightest-purple) 0%, rgba(168, 85, 247, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.apps-category-item:hover::before {
    opacity: 1;
}

.apps-category-item:hover {
    transform: translateX(4px);
}

.apps-category-item-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid rgba(108, 29, 165, 0.08);
    border-radius: 8px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: all 0.2s ease;
}

.apps-category-item:hover .apps-category-item-icon {
    border-color: var(--primary-purple);
    box-shadow: 0 2px 8px rgba(108, 29, 165, 0.15);
}

.apps-category-item-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.apps-category-item-name {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--dark-text);
    line-height: 1.3;
    position: relative;
    z-index: 1;
    transition: color 0.2s ease;
}

.apps-category-item:hover .apps-category-item-name {
    color: var(--primary-purple);
}

.apps-dropdown-footer {
    padding: 1rem 2rem 1.25rem;
    background: linear-gradient(180deg, rgba(108, 29, 165, 0.02) 0%, rgba(108, 29, 165, 0.04) 100%);
    border-top: 1px solid rgba(108, 29, 165, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.apps-dropdown-footer-text {
    font-size: 0.8125rem;
    color: var(--gray-text);
}

.apps-dropdown-footer-text strong {
    color: var(--primary-purple);
    font-weight: 600;
}

.apps-dropdown-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, var(--primary-purple) 0%, #a855f7 100%);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    transition: all 0.2s ease;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(108, 29, 165, 0.2);
}

.apps-dropdown-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 29, 165, 0.3);
}

.apps-dropdown-cta i {
    font-size: 0.6875rem;
    transition: transform 0.2s ease;
}

.apps-dropdown-cta:hover i {
    transform: translateX(3px);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark-text);
    margin: 5px 0;
    transition: all var(--transition-fast);
}

/* Hero Section - Dark AI-Powered Theme */
.hero-section {
    min-height: calc(100vh - 76px);
    padding: 6rem 0 4rem;
    margin-top: 76px;
    position: relative;
    overflow: hidden;
    background: transparent;
    display: flex;
    align-items: center;
}

/* Homepage hero - full screen with clean cut bottom */
.hero-section-homepage {
    min-height: 100vh;
    padding-bottom: 0;
    background: transparent;
}

/* Video Background */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Video overlay - solid purple color #9923d9 with 40% opacity */
.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(207, 0, 239, 0.30);
    z-index: 0;
    pointer-events: none;
}

/* Ensure content appears above video */
.hero-inner {
    position: relative;
    z-index: 2;
}

.hero-floating-icons {
    position: relative;
    z-index: 1;
}

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

/* Tech Grid Background */
.hero-tech-grid {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.tech-dot {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(148, 26, 210, 0.4);
    border-radius: 50%;
    animation: techDotPulse 4s ease-in-out infinite;
}

.tech-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(148, 26, 210, 0.15) 0%, transparent 70%);
}

@keyframes techDotPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

.tech-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(148, 26, 210, 0.3), transparent);
    animation: techLineFade 5s ease-in-out infinite;
}

@keyframes techLineFade {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

/* Animated gradient mesh overlay - more subtle */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 60% 40% at 15% 30%, rgba(148, 26, 210, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse 50% 35% at 85% 70%, rgba(34, 211, 238, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 40% 25% at 50% 90%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    opacity: 1;
    animation: heroGradientShift 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

/* Subtle grid pattern overlay */
.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(148, 26, 210, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 26, 210, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

@keyframes heroGradientShift {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.6;
    }
    33% {
        transform: scale(1.1) rotate(2deg);
        opacity: 0.5;
    }
    66% {
        transform: scale(0.95) rotate(-1deg);
        opacity: 0.7;
    }
}

/* Transition gradient to light section - smooth fade */
.hero-section-transition {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(180deg, 
        transparent 0%,
        rgba(255, 255, 255, 0.02) 20%,
        rgba(255, 255, 255, 0.08) 40%,
        rgba(255, 255, 255, 0.2) 55%,
        rgba(255, 255, 255, 0.45) 70%,
        rgba(255, 255, 255, 0.75) 85%,
        #ffffff 100%);
    pointer-events: none;
    z-index: 1;
}

/* Additional soft blur layer for smoother transition */
.hero-section-transition::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, transparent 0%, #ffffff 100%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.hero-badge-ai {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-purple-light) 100%);
    border: none;
    color: white;
    animation: badgePulse 3s ease-in-out infinite;
    box-shadow: 0 0 20px var(--hero-glow-purple);
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 0 20px var(--hero-glow-purple);
    }
    50% {
        box-shadow: 0 0 35px var(--hero-glow-purple), 0 0 60px rgba(148, 26, 210, 0.3);
    }
}

.feature-icon-ai {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-purple-light) 100%) !important;
    color: white !important;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-title span {
    /* Gradient: Bright Cyan → White → Golden (high contrast) */
    background: linear-gradient(90deg, #00f5ff 0%, #ffffff 50%, #ffd700 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientText 4s ease-in-out infinite;
    /* Stronger glowing aura effect for visibility */
    filter: drop-shadow(0 0 10px rgba(0, 245, 255, 0.8))
            drop-shadow(0 0 20px rgba(255, 255, 255, 0.6))
            drop-shadow(0 0 30px rgba(255, 215, 0, 0.5));
}

@keyframes gradientText {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #ffffff;
    max-width: 500px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

/* Hero buttons - dark theme variants */
.hero-section .promo-btn-primary {
    background: rgba(255, 255, 255, 0.75);
    color: #6b21a8;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 4px 20px var(--hero-glow-purple);
}

.hero-section .promo-btn-primary:hover {
    box-shadow: 0 6px 30px var(--hero-glow-purple);
    transform: translateY(-2px);
}

.hero-section .promo-btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-section .promo-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
    text-align: left;
}

.hero-stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.hero-stat-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.25rem;
}

/* Dashboard Preview Section */
.hero-dashboard {
    position: relative;
    perspective: 1000px;
    padding: 40px 60px 40px 20px;
}

.hero-dashboard-wrapper {
    position: relative;
    transform-style: preserve-3d;
}

/* Main Analytics Card */
.dashboard-main-card {
    background: rgba(18, 8, 35, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(148, 26, 210, 0.25);
    border-radius: 20px;
    padding: 1.5rem;
    position: relative;
    z-index: 1;
    animation: floatMain 6s ease-in-out infinite;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.6),
        0 0 80px -20px rgba(148, 26, 210, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

/* Animated border glow effect */
.dashboard-main-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: linear-gradient(135deg, 
        rgba(148, 26, 210, 0.5) 0%, 
        transparent 30%, 
        transparent 70%, 
        rgba(34, 211, 238, 0.4) 100%);
    z-index: -1;
    animation: borderGlow 4s linear infinite;
}

@keyframes borderGlow {
    0% { opacity: 0.5; transform: rotate(0deg); }
    50% { opacity: 0.8; }
    100% { opacity: 0.5; transform: rotate(360deg); }
}

/* Scan line effect */
.dashboard-main-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(148, 26, 210, 0.6), transparent);
    animation: scanLine 3s ease-in-out infinite;
}

@keyframes scanLine {
    0% { top: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

@keyframes floatMain {
    0%, 100% {
        transform: translateY(0) rotateX(2deg) rotateY(-2deg);
    }
    50% {
        transform: translateY(-10px) rotateX(0deg) rotateY(0deg);
    }
}

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

.dashboard-main-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dashboard-main-title i {
    color: var(--light-purple);
}

.dashboard-main-badge {
    font-size: 0.6875rem;
    padding: 0.25rem 0.625rem;
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
    border-radius: 20px;
    font-weight: 600;
}

/* Chart area */
.dashboard-chart {
    height: 120px;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.dashboard-chart-line {
    position: absolute;
    inset: 0;
}

.dashboard-chart-line svg {
    width: 100%;
    height: 100%;
}

.chart-line {
    fill: none;
    stroke: url(#chartGradient);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: drawChart 2s ease-out forwards, chartPulse 3s ease-in-out infinite 2s;
}

.chart-area {
    fill: url(#chartAreaGradient);
    opacity: 0;
    animation: fadeInChart 1s ease-out 1.5s forwards;
}

.chart-glow {
    filter: drop-shadow(0 0 10px rgba(148, 26, 210, 0.7));
}

@keyframes drawChart {
    to { stroke-dashoffset: 0; }
}

@keyframes fadeInChart {
    to { opacity: 1; }
}

@keyframes chartPulse {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(148, 26, 210, 0.7)); }
    50% { filter: drop-shadow(0 0 20px rgba(148, 26, 210, 1)); }
}

/* Chart metrics row */
.dashboard-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.dashboard-metric {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem;
}

.dashboard-metric-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.375rem;
}

.dashboard-metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    font-variant-numeric: tabular-nums;
    animation: valueGlow 2s ease-in-out infinite;
}

@keyframes valueGlow {
    0%, 100% { text-shadow: 0 0 0 transparent; }
    50% { text-shadow: 0 0 10px rgba(148, 26, 210, 0.5); }
}

.dashboard-metric-change {
    font-size: 0.75rem;
    color: #34d399;
    margin-left: 0.5rem;
}

.dashboard-metric-change.negative {
    color: #f87171;
}

/* Floating Cards - Enhanced with glow and expand animations */
.floating-card {
    position: absolute;
    background: rgba(25, 12, 45, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(148, 26, 210, 0.3);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    box-shadow: 
        0 15px 35px -10px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(148, 26, 210, 0.1) inset,
        0 0 30px -10px rgba(148, 26, 210, 0.3);
}

/* Glowing border animation */
.floating-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 17px;
    background: linear-gradient(135deg, 
        rgba(148, 26, 210, 0.4) 0%, 
        transparent 40%, 
        transparent 60%, 
        rgba(34, 211, 238, 0.3) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.floating-card:hover {
    background: rgba(35, 18, 60, 0.95);
    border-color: rgba(148, 26, 210, 0.5);
    transform: scale(1.08) translateY(-5px) !important;
    z-index: 20;
    box-shadow: 
        0 25px 50px -15px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(148, 26, 210, 0.2) inset,
        0 0 50px -10px rgba(148, 26, 210, 0.5);
}

.floating-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

/* Icon pulse animation */
.floating-card-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    border-radius: inherit;
    animation: iconPulse 3s ease-in-out infinite;
    opacity: 0;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); opacity: 0; }
    50% { transform: scale(1.5); opacity: 0.3; }
}

.floating-card-icon i {
    position: relative;
    z-index: 1;
    animation: iconFloat 4s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-2px) rotate(3deg); }
    75% { transform: translateY(2px) rotate(-3deg); }
}

.floating-card-icon {
    margin-bottom: 0.75rem;
}

.floating-card-icon.purple {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-purple-light) 100%);
    color: white;
}

.floating-card-icon.cyan {
    background: linear-gradient(135deg, #06b6d4 0%, #22d3ee 100%);
    color: white;
}

.floating-card-icon.green {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    color: white;
}

.floating-card-icon.pink {
    background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
    color: white;
}

.floating-card-label {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.floating-card-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

.floating-card-sub {
    font-size: 0.6875rem;
    color: #34d399;
    margin-top: 0.125rem;
}

/* Card positions and animations - better spacing to avoid overlap */
.floating-card-1 {
    top: -30px;
    right: 20px;
    animation: float1 7s ease-in-out infinite;
}

.floating-card-2 {
    top: 25%;
    right: -50px;
    animation: float2 8s ease-in-out infinite;
}

.floating-card-3 {
    bottom: 30%;
    right: -30px;
    animation: float3 6s ease-in-out infinite;
}

.floating-card-4 {
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    animation: float4 9s ease-in-out infinite;
}

.floating-card-5 {
    top: 10%;
    left: -40px;
    animation: float5 7.5s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-5px, -8px) rotate(1deg); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-8px, 5px) rotate(-1deg); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(5px, -10px) rotate(1deg); }
}

@keyframes float4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-6px, -6px) rotate(-0.5deg); }
}

@keyframes float5 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(8px, 8px) rotate(0.5deg); }
}

/* AI Assistant Card - Special styling */
.floating-card-ai {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(34, 211, 238, 0.1) 100%);
    border-color: rgba(16, 185, 129, 0.3);
}

.ai-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.ai-status-dot {
    width: 8px;
    height: 8px;
    background: #34d399;
    border-radius: 50%;
    animation: aiPulse 2s ease-in-out infinite;
}

@keyframes aiPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.4);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(52, 211, 153, 0);
    }
}

.ai-status-text {
    font-size: 0.75rem;
    color: #34d399;
    font-weight: 600;
}

.ai-processing {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Particles Background */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: particleFloat linear infinite;
}

.particle:nth-child(odd) {
    background: var(--light-purple);
    opacity: 0.4;
}

.particle:nth-child(even) {
    background: rgba(34, 211, 238, 0.5);
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

/* =========================================================================
   Inner Pages Hero (Industries, Pricing, Help) - Centered Layout
   ========================================================================= */
.hero-section .hero-content:only-child {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-section .hero-content:only-child .hero-title {
    font-size: 3.25rem;
}

.hero-section .hero-content:only-child .hero-subtitle {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-section .hero-content:only-child .hero-badge {
    margin-left: auto;
    margin-right: auto;
}

/* Pricing toggle for inner pages */
.hero-section .pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-section .pricing-toggle-label {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.hero-section .pricing-toggle-label.active {
    color: var(--white);
    font-weight: 600;
}

.hero-section .pricing-toggle-switch {
    width: 52px;
    height: 28px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    position: relative;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.hero-section .pricing-toggle-switch::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    background: var(--white);
    border-radius: 50%;
    top: 2px;
    left: 3px;
    transition: transform var(--transition-fast);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-section .pricing-toggle-switch.annual::after {
    transform: translateX(24px);
}

.hero-section .pricing-toggle-switch.annual {
    background: var(--primary-purple);
    border-color: var(--primary-purple);
}

/* Inner page hero - image background version */
.hero-section-inner {
    min-height: 100vh;
    padding: 8rem 0 5rem;
    position: relative;
    overflow: hidden;
    /* Default background - will be overridden by specific pages */
    background: linear-gradient(160deg, #0a0414 0%, #120822 25%, #1a0d35 50%, #1e1040 75%, #0f0820 100%);
}

/* Industries page hero background */
.hero-section-inner.industries {
    background: 
        linear-gradient(rgba(207, 0, 239, 0.30), rgba(207, 0, 239, 0.30)),
        url('/images/backgrounds/industries-hero.jpg') center/cover no-repeat,
        linear-gradient(160deg, #0a0414 0%, #120822 25%, #1a0d35 50%, #1e1040 75%, #0f0820 100%);
}

/* Pricing page hero background */
.hero-section-inner.pricing {
    background: 
        linear-gradient(rgba(207, 0, 239, 0.30), rgba(207, 0, 239, 0.30)),
        url('/images/backgrounds/pricing-hero.jpg') center/cover no-repeat,
        linear-gradient(160deg, #0a0414 0%, #120822 25%, #1a0d35 50%, #1e1040 75%, #0f0820 100%);
}

/* Help page hero background */
.hero-section-inner.help {
    background: 
        linear-gradient(rgba(207, 0, 239, 0.30), rgba(207, 0, 239, 0.30)),
        url('/images/backgrounds/help-hero.jpg') center/cover no-repeat,
        linear-gradient(160deg, #0a0414 0%, #120822 25%, #1a0d35 50%, #1e1040 75%, #0f0820 100%);
}

/* Inner page overlay - same as homepage */
.hero-section-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(207, 0, 239, 0.30);
    z-index: 1;
    pointer-events: none;
}

/* Ensure inner page content appears above overlay */
.hero-section-inner .hero-inner {
    position: relative;
    z-index: 2;
}

/* Inner pages with full height - no fade */
.hero-section-inner-page {
    min-height: 100vh;
}

.hero-section-inner-page .hero-section-transition {
    display: none;
}

/* Module detail page hero */
.hero-section-module {
    min-height: 100vh;
    padding: 8rem 0 4rem;
}

.hero-section-module .module-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-section-module .module-hero-text {
    color: var(--white);
}

.hero-section-module .module-hero-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-section-module .module-hero-icon img {
    width: 48px;
    height: 48px;
    filter: brightness(0) invert(1);
}

.hero-section-module .module-hero-tagline {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-section-module .module-hero-image-wrapper {
    background: rgba(20, 10, 40, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(148, 26, 210, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 60px -20px rgba(148, 26, 210, 0.3);
}

.hero-section-module .module-hero-image img {
    width: 100%;
    border-radius: 12px;
}

.hero-floating-module .hero-widget-1 {
    top: 15%;
    left: auto;
    right: 5%;
}

.hero-floating-module .hero-widget-2 {
    top: auto;
    bottom: 25%;
    right: 3%;
}

.hero-floating-module .hero-widget-3 {
    top: 30%;
    left: auto;
    right: 8%;
}

.hero-floating-module .hero-widget-4 {
    top: auto;
    bottom: 10%;
    right: 12%;
}

@media (max-width: 1024px) {
    .hero-section-module .module-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-section-module .hero-actions {
        justify-content: center !important;
    }
    
    .hero-floating-module {
        display: none;
    }
}

/* Full height hero for inner pages */
.hero-section-fullheight {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section-fullheight .hero-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Centered hero inner layout */
.hero-inner-centered {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-inner-centered .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-inner-centered .hero-title {
    font-size: 3.5rem;
}

.hero-inner-centered .hero-subtitle {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-inner-centered .hero-badge {
    margin-left: auto;
    margin-right: auto;
}

/* =========================================================================
   Floating Widgets for Inner Pages
   ========================================================================= */
.hero-floating-widgets {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.hero-widget {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.25rem;
    background: rgba(25, 12, 45, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(148, 26, 210, 0.25);
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.75rem;
    font-weight: 500;
    box-shadow: 
        0 10px 30px -10px rgba(0, 0, 0, 0.4),
        0 0 20px -5px rgba(148, 26, 210, 0.2);
    transition: all 0.4s ease;
    opacity: 0;
    animation: widgetFadeIn 0.8s ease forwards;
}

.hero-widget:hover {
    transform: scale(1.1) !important;
    box-shadow: 
        0 15px 40px -10px rgba(0, 0, 0, 0.5),
        0 0 30px -5px rgba(148, 26, 210, 0.4);
    pointer-events: auto;
    cursor: pointer;
}

.hero-widget-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-purple) 0%, #b44de8 100%);
    border-radius: 12px;
    font-size: 1.25rem;
    color: white;
    box-shadow: 0 4px 15px rgba(148, 26, 210, 0.4);
}

.hero-widget-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(135deg, #fff 0%, var(--light-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Widget positions - randomized asymmetric layout */
.hero-widget-1 {
    top: 18%;
    left: 5%;
    animation: widgetFadeIn 0.8s ease 0.1s forwards, widgetFloat1 8s ease-in-out 0.9s infinite;
}

.hero-widget-2 {
    top: 8%;
    right: 15%;
    animation: widgetFadeIn 0.8s ease 0.2s forwards, widgetFloat2 9s ease-in-out 1s infinite;
}

.hero-widget-3 {
    top: 38%;
    left: 3%;
    animation: widgetFadeIn 0.8s ease 0.3s forwards, widgetFloat3 7s ease-in-out 1.1s infinite;
}

.hero-widget-4 {
    top: 32%;
    right: 4%;
    animation: widgetFadeIn 0.8s ease 0.4s forwards, widgetFloat4 10s ease-in-out 1.2s infinite;
}

.hero-widget-5 {
    bottom: 25%;
    left: 8%;
    animation: widgetFadeIn 0.8s ease 0.5s forwards, widgetFloat5 8s ease-in-out 1.3s infinite;
}

.hero-widget-6 {
    bottom: 12%;
    right: 8%;
    animation: widgetFadeIn 0.8s ease 0.6s forwards, widgetFloat6 9s ease-in-out 1.4s infinite;
}

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

@keyframes widgetFloat1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10px, -15px); }
}

@keyframes widgetFloat2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-12px, 10px); }
}

@keyframes widgetFloat3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(8px, 12px); }
}

@keyframes widgetFloat4 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-10px, -8px); }
}

@keyframes widgetFloat5 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(15px, -10px); }
}

@keyframes widgetFloat6 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-8px, 15px); }
}

/* Hide widgets on mobile */
@media (max-width: 1024px) {
    .hero-floating-widgets {
        display: none;
    }
}

/* =========================================================================
   Floating Decorative AI Icons
   ========================================================================= */
.hero-floating-icons {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.hero-float-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(148, 26, 210, 0.15);
    border: 1px solid rgba(148, 26, 210, 0.25);
    border-radius: 14px;
    color: rgba(217, 197, 255, 0.5);
    font-size: 1.25rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-float-icon-1 {
    top: 15%;
    left: 5%;
    animation: floatIcon1 12s ease-in-out infinite;
}

.hero-float-icon-2 {
    top: 25%;
    right: 8%;
    width: 40px;
    height: 40px;
    font-size: 1rem;
    animation: floatIcon2 10s ease-in-out infinite;
}

.hero-float-icon-3 {
    bottom: 30%;
    left: 8%;
    width: 45px;
    height: 45px;
    animation: floatIcon3 14s ease-in-out infinite;
}

.hero-float-icon-4 {
    top: 60%;
    left: 3%;
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
    animation: floatIcon4 11s ease-in-out infinite;
}

.hero-float-icon-5 {
    bottom: 20%;
    right: 5%;
    animation: floatIcon5 13s ease-in-out infinite;
}

.hero-float-icon-6 {
    top: 10%;
    right: 15%;
    width: 55px;
    height: 55px;
    font-size: 1.5rem;
    background: rgba(148, 26, 210, 0.2);
    border-color: rgba(148, 26, 210, 0.35);
    color: rgba(217, 197, 255, 0.6);
    animation: floatIcon6 15s ease-in-out infinite;
}

@keyframes floatIcon1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, -15px) rotate(5deg); }
    50% { transform: translate(-5px, -25px) rotate(-3deg); }
    75% { transform: translate(15px, -10px) rotate(3deg); }
}

@keyframes floatIcon2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-12px, 18px) rotate(-5deg); }
    66% { transform: translate(8px, 10px) rotate(4deg); }
}

@keyframes floatIcon3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(20px, -20px) rotate(8deg); }
}

@keyframes floatIcon4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(8px, -12px) rotate(-4deg); }
    66% { transform: translate(-10px, 8px) rotate(6deg); }
}

@keyframes floatIcon5 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-15px, -10px) rotate(-3deg); }
    50% { transform: translate(-20px, 5px) rotate(5deg); }
    75% { transform: translate(-8px, -15px) rotate(-2deg); }
}

@keyframes floatIcon6 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    50% { transform: translate(-10px, 15px) rotate(-5deg) scale(1.05); }
}

/* Hide floating icons on mobile */
@media (max-width: 1024px) {
    .hero-floating-icons {
        display: none;
    }
}

/* Modules Section */
.modules-section {
    padding: 6rem 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-purple);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-text);
    max-width: 600px;
    margin: 0 auto;
}

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

.module-card {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all var(--transition-normal);
    cursor: pointer;
}

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

.module-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lighter-purple);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.module-card-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.module-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.module-card-description {
    font-size: 0.9375rem;
    color: var(--gray-text);
    line-height: 1.6;
}

.module-card-arrow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-purple);
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition-fast);
}

.module-card:hover .module-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Module Categories — masonry-style multi-column (balanced category blocks) */
.module-categories {
    column-count: 3;
    column-gap: 2rem;
    column-fill: balance;
}

.module-category {
    break-inside: avoid;
    page-break-inside: avoid;
    -webkit-column-break-inside: avoid;
    display: inline-block;
    width: 100%;
    margin-bottom: 2rem;
    vertical-align: top;
    box-sizing: border-box;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-gray);
    box-shadow: var(--shadow-sm);
}

.module-category-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-purple);
}

.module-category-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-purple);
    color: var(--white);
    border-radius: 10px;
    font-size: 1.125rem;
}

.module-category-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-text);
}

.module-category-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.module-category-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--lightest-purple);
    border-radius: 12px;
    transition: all var(--transition-fast);
}

.module-category-item:hover {
    background: var(--lighter-purple);
    transform: translateX(8px);
}

.module-category-item-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.module-category-item-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.module-category-item-content {
    flex: 1;
}

.module-category-item-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.25rem;
}

.module-category-item-desc {
    font-size: 0.8125rem;
    color: var(--gray-text);
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: var(--lightest-purple);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #e1ddeb;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(148, 26, 210, 0.05);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

/* Futuristic hover glow effect */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(148, 26, 210, 0.05), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    box-shadow: 
        var(--shadow-lg),
        0 0 30px -10px rgba(148, 26, 210, 0.2);
    transform: translateY(-6px);
    border-color: rgba(148, 26, 210, 0.1);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon {
    width: 64px;
    height: 64px;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lighter-purple);
    color: var(--primary-purple);
    border-radius: 16px;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.75rem;
}

.feature-description {
    font-size: 0.9375rem;
    color: var(--gray-text);
    line-height: 1.7;
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
    background: var(--white);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.pricing-toggle-label {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-text);
}

.pricing-toggle-label.active {
    color: var(--dark-text);
    font-weight: 600;
}

.pricing-toggle-switch {
    position: relative;
    width: 56px;
    height: 28px;
    background: var(--light-purple);
    border-radius: 50px;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.pricing-toggle-switch::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 24px;
    height: 24px;
    background: var(--primary-purple);
    border-radius: 50%;
    transition: transform var(--transition-fast);
}

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

.pricing-toggle-switch.annual {
    background: var(--primary-purple);
}

.pricing-save-badge {
    color: #10b981;
    font-size: 0.75rem;
    font-weight: 600;
}

/* =========================================================================
   Testimonials Carousel
   ========================================================================= */
.testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--lightest-purple) 100%);
}

.testimonials-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 1.33rem);
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(108, 29, 165, 0.08);
    border: 1px solid rgba(148, 26, 210, 0.1);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(108, 29, 165, 0.15);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-purple) 0%, #b44de8 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.testimonial-name {
    font-weight: 600;
    color: var(--dark-text);
}

.testimonial-role {
    font-size: 0.875rem;
    color: var(--gray-text);
}

.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.testimonial-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--primary-purple);
    background: transparent;
    color: var(--primary-purple);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-nav-btn:hover {
    background: var(--primary-purple);
    color: white;
}

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

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

.testimonial-dot.active {
    background: var(--primary-purple);
    transform: scale(1.2);
}

@media (max-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 100%;
    }
    
    .testimonials-track {
        gap: 1rem;
    }
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    background: var(--white);
    border: 2px solid var(--border-gray);
    border-radius: 20px;
    padding: 2rem;
    transition: all var(--transition-normal);
}

.pricing-card:hover {
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-xl);
}

.pricing-card.popular {
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-lg);
}

.pricing-card-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.375rem 1rem;
    background: var(--primary-purple);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
}

.pricing-card-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-gray);
    margin-bottom: 1.5rem;
}

.pricing-card-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.pricing-card-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.pricing-card-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-text);
}

.pricing-card-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-text);
    line-height: 1;
}

.pricing-card-period {
    font-size: 0.9375rem;
    color: var(--gray-text);
}

.pricing-card-contact {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
}

.pricing-card-multiplier {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--light-purple);
    color: var(--primary-purple);
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 50px;
    margin-top: 0.75rem;
}

.pricing-card-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.pricing-card-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    color: var(--dark-text);
}

.pricing-card-feature i {
    color: var(--success-green);
    margin-top: 0.25rem;
}

.pricing-card-feature.disabled {
    color: var(--gray-text);
}

.pricing-card-feature.disabled i {
    color: var(--gray-text);
}

.pricing-card-action {
    width: 100%;
}

/* Industries Section */
.industries-section {
    padding: 6rem 0;
    background: var(--lightest-purple);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.industry-card {
    background: #e1ddeb;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.industry-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.industry-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lighter-purple);
    color: var(--primary-purple);
    border-radius: 12px;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.industry-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.industry-card-description {
    font-size: 0.9375rem;
    color: var(--gray-text);
    line-height: 1.6;
}

/* CTA Section - Dark AI Theme matching Hero */
.cta-section {
    padding: 6rem 0;
    text-align: center;
    background: linear-gradient(160deg, 
        #0a0414 0%, 
        #120822 25%, 
        #1a0d35 50%, 
        #1e1040 75%, 
        #0f0820 100%);
    position: relative;
    overflow: hidden;
}

/* Glowing orbs - matching hero */
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 50% 80% at 20% 50%, rgba(148, 26, 210, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse 40% 60% at 80% 30%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 35% 50% at 70% 80%, rgba(168, 85, 247, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Grid pattern overlay */
.cta-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(148, 26, 210, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 26, 210, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.5;
}

.cta-section .container {
    position: relative;
    z-index: 10;
}

/* Floating AI Elements Container */
.cta-ai-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 2;
}

/* Individual floating elements - brighter for dark bg */
.cta-ai-element {
    position: absolute;
    color: white;
}

/* Glowing nodes/particles */
.cta-ai-element.node {
    width: 6px;
    height: 6px;
    background: rgba(148, 26, 210, 0.8);
    border-radius: 50%;
    box-shadow: 
        0 0 10px rgba(148, 26, 210, 0.6),
        0 0 20px rgba(148, 26, 210, 0.4),
        0 0 30px rgba(148, 26, 210, 0.2);
}

.cta-ai-element.node-1 { top: 15%; left: 10%; animation: ctaPulse 3s ease-in-out infinite; }
.cta-ai-element.node-2 { top: 25%; right: 15%; animation: ctaPulse 4s ease-in-out infinite 0.5s; }
.cta-ai-element.node-3 { bottom: 30%; left: 15%; animation: ctaPulse 3.5s ease-in-out infinite 1s; }
.cta-ai-element.node-4 { bottom: 20%; right: 10%; animation: ctaPulse 4.5s ease-in-out infinite 1.5s; }
.cta-ai-element.node-5 { top: 50%; left: 5%; animation: ctaPulse 3s ease-in-out infinite 0.3s; width: 4px; height: 4px; }
.cta-ai-element.node-6 { top: 40%; right: 8%; animation: ctaPulse 5s ease-in-out infinite 0.8s; width: 8px; height: 8px; }
.cta-ai-element.node-7 { bottom: 40%; right: 20%; animation: ctaPulse 3.5s ease-in-out infinite 1.2s; width: 5px; height: 5px; }

/* Cyan accent nodes */
.cta-ai-element.node-cyan {
    background: rgba(34, 211, 238, 0.8);
    box-shadow: 
        0 0 10px rgba(34, 211, 238, 0.6),
        0 0 20px rgba(34, 211, 238, 0.4);
}

.cta-ai-element.node-cyan-1 { top: 35%; left: 20%; animation: ctaPulse 4s ease-in-out infinite 0.2s; width: 5px; height: 5px; }
.cta-ai-element.node-cyan-2 { bottom: 25%; right: 25%; animation: ctaPulse 3s ease-in-out infinite 0.7s; width: 4px; height: 4px; }

/* Hexagon shapes */
.cta-ai-element.hexagon {
    width: 60px;
    height: 35px;
    border: 1px solid rgba(148, 26, 210, 0.3);
    background: rgba(148, 26, 210, 0.05);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    opacity: 0.4;
}

.cta-ai-element.hexagon-1 { top: 20%; left: 8%; animation: ctaFloat1 12s ease-in-out infinite; }
.cta-ai-element.hexagon-2 { bottom: 15%; right: 5%; animation: ctaFloat2 15s ease-in-out infinite; width: 40px; height: 23px; }

/* Circuit lines */
.cta-ai-element.circuit-line {
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(148, 26, 210, 0.5), 
        rgba(148, 26, 210, 0.8),
        rgba(148, 26, 210, 0.5),
        transparent);
    opacity: 0.4;
}

.cta-ai-element.circuit-line-1 { width: 120px; top: 30%; left: 0; animation: ctaLineGlow 3s ease-in-out infinite; }
.cta-ai-element.circuit-line-2 { width: 80px; bottom: 35%; right: 0; animation: ctaLineGlow 4s ease-in-out infinite 1s; }
.cta-ai-element.circuit-line-3 { width: 60px; top: 60%; left: 5%; transform: rotate(90deg); animation: ctaLineGlow 3.5s ease-in-out infinite 0.5s; }
.cta-ai-element.circuit-line-4 { width: 100px; top: 45%; right: 3%; transform: rotate(-45deg); animation: ctaLineGlow 4.5s ease-in-out infinite 1.5s; }

/* Binary code streams */
.cta-ai-element.binary {
    font-family: 'Courier New', monospace;
    font-size: 9px;
    letter-spacing: 1px;
    color: rgba(148, 26, 210, 0.4);
    white-space: nowrap;
}

.cta-ai-element.binary-1 { top: 10%; left: 3%; animation: ctaFloat1 20s linear infinite; }
.cta-ai-element.binary-2 { bottom: 10%; right: 2%; animation: ctaFloat2 18s linear infinite; }

/* Data blocks */
.cta-ai-element.block {
    border: 1px solid rgba(148, 26, 210, 0.25);
    background: rgba(148, 26, 210, 0.08);
    opacity: 0.5;
}

.cta-ai-element.block-1 { width: 25px; height: 25px; top: 45%; left: 3%; animation: ctaFloat1 10s ease-in-out infinite; }
.cta-ai-element.block-2 { width: 15px; height: 15px; bottom: 45%; right: 6%; animation: ctaFloat2 12s ease-in-out infinite; transform: rotate(45deg); }
.cta-ai-element.block-3 { width: 20px; height: 20px; top: 70%; left: 12%; animation: ctaFloat3 14s ease-in-out infinite; }

@keyframes ctaPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

@keyframes ctaFloat1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(8px, -10px); }
}

@keyframes ctaFloat2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-10px, 8px); }
}

@keyframes ctaFloat3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(5px, 5px); }
}

@keyframes ctaLineGlow {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.6; }
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 2rem;
}

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

.promo-btn-white {
    background: var(--white);
    color: var(--primary-purple);
}

.promo-btn-white:hover {
    background: var(--lighter-purple);
}

.promo-btn-white-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.promo-btn-white-outline:hover {
    background: var(--white);
    color: var(--primary-purple);
}

/* Footer */
.promo-footer {
    background: #e1ddeb;
    color: var(--dark-text);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 40px;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.footer-description {
    font-size: 0.9375rem;
    color: #000000;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 10px;
    color: var(--primary-purple);
    font-size: 1.125rem;
    transition: all var(--transition-fast);
}

.footer-social-link:hover {
    background: var(--primary-purple);
    color: var(--white);
}

.footer-column-title {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    font-size: 0.9375rem;
    color: #000000;
    transition: color var(--transition-fast);
}

.footer-link:hover {
    color: var(--primary-purple);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--primary-purple);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copyright {
    font-size: 0.875rem;
    color: #000000;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    font-size: 0.875rem;
    color: #000000;
}

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

/* Module Detail Page */
.module-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(180deg, var(--lightest-purple) 0%, var(--white) 100%);
    margin-top: 72px;
    position: relative;
    overflow: hidden;
}

.module-hero::before {
    content: '';
    position: absolute;
    width: min(420px, 85vw);
    height: min(420px, 85vw);
    border-radius: 50%;
    filter: blur(72px);
    opacity: 0.4;
    background: radial-gradient(circle, rgba(139, 63, 196, 0.28) 0%, transparent 70%);
    top: -18%;
    right: -6%;
    pointer-events: none;
    z-index: 0;
    animation: promoOrbDrift 24s ease-in-out infinite;
}

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

.module-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.module-hero-text {
    max-width: 560px;
}

.module-hero-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lighter-purple);
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.module-hero-icon img {
    width: 48px;
    height: 48px;
}

.module-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.module-hero-tagline {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.module-hero-description {
    font-size: 1.125rem;
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.module-hero-image {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.module-hero-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, var(--light-purple) 0%, #f3f0ff 100%);
}

.module-features-list {
    padding: 4rem 0;
}

.module-feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 3rem 0;
}

.module-feature-row:nth-child(even) {
    direction: rtl;
}

.module-feature-row:nth-child(even) > * {
    direction: ltr;
}

.module-feature-content {
    max-width: 500px;
}

.module-feature-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.module-feature-text {
    font-size: 1rem;
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.module-feature-list {
    list-style: none;
}

.module-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    color: var(--dark-text);
}

.module-feature-list li i {
    color: var(--success-green);
    margin-top: 0.25rem;
}

.module-feature-image {
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.module-feature-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--light-purple) 0%, #f3f0ff 100%);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border: 2px solid var(--border-gray);
    border-radius: 10px;
    outline: none;
    transition: all var(--transition-fast);
}

.form-input:focus {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(108, 29, 165, 0.1);
}

.form-input::placeholder {
    color: #9ca3af;
}

.form-select {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border: 2px solid var(--border-gray);
    border-radius: 10px;
    outline: none;
    background: var(--white);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.form-select:focus {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(108, 29, 165, 0.1);
}

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

.form-error {
    font-size: 0.8125rem;
    color: var(--error-red);
    margin-top: 0.375rem;
}

.form-submit {
    width: 100%;
    margin-top: 1rem;
}

/* Phone Input Styles */
.phone-input-container {
    position: relative;
}

.phone-input {
    padding-left: 3.5rem;
}

.form-help-text {
    font-size: 0.8125rem;
    color: var(--gray-text);
    margin-top: 0.375rem;
    margin-bottom: 0;
}

/* International Telephone Input Styles */
.iti {
    width: 100%;
}

.iti__flag-container {
    background: var(--white);
    border-right: 1px solid var(--border-gray);
}

.iti__selected-flag {
    background: transparent;
    border: none;
    padding: 0 0.75rem;
}

.iti__country-list {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-gray);
}

.iti__country:hover {
    background: var(--lightest-purple);
}

.iti__country.iti__highlight {
    background: var(--light-purple);
}

/* Success Message */
.success-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, var(--lightest-purple) 0%, var(--white) 100%);
    margin-top: 72px;
}

.success-card {
    width: 100%;
    max-width: 520px;
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    padding: 3rem;
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d1fae5;
    color: var(--success-green);
    border-radius: 50%;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
}

.success-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.success-message {
    font-size: 1rem;
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Standalone auth pages (login) — no fixed header */
.promotional-auth-body {
    min-height: 100vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.promotional-auth-main {
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

/* -------------------------------------------------------------------------
   Auth pages — login (standalone) + register (under promo header)
   ------------------------------------------------------------------------- */

@keyframes authGradientShift {
    0%, 100% { background-position: 0% 40%; }
    50% { background-position: 100% 60%; }
}

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

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

.auth-page {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4.5rem 1.5rem 2.5rem;
    overflow: hidden;
}

.auth-page--register {
    margin-top: 72px;
    min-height: calc(100vh - 72px);
    align-items: flex-start;
    padding-top: 2rem;
    padding-bottom: 3.5rem;
}

.auth-page-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(160deg, 
        #0d0618 0%, 
        #150a28 25%, 
        #1e0d3d 50%, 
        #2a1252 75%, 
        #1a0a2e 100%);
    background-size: 220% 220%;
    animation: authGradientShift 22s ease infinite;
}

/* Background video (login / register) — public/images/login-bg.webm */
.auth-video-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.auth-video-bg__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.auth-video-bg__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        160deg,
        rgba(13, 6, 24, 0.78) 0%,
        rgba(21, 10, 40, 0.72) 35%,
        rgba(30, 13, 61, 0.76) 70%,
        rgba(26, 10, 46, 0.82) 100%
    );
    pointer-events: none;
}

/* AI Tech Grid for Auth Pages */
.auth-tech-grid {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.auth-tech-dot {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(148, 26, 210, 0.5);
    border-radius: 50%;
    animation: techDotPulse 4s ease-in-out infinite;
}

.auth-tech-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(148, 26, 210, 0.25), transparent);
    animation: techLineFade 5s ease-in-out infinite;
}

/* Floating AI widgets for auth pages */
.auth-floating-widgets {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.auth-widget {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(25, 12, 45, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(148, 26, 210, 0.2);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0;
    animation: authWidgetFadeIn 0.8s ease forwards;
}

.auth-widget-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-purple) 0%, #b44de8 100%);
    border-radius: 8px;
    font-size: 0.875rem;
    color: white;
}

.auth-widget-1 {
    top: 15%;
    left: 5%;
    animation: authWidgetFadeIn 0.8s ease 0.2s forwards, widgetFloat1 8s ease-in-out 1s infinite;
}

.auth-widget-2 {
    top: 25%;
    right: 8%;
    animation: authWidgetFadeIn 0.8s ease 0.4s forwards, widgetFloat2 9s ease-in-out 1.2s infinite;
}

.auth-widget-3 {
    bottom: 30%;
    left: 8%;
    animation: authWidgetFadeIn 0.8s ease 0.6s forwards, widgetFloat3 7s ease-in-out 1.4s infinite;
}

.auth-widget-4 {
    bottom: 20%;
    right: 5%;
    animation: authWidgetFadeIn 0.8s ease 0.8s forwards, widgetFloat4 10s ease-in-out 1.6s infinite;
}

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

@media (max-width: 1024px) {
    .auth-floating-widgets {
        display: none;
    }
}

.auth-page-bg--soft {
    animation-duration: 26s;
    opacity: 0.97;
}

/* Register: static gradient + opaque card — avoids jank from animating blur layers under a long form */
.auth-page--register .auth-page-bg {
    animation: none;
    background-size: 100% 100%;
    background: linear-gradient(160deg, 
        #0d0618 0%, 
        #150a28 30%, 
        #1e0d3d 60%, 
        #2a1252 100%);
}

.auth-page--register .auth-page-bg::before,
.auth-page--register .auth-page-bg::after {
    animation: none;
    opacity: 0.32;
}

.auth-page-bg::before,
.auth-page-bg::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}

.auth-page-bg::before {
    width: min(420px, 85vw);
    height: min(420px, 85vw);
    background: rgba(196, 181, 253, 0.45);
    top: -15%;
    right: -5%;
    animation: promoOrbDrift 20s ease-in-out infinite;
}

.auth-page-bg::after {
    width: min(380px, 80vw);
    height: min(380px, 80vw);
    background: rgba(167, 139, 250, 0.35);
    bottom: -20%;
    left: -8%;
    animation: promoOrbDrift 26s ease-in-out infinite reverse;
}

.auth-back-link {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    padding: 0.5rem 0.75rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background var(--transition-fast), transform var(--transition-fast), color var(--transition-fast);
}

.auth-back-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    transform: translateX(-2px);
}

.auth-back-link--register {
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: 1.25rem;
    align-self: flex-start;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255, 255, 255, 0.16);
}

.auth-page-register-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.auth-page-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(300px, 420px);
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: center;
}

.auth-brand {
    color: var(--white);
    padding-right: 0.5rem;
    animation: authBrandFade 0.75s var(--ease-out-expo) forwards;
}

.auth-brand-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.auth-brand-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.auth-brand-lead {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 2rem;
    max-width: 36rem;
}

.auth-brand-highlights {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.auth-brand-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.125rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: transform var(--transition-normal), background var(--transition-normal), border-color var(--transition-normal);
}

.auth-brand-highlights li:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateX(4px);
}

.auth-brand-highlight-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
    font-size: 1rem;
}

.auth-brand-highlight-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    font-size: 0.9375rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.92);
}

.auth-brand-highlight-text strong {
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
}

.auth-brand-highlight-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
}

.auth-panel {
    display: flex;
    justify-content: center;
}

.auth-card {
    width: 100%;
    max-width: 420px;
    padding: 2.25rem 2rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow:
        0 4px 7px rgba(0, 0, 0, 0.04),
        0 24px 48px -12px rgba(45, 10, 89, 0.35),
        0 0 0 1px rgba(108, 29, 165, 0.06) inset;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    animation: authCardEnter 0.65s var(--ease-out-expo) forwards;
}

.auth-card--register {
    max-width: 540px;
    padding: 2.5rem 2.25rem;
    background: #ffffff;
    border: 1px solid rgba(108, 29, 165, 0.12);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.04),
        0 20px 40px -12px rgba(45, 10, 89, 0.22);
    animation: none;
}

.auth-card-header {
    margin-bottom: 1.75rem;
}

.auth-card-header--center {
    text-align: center;
}

.auth-card-logo-link {
    display: inline-block;
    margin-bottom: 1.25rem;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.auth-card-logo-link:hover {
    opacity: 0.88;
    transform: scale(1.02);
}

.auth-card-logo {
    height: 44px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.auth-card-title {
    font-family: var(--font-heading);
    font-size: 1.625rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 0.375rem;
    letter-spacing: -0.02em;
}

.auth-card-subtitle {
    font-size: 0.9375rem;
    color: var(--gray-text);
    line-height: 1.5;
}

.auth-form {
    margin-bottom: 0;
}

.auth-form-options {
    margin-bottom: 1.25rem;
}

.auth-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.auth-input-wrap .auth-input-icon {
    position: absolute;
    left: 1rem;
    color: var(--gray-text);
    font-size: 0.9375rem;
    pointer-events: none;
    opacity: 0.75;
}

.auth-input-wrap .form-input.auth-input {
    padding-left: 2.75rem;
    border-radius: 12px;
    border-width: 1.5px;
    background: rgba(255, 255, 255, 0.95);
}

.auth-card .form-input:focus,
.auth-card .form-select:focus {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 4px rgba(108, 29, 165, 0.12);
}

.auth-card .form-select.auth-select {
    border-radius: 12px;
    border-width: 1.5px;
    background: rgba(255, 255, 255, 0.95);
}

.auth-phone-wrap .iti {
    width: 100%;
}

.auth-phone-wrap .form-input {
    border-radius: 12px;
    border-width: 1.5px;
}

.auth-submit.promo-btn {
    width: 100%;
    justify-content: center;
    margin-top: 0.25rem;
    padding-top: 0.9375rem;
    padding-bottom: 0.9375rem;
    font-size: 1rem;
    border-radius: 14px;
}

.auth-card-footer {
    text-align: center;
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.auth-card-footer p {
    font-size: 0.9375rem;
    color: var(--gray-text);
    margin: 0;
}

.auth-card-footer a {
    color: var(--primary-purple);
    font-weight: 700;
    transition: color var(--transition-fast);
}

.auth-card-footer a:hover {
    color: var(--primary-purple-dark);
    text-decoration: underline;
}

.auth-card .alert {
    border-radius: 12px;
}

.auth-alert-list {
    margin: 0;
    padding-left: 1.25rem;
    text-align: left;
}

.auth-terms span a {
    color: var(--primary-purple);
    font-weight: 600;
}

.auth-terms span a:hover {
    text-decoration: underline;
}

.form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.form-checkbox input {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-purple);
}

.form-checkbox span {
    font-size: 0.875rem;
    color: var(--gray-text);
}

.form-forgot {
    font-size: 0.875rem;
    color: var(--primary-purple);
    font-weight: 600;
}

.form-forgot:hover {
    text-decoration: underline;
}

/* Alert Messages */
.alert {
    padding: 1rem 1.25rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.alert-error {
    background: #fef2f2;
    color: var(--error-red);
    border: 1px solid #fecaca;
}

.alert-success {
    background: #f0fdf4;
    color: var(--success-green);
    border: 1px solid #bbf7d0;
}

.alert-warning {
    background: #fffbeb;
    color: var(--warning-orange);
    border: 1px solid #fed7aa;
}

/* Help Page */
.help-section {
    padding: 6rem 0;
    margin-top: 72px;
}

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

.help-card {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-normal);
}

.help-card:hover {
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-lg);
}

.help-card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lighter-purple);
    color: var(--primary-purple);
    border-radius: 16px;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.help-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.75rem;
}

.help-card-description {
    font-size: 0.9375rem;
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-inner {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .floating-card-1 {
        right: -10px;
    }
    
    .floating-card-2 {
        right: -30px;
    }
    
    .floating-card-3 {
        right: -20px;
    }
    
    .floating-card-5 {
        left: -30px;
    }
}

@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-dashboard {
        order: 2;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .floating-card-1 {
        top: -10px;
        right: 0;
    }
    
    .floating-card-2 {
        right: -20px;
    }
    
    .floating-card-3 {
        right: 0;
    }
    
    .floating-card-4 {
        left: 5%;
    }
    
    .floating-card-5 {
        left: -20px;
    }

    .apps-dropdown-inner {
        width: 720px;
        max-height: 80vh;
    }

    .apps-categories-grid {
        column-count: 2;
        column-gap: 1.5rem;
    }

    .apps-dropdown-header {
        padding: 1.25rem 1.5rem 1rem;
    }

    .apps-dropdown-content {
        padding: 1.25rem 1.5rem;
    }

    .apps-dropdown-footer {
        padding: 0.875rem 1.5rem 1rem;
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    
    .promo-nav {
        padding: 0.25rem;
        gap: 0.125rem;
    }
    
    .promo-nav-item {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .module-categories {
        column-count: 2;
    }
    
    .quickstart-step-card {
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .quickstart-step-number {
        width: 56px;
        height: 56px;
        font-size: 1.25rem;
    }
    
    .quickstart-step-connector {
        left: 28px;
        top: 72px;
        bottom: -40px;
    }
    
    .quickstart-cta {
        padding: 2rem;
        margin-top: 3rem;
    }
    
    .module-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .module-hero-text {
        max-width: 100%;
    }
    
    .module-hero-icon {
        margin-left: auto;
        margin-right: auto;
    }
    
    .module-feature-row {
        grid-template-columns: 1fr;
    }
    
    .module-feature-row:nth-child(even) {
        direction: ltr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .promo-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-section {
        padding: 4rem 0 3rem;
        min-height: auto;
    }
    
    .hero-inner {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .promo-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.5rem;
        justify-content: center;
    }
    
    .hero-stat {
        text-align: center;
    }
    
    .hero-stat-number {
        font-size: 1.5rem;
        justify-content: center;
    }
    
    /* Dashboard responsive */
    .hero-dashboard {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .dashboard-main-card {
        padding: 1.25rem;
    }
    
    .dashboard-chart {
        height: 100px;
    }
    
    .dashboard-metrics {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .dashboard-metric {
        padding: 0.75rem;
    }
    
    .dashboard-metric-value {
        font-size: 1.25rem;
    }
    
    /* Hide some floating cards on mobile */
    .floating-card-2,
    .floating-card-5 {
        display: none;
    }
    
    .floating-card-1 {
        top: -15px;
        right: 5px;
        padding: 0.75rem 1rem;
    }
    
    .floating-card-3 {
        bottom: 15%;
        right: 5px;
        padding: 0.75rem 1rem;
    }
    
    .floating-card-4 {
        bottom: -15px;
        left: 5px;
        padding: 0.75rem 1rem;
    }
    
    .floating-card-icon {
        width: 30px;
        height: 30px;
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }
    
    .floating-card-value {
        font-size: 1rem;
    }
    
    .floating-card-label {
        font-size: 0.625rem;
    }
    
    .floating-card-sub {
        font-size: 0.625rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .auth-page-inner {
        grid-template-columns: 1fr;
        max-width: 440px;
        text-align: center;
    }

    .auth-brand {
        padding-right: 0;
        text-align: center;
        order: 1;
    }

    .auth-brand-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .auth-brand-highlights {
        text-align: left;
    }

    .auth-panel {
        order: 2;
        width: 100%;
    }

    .auth-page--login {
        padding-top: 5rem;
        align-items: flex-start;
    }

    .auth-back-link {
        top: 0.75rem;
        left: 0.75rem;
        font-size: 0.8125rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-actions {
        flex-direction: column;
    }

    .apps-dropdown-inner {
        width: 95vw;
        max-width: 500px;
        max-height: 85vh;
    }

    .apps-categories-grid {
        column-count: 1;
        column-gap: 0;
    }

    .apps-category {
        margin-bottom: 1rem;
    }

    .apps-dropdown-header {
        padding: 1rem 1.25rem;
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }
    
    .apps-dropdown-badge {
        padding: 0.375rem 0.75rem;
        font-size: 0.6875rem;
    }

    .apps-dropdown-content {
        padding: 1rem 1.25rem;
    }

    .apps-dropdown-footer {
        padding: 0.875rem 1.25rem;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .apps-dropdown-footer-text {
        font-size: 0.75rem;
    }

    .module-categories {
        column-count: 1;
    }
    
    .quickstart-step-card {
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
        padding: 1.5rem;
    }
    
    .quickstart-step-connector {
        display: none;
    }
    
    .quickstart-step {
        margin-bottom: 2rem;
    }
    
    .quickstart-step-title {
        font-size: 1.25rem;
    }
    
    .quickstart-cta {
        padding: 1.5rem;
        margin-top: 2.5rem;
    }
    
    .quickstart-cta h3 {
        font-size: 1.25rem;
    }
    
    .quickstart-step-number {
        width: 48px;
        height: 48px;
        font-size: 1.125rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .promo-header-inner {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .auth-card,
    .auth-card--register,
    .success-card {
        padding: 2rem 1.5rem;
    }

    .apps-dropdown {
        left: 0;
        right: 0;
        transform: translateY(10px);
        padding: 0 0.5rem;
    }
    
    .apps-dropdown.open {
        transform: translateY(0);
    }

    .apps-dropdown-inner {
        width: 100%;
        max-width: none;
        max-height: 85vh;
        border-radius: 16px;
    }

    .apps-dropdown-header {
        padding: 1rem;
    }

    .apps-dropdown-title {
        font-size: 0.9375rem;
    }

    .apps-dropdown-subtitle {
        font-size: 0.75rem;
    }

    .apps-dropdown-content {
        padding: 0.875rem 1rem;
    }
    
    .apps-category-title {
        font-size: 0.6875rem;
    }
    
    .apps-category-item {
        padding: 0.375rem 0.5rem;
    }
    
    .apps-category-item-icon {
        width: 28px;
        height: 28px;
    }
    
    .apps-category-item-icon img {
        width: 14px;
        height: 14px;
    }
    
    .apps-category-item-name {
        font-size: 0.75rem;
    }

    .apps-dropdown-footer {
        padding: 0.75rem 1rem;
    }

    .apps-dropdown-cta {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        width: 100%;
        justify-content: center;
    }
    
    .promo-header-inner {
        height: 64px;
        padding: 0 1rem;
    }
    
    .promo-logo img {
        height: 36px;
    }
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--light-purple);
    position: relative;
    transition: all var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-quote {
    position: absolute;
    top: -15px;
    left: 2rem;
    width: 40px;
    height: 40px;
    background: var(--primary-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-text);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: var(--light-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-purple);
    font-size: 1.125rem;
}

.testimonial-name {
    font-weight: 600;
    color: var(--dark-text);
    font-size: 1rem;
}

.testimonial-role {
    font-size: 0.875rem;
    color: var(--gray-text);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    color: #fbbf24;
    font-size: 0.875rem;
}

/* Quick Start Stepper */
.quickstart-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--lightest-purple) 0%, var(--white) 50%, var(--lightest-purple) 100%);
}

.quickstart-stepper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.quickstart-step {
    position: relative;
    margin-bottom: 3rem;
}

.quickstart-step:last-child {
    margin-bottom: 0;
}

.quickstart-step-connector {
    position: absolute;
    left: 32px;
    top: 80px;
    bottom: -48px;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-purple) 0%, var(--light-purple) 100%);
    border-radius: 2px;
}

.quickstart-step:last-child .quickstart-step-connector {
    display: none;
}

.quickstart-step-card {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: var(--white);
    border: 2px solid var(--light-purple);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(108, 29, 165, 0.08);
    transition: all var(--transition-normal);
    position: relative;
    z-index: 2;
}

.quickstart-step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(108, 29, 165, 0.15);
    border-color: var(--primary-purple);
}

.quickstart-step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-purple-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(108, 29, 165, 0.3);
}

.quickstart-step-number.success {
    background: linear-gradient(135deg, var(--success-green) 0%, #16a34a 100%);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.quickstart-step-content {
    flex: 1;
}

.quickstart-step-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.75rem;
}

.quickstart-step-description {
    font-size: 1rem;
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.quickstart-step-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--light-purple);
    color: var(--primary-purple);
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
}

.quickstart-step-badge.success {
    background: #dcfce7;
    color: var(--success-green);
}

.quickstart-step-badge i {
    font-size: 0.8125rem;
}

.quickstart-cta {
    margin-top: 4rem;
    padding: 2.5rem;
    background: var(--white);
    border: 2px solid var(--primary-purple);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(108, 29, 165, 0.1);
}

.quickstart-cta-content {
    margin-bottom: 1.5rem;
}

.quickstart-cta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
}

.quickstart-cta p {
    font-size: 1rem;
    color: var(--gray-text);
    margin: 0;
}

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

.faq-item {
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    transition: all var(--transition-normal);
    border-bottom: 1px solid transparent;
}

.faq-question:hover {
    background: var(--lightest-purple);
}

.faq-question h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark-text);
    margin: 0;
}

.faq-question i {
    color: var(--primary-purple);
    font-size: 1rem;
    transition: transform var(--transition-normal);
}

.faq-item.active .faq-question {
    background: var(--light-purple);
    border-bottom-color: var(--primary-purple);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal), padding var(--transition-normal);
    background: var(--lightest-purple);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 1.5rem 2rem;
}

.faq-answer p {
    margin: 0;
    color: var(--gray-text);
    line-height: 1.6;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.animate-fade-in {
    animation: fadeIn 0.65s var(--ease-out-expo) forwards;
}

.animate-slide-down {
    animation: slideDown 0.3s ease forwards;
}

/* Utilities */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-purple);
}

.bg-light {
    background: var(--lightest-purple);
}

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

.hidden {
    display: none !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* -------------------------------------------------------------------------
   Promotional site: motion, atmosphere, micro-interactions (scoped .promo-site)
   ------------------------------------------------------------------------- */

.promo-site main {
    overflow-x: clip;
}

@keyframes promoOrbDrift {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(-12px, 18px) scale(1.05);
    }
    66% {
        transform: translate(10px, -10px) scale(0.96);
    }
}

@keyframes promoCtaGradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

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

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

@keyframes successIconPop {
    from {
        transform: scale(0.4);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Hero & inner-page heroes: staggered load */
.promo-site .hero-content > * {
    opacity: 0;
    transform: translateY(28px);
}

.promo-site .hero-content.promo-hero-ready > * {
    animation: promoFadeUp 0.65s var(--ease-out-expo) forwards;
}

.promo-site .hero-content.promo-hero-ready > *:nth-child(1) { animation-delay: 0.04s; }
.promo-site .hero-content.promo-hero-ready > *:nth-child(2) { animation-delay: 0.1s; }
.promo-site .hero-content.promo-hero-ready > *:nth-child(3) { animation-delay: 0.16s; }
.promo-site .hero-content.promo-hero-ready > *:nth-child(4) { animation-delay: 0.22s; }
.promo-site .hero-content.promo-hero-ready > *:nth-child(5) { animation-delay: 0.28s; }
.promo-site .hero-content.promo-hero-ready > *:nth-child(6) { animation-delay: 0.34s; }
.promo-site .hero-content.promo-hero-ready > *:nth-child(7) { animation-delay: 0.4s; }
.promo-site .hero-content.promo-hero-ready > *:nth-child(8) { animation-delay: 0.46s; }

.promo-site .module-hero-content > .module-hero-text > *,
.promo-site .module-hero-content > .module-hero-image {
    opacity: 0;
    transform: translateY(24px);
}

.promo-site .module-hero-content.promo-hero-ready > .module-hero-text > * {
    animation: promoFadeUp 0.6s var(--ease-out-expo) forwards;
}

.promo-site .module-hero-content.promo-hero-ready > .module-hero-text > *:nth-child(1) { animation-delay: 0.03s; }
.promo-site .module-hero-content.promo-hero-ready > .module-hero-text > *:nth-child(2) { animation-delay: 0.08s; }
.promo-site .module-hero-content.promo-hero-ready > .module-hero-text > *:nth-child(3) { animation-delay: 0.13s; }
.promo-site .module-hero-content.promo-hero-ready > .module-hero-text > *:nth-child(4) { animation-delay: 0.18s; }
.promo-site .module-hero-content.promo-hero-ready > .module-hero-text > *:nth-child(5) { animation-delay: 0.23s; }
.promo-site .module-hero-content.promo-hero-ready > .module-hero-text > *:nth-child(6) { animation-delay: 0.28s; }
.promo-site .module-hero-content.promo-hero-ready > .module-hero-text > *:nth-child(7) { animation-delay: 0.33s; }
.promo-site .module-hero-content.promo-hero-ready > .module-hero-text > *:nth-child(8) { animation-delay: 0.38s; }

.promo-site .module-hero-content.promo-hero-ready > .module-hero-image {
    animation: promoFadeUp 0.75s var(--ease-out-expo) forwards;
    animation-delay: 0.2s;
}

.promo-site .module-hero-content.promo-hero-ready .module-hero-image img {
    animation: promoHeroFloat 7s ease-in-out 0.85s infinite;
}

.promo-site .success-card.animate-fade-in .success-icon {
    animation: successIconPop 0.55s var(--ease-spring) 0.12s both;
}

.promo-site .section-eyebrow {
    position: relative;
}

.promo-site .section-header .section-eyebrow::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    margin: 0.5rem auto 0;
    border-radius: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-purple), transparent);
    opacity: 0.65;
}

.promo-site .module-category {
    transition: box-shadow var(--transition-normal), border-color var(--transition-normal), transform var(--transition-normal);
}

.promo-site .module-category:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
    border-color: rgba(108, 29, 165, 0.2);
}

.promo-site .module-category-item {
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), background var(--transition-fast);
}

.promo-site .module-category-item:hover {
    box-shadow: var(--shadow-md);
}

.promo-site .industry-card,
.promo-site .help-card {
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.promo-site .industry-card:hover,
.promo-site .help-card:hover {
    transform: translateY(-5px);
}

.promo-site .footer-social-link {
    transition: transform var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
}

.promo-site .footer-social-link:hover {
    transform: translateY(-3px) scale(1.05);
}

.promo-site .pricing-card:hover {
    transform: translateY(-6px);
}

.promo-site .pricing-card.popular:hover {
    transform: translateY(-8px);
}

.promo-site .promo-logo {
    transition: transform var(--transition-fast);
}

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

@media (prefers-reduced-motion: reduce) {
    .promo-site .hero-section::before,
    .promo-site .hero-section::after,
    .promo-site .module-hero::before {
        animation: none;
        opacity: 0.2;
    }

    .promo-site .cta-section .cta-ai-element {
        animation: none;
    }

    .promo-site .module-hero-content.promo-hero-ready .module-hero-image img {
        animation: none;
    }

    .promo-site .hero-badge-ai {
        animation: none;
    }

    .promo-site .hero-content > *,
    .promo-site .module-hero-content > .module-hero-text > *,
    .promo-site .module-hero-content > .module-hero-image {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }

    .promo-site .success-card.animate-fade-in .success-icon {
        animation: none;
    }

    .auth-page-bg,
    .auth-page-bg::before,
    .auth-page-bg::after {
        animation: none !important;
    }

    .auth-video-bg__media {
        display: none !important;
    }

    .auth-page-bg {
        background-size: auto;
    }

    .auth-card,
    .auth-brand {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    
    /* Dark hero reduced motion */
    .hero-section::before {
        animation: none !important;
    }
    
    .hero-title span {
        animation: none !important;
    }
    
    .dashboard-main-card,
    .floating-card,
    .floating-card-1,
    .floating-card-2,
    .floating-card-3,
    .floating-card-4,
    .floating-card-5 {
        animation: none !important;
        transform: none !important;
    }
    
    .ai-status-dot {
        animation: none !important;
    }
    
    .particle {
        display: none !important;
    }
    
    .hero-particles {
        display: none !important;
    }
    
    .hero-float-icon {
        animation: none !important;
    }
}

/* Dashboard entrance animations */
.hero-dashboard .floating-card {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
}

.hero-dashboard .dashboard-main-card {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
}

.promo-site .hero-content.promo-hero-ready ~ .hero-dashboard .dashboard-main-card {
    animation: dashboardCardEnter 0.8s var(--ease-out-expo) 0.3s forwards;
}

.promo-site .hero-content.promo-hero-ready ~ .hero-dashboard .floating-card-1 {
    animation: dashboardCardEnter 0.6s var(--ease-out-expo) 0.5s forwards;
}

.promo-site .hero-content.promo-hero-ready ~ .hero-dashboard .floating-card-2 {
    animation: dashboardCardEnter 0.6s var(--ease-out-expo) 0.6s forwards;
}

.promo-site .hero-content.promo-hero-ready ~ .hero-dashboard .floating-card-3 {
    animation: dashboardCardEnter 0.6s var(--ease-out-expo) 0.7s forwards;
}

.promo-site .hero-content.promo-hero-ready ~ .hero-dashboard .floating-card-4 {
    animation: dashboardCardEnter 0.6s var(--ease-out-expo) 0.8s forwards;
}

.promo-site .hero-content.promo-hero-ready ~ .hero-dashboard .floating-card-5 {
    animation: dashboardCardEnter 0.6s var(--ease-out-expo) 0.9s forwards;
}

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

/* =========================================================================
   Scroll-Triggered Animations
   ========================================================================= */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Section reveal animations */
.section-hidden {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================================
   Button Ripple Effect
   ========================================================================= */
.promo-btn {
    position: relative;
    overflow: hidden;
}

.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: rippleEffect 0.6s ease-out forwards;
    pointer-events: none;
}

@keyframes rippleEffect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* =========================================================================
   Loading Skeleton Animation
   ========================================================================= */
.skeleton-loader {
    background: linear-gradient(90deg, 
        var(--lighter-purple) 25%, 
        var(--lightest-purple) 50%, 
        var(--lighter-purple) 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer 1.5s infinite;
    border-radius: 8px;
}

@keyframes skeletonShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-loaded {
    animation: skeletonFadeOut 0.5s ease forwards;
}

@keyframes skeletonFadeOut {
    to { opacity: 0; }
}

/* Page loaded state */
body.page-loaded .skeleton-loader {
    display: none;
}

/* =========================================================================
   Enhanced Card Hover Effects
   ========================================================================= */
.module-card,
.industry-card,
.help-card {
    position: relative;
    overflow: hidden;
}

/* Pricing card needs overflow visible for the badge */
.pricing-card {
    position: relative;
    overflow: visible;
}

.module-card::after,
.pricing-card::after,
.industry-card::after,
.help-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(148, 26, 210, 0.03), 
        transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}

.module-card:hover::after,
.pricing-card:hover::after,
.industry-card:hover::after,
.help-card:hover::after {
    left: 100%;
}

/* =========================================================================
   Futuristic Glow Effects
   ========================================================================= */
.glow-purple {
    box-shadow: 0 0 20px rgba(148, 26, 210, 0.3);
}

.glow-purple-intense {
    box-shadow: 0 0 30px rgba(148, 26, 210, 0.5);
}

.text-glow {
    text-shadow: 0 0 10px rgba(148, 26, 210, 0.5);
}

/* Animated gradient text */
.gradient-text-animated {
    background: linear-gradient(90deg, 
        var(--primary-purple), 
        #22d3ee, 
        var(--primary-purple));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientTextShift 3s linear infinite;
}

@keyframes gradientTextShift {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* =========================================================================
   Form Field Focus Animations
   ========================================================================= */
.promo-input,
.promo-textarea {
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.promo-input:focus,
.promo-textarea:focus {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(148, 26, 210, 0.1), 0 4px 15px rgba(148, 26, 210, 0.1);
    transform: translateY(-1px);
}

/* =========================================================================
   Reduced Motion - Disable new animations
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
    .scroll-animate,
    .section-hidden {
        opacity: 1;
        transform: none;
        transition: none;
    }
    
    .btn-ripple {
        display: none;
    }
    
    .skeleton-loader {
        animation: none;
    }
    
    .gradient-text-animated {
        animation: none;
    }
    
    .hero-widget {
        animation: none !important;
        opacity: 1;
    }
}
