/* Visible border and background for contact form input fields */
#contactForm input[type="text"],
#contactForm input[type="email"],
#contactForm input[type="tel"],
#contactForm input[type="number"],
#contactForm textarea,
#contactForm select {
    border: none;
    border-radius: 6px;
    background: #fff;
    color: #222;
    box-shadow: none;
    outline: none;
    padding: 0.6em 1em;
    font-size: 1rem;
    transition: border-color 0.2s;
}
#contactForm input:focus,
#contactForm textarea:focus,
#contactForm select:focus {
    border: none;
}
/* Unique icon colors for Powerful Features section */
#features .card-header-row .card-icon {
    color: #2D3FE7;
}
#features .card-header-row .card-icon i {
    color: inherit;
}
#features .card-header-row:nth-of-type(1) .card-icon { color: #2D3FE7; } /* Hybrid Architecture */
#features .card-header-row:nth-of-type(2) .card-icon { color: #E67E22; } /* Performance */
#features .card-header-row:nth-of-type(3) .card-icon { color: #27AE60; } /* Security & Privacy */
#features .card-header-row:nth-of-type(4) .card-icon { color: #8E44AD; } /* Easy Integration */
#features .card-header-row:nth-of-type(5) .card-icon { color: #E74C3C; } /* Advanced Analytics */
#features .card-header-row:nth-of-type(6) .card-icon { color: #F1C40F; } /* Collaboration */
/* Left-align and vertically center the subtitle in Why Prajnya? section */
#solutions .section-subtitle {
    text-align: left;
    margin-left: 0;
    margin-right: auto;
    display: flex;
    align-items: center;
    min-height: 3.2rem;
}
/* Custom grid for Customer Insights & Value section: 2 cards in row 1, 3 cards in row 2 */
.insights-value-2row-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 2rem;
}
.insights-value-2row-3col .card:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}
.insights-value-2row-3col .card:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}
.insights-value-2row-3col .card:nth-child(3) {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}
.insights-value-2row-3col .card:nth-child(4) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}
.insights-value-2row-3col .card:nth-child(5) {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}
@media (max-width: 900px) {
    .insights-value-2row-3col {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto auto;
    }
    .insights-value-2row-3col .card {
        grid-column: 1 / 2 !important;
        grid-row: auto !important;
    }
}
/* Tighter line spacing for Regulated Industries cards */
.industries-tight-cards .glass-card {
    line-height: 1.3;
    padding-top: 1.1rem;
    padding-bottom: 1.1rem;
}
.industries-tight-cards .glass-card h3,
.industries-tight-cards .glass-card h4 {
    margin-top: 0.5rem;
    margin-bottom: 0.3rem;
}
.industries-tight-cards .glass-card ul {
    margin-top: 0.2rem;
    margin-bottom: 0.2rem;
}
.industries-tight-cards .glass-card p {
    margin-top: 0.3rem;
    margin-bottom: 0.3rem;
}
.industries-tight-cards .industry-metric {
    margin-top: 0.5rem;
    margin-bottom: 0.2rem;
}
/* Card header row for icon + heading alignment */
.card-header-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}
.card-header-row {
    font-size: 1.3rem;
    margin-bottom: 0;
}
.card-header-row h3 {
    margin: 0;
    font-size: 1.18rem;
    font-weight: 700;
}
/* Tighter spacing for Insights & Value Card 3 lists */
.insights-value-tight-list ul {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    padding-left: 1.2rem;
}
.insights-value-tight-list li {
    margin-bottom: 0.25rem;
    line-height: 1.3;
    padding: 0;
}
/* Enhanced Table Styling for Modern Look */
.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(44,62,80,0.08);
    margin-bottom: 2rem;
}
.comparison-table th, .comparison-table td {
    padding: 1rem 1.2rem;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}
.comparison-table thead th {
    background: #2d3fe7;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.03em;
}
.comparison-table tbody tr:nth-child(even) {
    background: #f8f9fa;
}
.comparison-table tbody tr:hover {
    background: #e6eaff;
}
.comparison-table .highlight {
    background: #e6eaff;
    color: #2d3fe7;
    font-weight: 600;
}
.comparison-table .success { color: #27ae60; }
.comparison-table .warning { color: #f39c12; }
.comparison-table .danger { color: #e74c3c; }
.comparison-table .check-icon { color: #27ae60; }
.comparison-table .cross-icon { color: #e74c3c; }
.comparison-table .partial-icon { color: #f39c12; }

/* Enhanced Card & Section Spacing */
.section {
    padding: 6rem 0 5rem 0;
    margin-top: 3rem;
    margin-bottom: 3rem;
}
.cards.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.card.glass-card {
    background: rgba(255,255,255,0.95);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(44,62,80,0.10);
    padding: 2rem 1.5rem;
    transition: box-shadow 0.2s;
}
.card.glass-card:hover {
    box-shadow: 0 8px 32px rgba(44,62,80,0.16);
}
.card-icon {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
.section-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.section-subtitle {
    font-size: 1.2rem;
    color: #6c7a89;
    margin-bottom: 2rem;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
:root {
    /* Modern AI Color Palette */
    --primary-blue: #0066FF;
    --primary-cyan: #00D4FF;
    --primary-purple: #8B5CF6;
    --primary-pink: #EC4899;
    --accent-green: #10B981;
    --accent-yellow: #F59E0B;
    
    /* Light Professional Theme Colors */
    --bg-light: #FFFFFF;
    --bg-lighter: #F8FAFC;
    --surface-light: rgba(248, 250, 252, 0.9);
    --surface-white: rgba(255, 255, 255, 0.95);
    
    /* Text Colors */
    --text: #1E293B;
    --text-dark: #0F172A;
    --text-gray: #334155;
    --text-muted: #475569;
    
    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(148, 163, 184, 0.2);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-blue), var(--primary-cyan));
    --gradient-secondary: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    --gradient-accent: linear-gradient(135deg, var(--primary-cyan), var(--accent-green));
    
    /* Spacing (compressed for tighter layout) */
    --container: 1100px;
    --spacing-xs: 3px;
    --spacing-sm: 6px;
    --spacing-md: 10px;
    --spacing-lg: 12px;
    --spacing-xl: 14px;
    --spacing-2xl: 20px;
    --spacing-3xl: 24px;
}

/* Performance Optimizations */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Performance boost for animations */
.reveal, .card, .btn {
    will-change: opacity, transform;
}

/* Optimize sections for faster rendering */
.section {
    content-visibility: auto;
    contain-intrinsic-size: 0 500px;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

/* Optimize image rendering */
img {
    content-visibility: auto;
    contain-intrinsic-size: 600px 400px;
    image-rendering: -webkit-optimize-contrast;
    max-width: 100%;
    height: auto;
    display: block;
}

/* Optimize card rendering */
.card {
    contain: layout style paint;
}

/* Optimize animations */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 64px;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.5;
    font-size: 13px;
    background: var(--bg-lighter);
    overflow-x: hidden;
    position: relative;
}

/* Subtle Gradient Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(139, 92, 246, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Subtle Floating Orbs */
body::after {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(0, 102, 255, 0.03) 0%, transparent 30%),
        radial-gradient(circle at 70% 60%, rgba(236, 72, 153, 0.03) 0%, transparent 30%);
    animation: float 30s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.container {
    position: relative;
    z-index: 1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: 100%;
    margin-left: 100px;
    margin-right: 100px;
    padding: 0;
}

/* Ensure header, brand, and footer align with page body left margin */


.brand {
    position: left;
    left: 0;
    margin-left: 0;
    text-align: left;

}


/* Buttons */
.btn {
    display: inline-flex;
    align-items: right;
    justify-content: right;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.82rem;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: #0047B3;
    transform: translateY(-1px);
}

 .btn-outline {
    background: #2D3FE7;
    border: 2px solid #2D3FE7;
    color: #fff;
    border-radius: 24px;
}

 .btn-outline:hover {
    background: #0047B3;
    color: #fff;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Navigation */
.header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    min-width: 100vw;
    height: 120px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    z-index: 1000 !important;
    transition: all 0.25s ease;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000 !important;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.nav-inner {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    height: 130px;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.brand {
        margin-right: auto;
        display: flex;
        align-items: flex-start;
        gap: 18px;
        text-decoration: none;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: absolute;
        top: 18px;
        left: 32px;
        z-index: 1100;
}

.brand:hover {
    transform: translateY(-2px);
}

.brand-mark {
    width: 52px;
    height: 52px;
    background: var(--gradient-primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    font-size: 2.2rem;
    box-shadow: 0 6px 18px rgba(0, 102, 255, 0.32);
    position: relative;
    overflow: hidden;
}

.brand-mark::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 100vw;
    left: 0;
    right: 0;
    top: 0;
    z-index: 100;
    background: var(--header-bg);
    box-shadow: var(--header-shadow);
    position: fixed;
    transition: box-shadow 0.2s;
    min-height: 96px;
}

@keyframes your-animation-name {
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-title {
    font-size: 2.1rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -1.2px;
   
}

.brand-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 2px;
}

.nav-desktop {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: flex-end;
    width: auto;
    margin-top: 32px;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: color 0.2s;
    position: relative;
    padding: 8px 10px;
    margin: 0 2px;
    border-radius: 8px;
    background: transparent;
    box-shadow: none;
    letter-spacing: 0.01em;
    border: none;
    outline: none;
    display: inline-block;
}

.nav-link::after {
    display: none;
}

.nav-link:hover {
    color: var(--primary-blue);
    background: rgba(0,102,255,0.07);
    box-shadow: none;
    transform: none;
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.theme-toggle {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--primary-cyan);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.theme-toggle:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: rotate(180deg);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.btn-outline {
    padding: 10px 24px;
    border-radius: 10px;
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-cyan);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.3s;
    z-index: -1;
}

.btn-outline:hover {
    color: white;
    border-color: transparent;
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.5);
}

.btn-outline:hover::before {
    left: 0;
}

.hamburger {
    display: none;
    width: 48px;
    height: 48px;
    border: none;
    background: linear-gradient(135deg, var(--primary-blue) 60%, var(--primary-cyan) 100%);
    border-radius: 50%;
    color: #fff;
    font-size: 1.35rem;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(44,62,80,0.10);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger:hover {
    background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-blue) 100%);
    color: #fff;
    box-shadow: 0 4px 18px rgba(44,62,80,0.13);
    transform: scale(1.08);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 9999;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    pointer-events: none;
}

.mobile-menu.active {
    right: 0;
    opacity: 1;
    pointer-events: all;
}

.mobile-panel {
    position: absolute;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--glass-border);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.1);
    padding: 80px 32px 32px;
    overflow-y: auto;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active .mobile-panel {
    right: 0;
}

.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
}

.mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border: none;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--primary-cyan);
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s;
}

.mobile-close:hover {
    background: rgba(236, 72, 153, 0.2);
    color: var(--primary-pink);
    transform: rotate(90deg);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav .nav-link {
    padding: 16px 20px;
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    border-radius: 12px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-nav .nav-link::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
}

.mobile-nav .nav-link:hover {
    background: var(--glass-bg);
    color: var(--text-dark);
    transform: translateX(8px);
}

.mobile-nav .nav-link:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.mobile-actions {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-actions .btn {
    width: 100%;
    justify-content: center;
}
f
/* Page Body */
 .page-body {
    position: relative;
    margin-top: 140px;
    padding-top: 240px;
    padding-bottom: 100px;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
    min-height: 100vh;
    width: 100%;
    z-index: 1;
}

/* Main Content */
main {
    display: block;
    position: relative;
    z-index: 1;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 102, 255, 0.6);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
    border-radius: 14px;
}

/* Glass Card Effect */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: var(--spacing-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.5s;
}

.glass-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 102, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.2);
}

.glass-card:hover::before {
    left: 100%;
}

.nav-logo {
    height: 32px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.nav-links {
    display: flex;
    gap: var(--spacing-xl);
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-toggle {
    display: none;
}

/* Hero Section */
.hero {
    padding: var(--spacing-lg) 0;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-cyan), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 8s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientFlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.hero-media {
    position: relative;
    animation: slideUp 0.8s ease-out 0.2s backwards;
}

.hero-media::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.2) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.hero-media img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 102, 255, 0.3);
    border: 1px solid var(--glass-border);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-media img:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 40px 100px rgba(0, 102, 255, 0.5);
}

.mini-stats {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-num {
    font-size: 1.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}


.stat-lbl {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Sections */
.section {
    padding: calc(var(--spacing-lg) + 2rem) 0;
    position: relative;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 1.9rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: var(--spacing-xs);
    background: linear-gradient(135deg, var(--text-dark), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 0.92rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: var(--spacing-md);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap;
}

/* Cards Grid */
.grid-3 {
    contain: layout style paint;
    gap: var(--spacing-xs);
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.hero {
    position: relative;
    width: 100%;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px; /* Add space for fixed header */
    padding-bottom: 0;
    z-index: 2;
}
.card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.3);
}

.card:hover::after {
    opacity: 1;
}

/* Solutions section — consistent hover / focus for every card */
#solutions .card {
    transition: transform 0.28s cubic-bezier(0.2, 0.9, 0.2, 1),
                box-shadow 0.28s ease, border-color 0.28s ease;
    will-change: transform, box-shadow;
    cursor: pointer;
}

#solutions .card:focus-within,
#solutions .card:focus {
    outline: none;
}

#solutions .card::before {
    /* left-to-right sheen */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.06) 50%, transparent 100%);
    transform: translateX(-120%);
    transition: transform 0.6s cubic-bezier(0.2,0.9,0.2,1);
    pointer-events: none;
}

#solutions .card:hover,
#solutions .card:focus-within {
    transform: translateX(10px) scale(1.01);
    border-color: rgba(0, 212, 255, 0.45);
    box-shadow: 0 18px 48px rgba(0, 102, 255, 0.16);
}

#solutions .card:hover::before,
#solutions .card:focus-within::before {
    transform: translateX(220%);
}

/* subtle keyboard focus ring for accessibility */
#solutions .card:focus-visible {
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.08), 0 18px 48px rgba(0, 102, 255, 0.12);
}

/* Disable transform-based hover on touch-only devices and use a subtle background instead */
@media (hover: none) and (pointer: coarse) {
    #solutions .card {
        transform: none !important;
        box-shadow: none !important;
    }
    #solutions .card:active {
        background: rgba(255, 255, 255, 0.03);
    }
}

.card-icon {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-xs);
    display: inline-block;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
}

.card h3 {
    font-size: 1rem;
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
}

.card p {
    color: var(--text-gray);
    line-height: 1.5;
    font-size: 0.85rem;
    margin-bottom: var(--spacing-xs);
}

.card ul {
    list-style: none;
    padding: 0;
    margin-top: var(--spacing-md);
}

.card ul li {
    color: var(--text-muted);
    padding: 8px 0;

/* Solutions section: show two cards at a time and enable hover-driven horizontal shifting */
#solutions .cards {
    display: flex;
    gap: var(--spacing-md);
    overflow: hidden;
    align-items: stretch;
    /* ensure children don't wrap */
    flex-wrap: nowrap;
}

#solutions .cards .card {
    flex: 0 0 50%;
    max-width: 50%;
}

#solutions .cards.transition {
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Keep default grid behavior for other sections by scoping to #solutions */
    padding-left: 28px;
    position: relative;
}

.card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-cyan);
    font-weight: 700;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.hero-header {
    position: relative;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: var(--spacing-xl);
    align-items: center;
    margin-bottom: var(--spacing-lg);
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.hero-dashboard {
    display: flex;
    justify-content: flex-end;
    align-items: start;
    transform: translateX(40px) translateY(-24px);
}

.hero-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(45, 63, 231, 0.15);
    transition: all 0.3s ease;
    transform: perspective(1000px) rotateY(-5deg);
}

.hero-image:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 40px rgba(45, 63, 231, 0.15);
}

@media (max-width: 768px) {
    .hero-header {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .hero-dashboard {
        justify-content: center;
        margin-top: var(--spacing-lg);
    }
    
    .hero-image {
        max-width: 100%;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -25%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at center, 
        rgba(45, 63, 231, 0.1) 0%,
        rgba(0, 212, 255, 0.1) 25%,
        rgba(0, 246, 173, 0.1) 50%,
        transparent 70%
    );
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-visual {
    position: relative;
}

.hero-visual::after {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 30px;
    background: var(--gradient-accent);
    opacity: 0.1;
    filter: blur(40px);
    z-index: -1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 5px 12px;
    background: var(--gradient-primary);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-lg);
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
}

.ai-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.stat-card {
    background: var(--card-bg);
    padding: var(--spacing-lg);
    border-radius: 16px;
    border: 1px solid var(--border);
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--secondary);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.logo-container {
    position: relative;
    display: inline-block;
}

.logo-glow {
    position: absolute;
    inset: -10px;
    background: var(--gradient-primary);
    opacity: 0;
    border-radius: 8px;
    filter: blur(20px);
    transition: opacity 0.3s ease;
}

.logo-container:hover .logo-glow {
    opacity: 0.3;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--muted);
    margin-bottom: var(--spacing-xl);
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-2xl);
}

.trust-bar {
    border-top: 1px solid var(--border);
    padding-top: var(--spacing-xl);
}

.trust-bar p {
    color: var(--muted);
    margin-bottom: var(--spacing-md);
}

.company-logos {
    display: flex;
    gap: var(--spacing-xl);
    align-items: center;
}

.company-logos img {
    height: 32px;
    opacity: 0.7;
}

/* Benefits Section */
.benefits {
    padding: var(--spacing-2xl) 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}


.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

/* 4-column variant for desktop; keeps responsive fallbacks */
.benefits-grid.benefits-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.benefit-card {
    background: var(--card-bg);
    padding: var(--spacing-xl);
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: transparent;
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card:hover {
    transform: translateY(-4px);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.benefit-card h3 {
    color: var(--primary);
    margin-bottom: var(--spacing-md);
}

/* Features Detail */
.features-detail {
    padding: var(--spacing-2xl) 0;
    background: var(--section-light);
    position: relative;
    overflow: hidden;
}

.features-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 63, 231, 0.05), rgba(0, 212, 255, 0.05));
}

.features-detail {
    /* Ensure readable dark text on the light feature surface */
    color: var(--text-dark);
}

.features-detail .section-title,
.features-detail h3,
.features-detail p {
    color: var(--text-dark);
}

.features-detail .feature-metric {
    color: var(--primary);
    font-weight: 500;
}

/* Comparison Table Styles */
.comparison-section {
    padding: var(--spacing-2xl) 0;
    background: var(--surface);
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: var(--spacing-2xl);
    border-radius: 16px;
    overflow: hidden;
    background: var(--card-bg);
    border: 1px solid var(--border);
}

.comparison-table th,
.comparison-table td {
    padding: var(--spacing-sm);
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

.comparison-table th {
    background: var(--surface-light);
    font-weight: 600;
    color: var(--text-dark);
}

.comparison-table td {
    color: var(--text);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table td:first-child {
    font-weight: 500;
    color: var(--text-dark);
}

.check-icon {
    color: #10B981;
    font-size: 1.1em;
}

.cross-icon {
    color: #FF4B6E;
    font-size: 1.1em;
}

.partial-icon {
    color: #FFB547;
    font-size: 1.2em;
}

/* Feature Cards Enhancement */
.feature-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: var(--spacing-xl);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.feature-icon i {
    font-size: 24px;
    color: var(--text-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.feature-group {
    background: white;
    padding: var(--spacing-xl);
    border-radius: 16px;
    border: 1px solid var(--border);
}

/* Ensure readable text/icons inside white feature groups */
.feature-group {
    color: var(--text-dark);
}

.feature-group .feature-icon i {
    color: var(--primary);
}

.feature-group h3 {
    color: var(--primary);
    margin-bottom: var(--spacing-lg);
}

.feature-group ul {
    list-style: none;
    margin-bottom: var(--spacing-lg);
}

.feature-group li {
    margin-bottom: var(--spacing-sm);
    padding-left: var(--spacing-md);
    position: relative;
}

.feature-group li:before {
    content: "✓";
    color: var(--accent);
    position: absolute;
    left: 0;
}

.feature-metric {
    color: var(--muted);
    font-size: 0.8rem;
}

/* Industries Section */
.industries {
    padding: var(--spacing-2xl) 0;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.industry-card {
    background: rgba(255, 255, 255, 0.02);
    padding: var(--spacing-xl);
    border-radius: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
}

.industry-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(45, 63, 231, 0.1),
        rgba(0, 212, 255, 0.1)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary);
}

.industry-card:hover::before {
    opacity: 1;
}

.industry-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.industry-card h3 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    font-size: 1.15rem;
}

.industry-card h4 {
    color: var(--secondary);
    margin-bottom: var(--spacing-xs);
    font-size: 0.92rem;
    font-weight: 600;
}

.industry-content ul {
    list-style: none;
    margin: var(--spacing-sm) 0;
    padding: 0;
}

.industry-content li {
    color: var(--text-muted);
    margin-bottom: 4px;
    position: relative;
    padding-left: var(--spacing-sm);
    font-size: 0.88rem;
}

.industry-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.industry-metric {
    margin: var(--spacing-sm) 0;
    padding: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid var(--border);
}

.industry-metric strong {
    display: block;
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 2px;
}

.industry-metric span {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-size: 0.9rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.industry-metric {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border);
}

.industry-metric strong {
    display: block;
    font-size: 1.5rem;
    color: var(--accent);
}

/* Integration Section */
.integrations-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(45, 63, 231, 0.05) 0%, rgba(0, 214, 255, 0.05) 100%);
}

.integration-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.integration-category {
    padding: 2rem;
    border-radius: 1rem;
}

.integration-category h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.integration-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.integration-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.integration-logo img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: grayscale(1);
    transition: filter 0.3s ease;
}

.integration-logo:hover img {
    filter: grayscale(0);
}

.integration-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
    color: var(--primary);
}

/* Value Proposition Section */
.value-proposition {
    padding: 4rem 0;
}

.comparison-wrapper {
    margin-top: 2rem;
    padding: 2rem;
    border-radius: 1rem;
    overflow-x: auto;
}

.comparison-wrapper {
    /* Ensure light site text inside the glass comparison area */
    color: var(--text);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th {
    background: rgba(45, 63, 231, 0.1);
    font-weight: 600;
}

.comparison-table th.highlight {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-cyan));
    color: #FFFFFF;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.comparison-table td.highlight {
    background: rgba(0, 102, 255, 0.05);
}

.comparison-table td.highlight.success {
    background: rgba(0, 102, 255, 0.05);
    color: var(--text-dark);
    font-weight: 500;
}

.success {
    color: #00F6AD;
}

.warning {
    color: #FFB800;
}

.danger {
    color: #FF4646;
}

/* Pricing Section */
.pricing-section {
    padding: var(--spacing-2xl) 0;
    background: var(--surface);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.pricing-card {
    background: var(--card-bg);
    border: 2px solid var(--border);
    border-radius: 24px;
    padding: var(--spacing-xl);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary);
    box-shadow: 0 12px 48px rgba(45, 63, 231, 0.15);
}

.pricing-card-featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(45, 63, 231, 0.05), rgba(0, 212, 255, 0.05));
    transform: scale(1.05);
}

.pricing-card-featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -5px;
    right: var(--spacing-lg);
    background: var(--gradient-primary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.pricing-header h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: var(--spacing-sm) 0;
}

.currency {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-top: 6px;
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.period {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 16px;
}

.pricing-description {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.pricing-features {
    list-style: none;
    margin: var(--spacing-md) 0;
    flex-grow: 1;
}

.pricing-features li {
    padding: var(--spacing-xs) 0;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.82rem;
}

.pricing-features li i {
    color: var(--accent);
    font-size: 0.9rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
    margin-top: var(--spacing-lg);
}

.pricing-note {
    text-align: center;
    margin-top: var(--spacing-2xl);
    padding: var(--spacing-lg);
    background: rgba(45, 63, 231, 0.05);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.pricing-note p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.pricing-note i {
    color: var(--primary);
    margin-right: var(--spacing-sm);
}

/* Contact Form */
.contact {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(0, 246, 173, 0.05) 0%, rgba(45, 63, 231, 0.05) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

.contact-info {
    padding-right: 1rem;
}

.contact-benefits {
    margin: 1.5rem 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.benefit-item i {
    font-size: 1.5rem;
    color: var(--primary);
    padding: 1rem;
    background: rgba(45, 63, 231, 0.1);
    border-radius: 50%;
}

.benefit-item h4 {
    margin: 0 0 0.25rem;
    font-weight: 600;
    font-size: 0.92rem;
}

.benefit-item p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.82rem;
}

.contact-social {
    margin-top: 3rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--primary);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.contact-form {
    padding: 2rem;
    border-radius: 1rem;
    width: 100%;
}

/* Use dark text for contact form when it has a white background; overridden by .glass-effect when present */
.contact-form {
    color: var(--text-dark);
}

.form-header {
    margin-bottom: 2rem;
}

.form-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.form-tab {
    padding: 0.75rem 1.5rem;
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s ease;
}

.form-tab.active {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.6rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: rgba(45, 63, 231, 0.05);
    outline: none;
}

.form-disclaimer {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
}

.form-disclaimer a {
    color: var(--primary);
    text-decoration: none;
}

.form-disclaimer a:hover {
    text-decoration: underline;
}

.form-success {
    text-align: center;
    padding: 2rem;
}

.form-success i {
    font-size: 3rem;
    color: #00F6AD;
    margin-bottom: 1rem;
}

.form-success h3 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.form-success p {
    color: var(--text-secondary);
}

.form-error {
    color: #FF4646;
    text-align: center;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(255, 70, 70, 0.1);
    border-radius: 0.5rem;
}

.contact-form {
    background: white;
    padding: var(--spacing-xl);
    border-radius: 16px;
    border: 1px solid var(--border);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .benefits-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .pricing-card-featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .brand-text {
        display: none;
    }
    
    .brand-mark {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    
    .header-actions {
        gap: 12px;
    }
    
    .header-actions .btn-outline {
        display: none;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .pricing-card-featured {
        transform: scale(1);
    }
    
    .pricing-card-featured:hover {
        transform: translateY(-8px);
    }
    
    .hero {
        padding: 120px 0 var(--spacing-2xl);
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes glow {
    0% { box-shadow: 0 0 5px rgba(0, 212, 255, 0.2); }
    50% { box-shadow: 0 0 20px rgba(0, 212, 255, 0.4); }
    100% { box-shadow: 0 0 5px rgba(0, 212, 255, 0.2); }
}

/* Enhanced Cards */
.feature-card {
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    box-shadow: 0 12px 48px rgba(0, 212, 255, 0.2);
}

.feature-icon {
    animation: pulse 3s ease-in-out infinite;
}

.stat-card {
    animation: glow 3s ease-in-out infinite;
}

/* Glass Morphism Effects */
.glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    /* Ensure readable default text color inside glass overlays */
    color: var(--text);
}

/* Product Demo Section */
.product-demo {
    padding: var(--spacing-2xl) 0;
    background: var(--surface);
    position: relative;
    overflow: hidden;
}

.demo-carousel {
    margin: var(--spacing-xl) 0;
    position: relative;
}

.demo-slide {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.demo-slide.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.demo-card {
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
}

.demo-preview {
    position: relative;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}

.demo-preview img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-bottom: 1px solid var(--border);
}

.demo-overlay {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    z-index: 1;
}

.demo-tag {
    display: inline-block;
    padding: 6px 12px;
    background: var(--gradient-primary);
    border-radius: 100px;
    color: #FFFFFF;
    font-size: 0.8rem;
    font-weight: 600;
}

.demo-content {
    padding: var(--spacing-md);
}

.demo-content h3 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
    font-size: 1.1rem;
}

.demo-content p {
    color: var(--text-muted);
    margin-bottom: var(--spacing-sm);
    font-size: 0.85rem;
}

.demo-features {
    list-style: none;
    padding: 0;
}

.demo-features li {
    color: var(--text-muted);
    margin-bottom: 2px;
    padding-left: var(--spacing-md);
    position: relative;
    font-size: 0.8rem;
}

.demo-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.demo-nav {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-xl);
}

.demo-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--secondary);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.demo-dot.active {
    background: var(--secondary);
    transform: scale(1.2);
}

.demo-cta {
    text-align: center;
    margin-top: var(--spacing-2xl);
}

/* Demo + Features layout fixes
   - Contain image hover inside the preview (no layout shift)
   - Ensure demo card and feature cards match heights on wide screens
   - Responsive breakpoints: stack on small screens */

.demo-preview img {
    transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.2, 1);
    will-change: transform;
}

.demo-card:hover .demo-preview img,
.demo-slide.active .demo-preview img {
    transform: scale(1.03);
}

/* Make demo-card a stretchable, equal-height container */
.demo-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.demo-preview {
    flex: 1 1 auto;
}

.demo-content {
    flex: 0 0 auto;
}

/* Ensure feature cards stretch to match the demo height */
#features .cards .card,
#features .cards .glass-card,
#features .cards .feature-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* On wide viewports, give both sections a shared min-height so they align visually */
@media (min-width: 1000px) {
    #product-demo, #features {
        min-height: 520px;
        display: flex;
        align-items: center;
    }

    /* make inner containers fill and preserve left/right visual balance */
    #product-demo .container, #features .container {
        width: 100%;
    }

    /* keep three feature columns on desktop */
    #features .cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-lg);
        align-items: stretch;
    }

    /* make demo-area narrower than features on ultra-wide if needed */
    .product-demo .container {
        max-width: calc(var(--container) * 0.95);
    }
}

@media (min-width: 1300px) {
    #product-demo, #features {
        min-height: 620px;
    }
}

/* Footer */
.footer {
    background: rgba(248, 250, 252, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(226, 232, 240, 0.5);
    padding: 8px 0 4px 0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-cyan);
    transition: width 0.3s;
}

.footer-links a:hover {
    color: var(--primary-cyan);
}

.footer-links a:hover::after {
    width: 100%;
}

/* Additional Utility Classes */
.text-center {
    text-align: center;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.mt-lg {
    margin-top: var(--spacing-lg);
}

.mb-lg {
    margin-bottom: var(--spacing-lg);
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    .feature-card,
    .feature-icon,
    .stat-card {
        animation: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --text: #000000;
        --text-muted: #333333;
        --border: rgba(0, 0, 0, 0.2);
    }
    
    .glass-effect {
        background: white;
        backdrop-filter: none;
    }
}

/* Back to Top Button */
/* Fixed Back to Top Button */
.back-to-top-fixed {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-cyan) 100%);
    color: white;
    text-decoration: none;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.4);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    cursor: pointer;
}

.back-to-top-fixed.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top-fixed:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 102, 255, 0.6);
    background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-blue) 100%);
}

.back-to-top-fixed i {
    transition: transform 0.3s ease;
}

.back-to-top-fixed:hover i {
    transform: translateY(-3px);
}

/* Copy Protection Styles - DISABLED FOR DEVELOPMENT */
/* PRODUCTION ONLY: Uncomment all sections below when deploying to production */

/*
* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

input,
textarea,
[contenteditable="true"] {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

img {
    pointer-events: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

body, div, p, h1, h2, h3, h4, h5, h6, span, a, li, td, th {
    cursor: default;
}

a, button, input[type="submit"], input[type="button"], .btn {
    cursor: pointer !important;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 200px,
        rgba(45, 63, 231, 0.01) 200px,
        rgba(45, 63, 231, 0.01) 400px
    );
}
*/


@media (max-width: 768px) {
    .back-to-top-fixed {
        width: 42px;
        height: 42px;
        bottom: 20px;
        right: 20px;
        font-size: 1rem;
    }
}

/* Additional compact responsive tweaks */
@media (max-width: 1100px) {
    h1.hero-title { font-size: 1.6rem; }
    h2.section-title { font-size: 1.2rem; }
    .hero-desc { font-size: 0.95rem; }
    .container { padding: 0 var(--spacing-md); }
}

@media (max-width: 900px) {
    h1.hero-title { font-size: 1.4rem; }
    h2.section-title { font-size: 1.05rem; }
    .card h3 { font-size: 0.95rem; }
    .card p, .card ul li { font-size: 0.82rem; }
    .grid-3 { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
}

@media (max-width: 560px) {
    /* stack cards full-width on very small devices */
    .grid-3 { grid-template-columns: 1fr; }
    .brand-title { font-size: 1rem; }
    .brand-sub { font-size: 0.58rem; }
    .nav-inner { padding: 0 var(--spacing-sm); }
    body { font-size: 12px; }
}