:root {
    --bg-primary: #0a0e14;
    --bg-secondary: #151b24;
    --bg-tertiary: #1d2533;
    --bg-card: #1a2332;
    
    --accent-primary: #00e5ff;
    --accent-secondary: #7c3aed;
    --accent-gradient: linear-gradient(135deg, #00e5ff 0%, #7c3aed 100%);
    
    --text-primary: #e4e9f0;
    --text-secondary: #9ca5b4;
    --text-muted: #6b7280;
    
    --border-color: #2d3748;
    --border-subtle: #1a2332;
    
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6);
    
    --glow-primary: 0 0 20px rgba(0, 229, 255, 0.3);
    --glow-secondary: 0 0 20px rgba(124, 58, 237, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 14, 20, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 32px;
    height: 32px;
    color: var(--accent-primary);
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--accent-primary);
}

/* Hero Section */
.hero {
    padding: 10rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 9999px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

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

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

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

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

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

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--bg-primary);
    box-shadow: var(--glow-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-primary), var(--shadow-lg);
}

.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-card);
    border-color: var(--accent-primary);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.stat {
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 0.75rem;
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

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

/* Section Styles */
.section {
    padding: 6rem 0;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

/* Differentiators Section */
.differentiators {
    background: var(--bg-secondary);
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
}

.diff-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

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

.diff-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.diff-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent-primary);
}

.diff-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

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

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.feature-card:hover {
    border-color: var(--border-color);
    box-shadow: var(--shadow-md);
}

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

.feature-icon {
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
}

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

/* Agents Section */
.agents {
    background: var(--bg-secondary);
}

.agent-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin: 4rem 0;
}

.agent-type-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.agent-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gradient);
}

.agent-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.agent-type-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.agent-type-card > p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.agent-features li {
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.agent-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: 700;
}

.agent-capabilities {
    margin-top: 4rem;
}

.agent-capabilities > h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

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

.capability {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.capability h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--accent-primary);
}

.capability p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Tech Stack Section */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
}

.tech-category {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 2rem;
}

.tech-category h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--accent-primary);
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tech-tag {
    padding: 0.5rem 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-primary);
    font-weight: 500;
}

/* Security Section */
.security {
    background: var(--bg-secondary);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
}

.security-item {
    display: flex;
    gap: 1.25rem;
    align-items: start;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.security-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--bg-tertiary);
    border: 1px solid var(--success);
    color: var(--success);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.security-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.security-item p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    background: var(--bg-primary);
}

.cta-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-box h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-box > p:first-of-type {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.cta-note {
    font-size: 0.875rem;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    background: var(--bg-primary);
    border-top: none;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-brand .logo-icon {
    width: 28px;
    height: 28px;
}

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

.footer-badge {
    padding: 0.375rem 0.875rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-secondary);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: none;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .diff-grid,
    .features-grid,
    .agent-types,
    .capabilities-grid,
    .tech-grid,
    .security-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-cta,
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-info {
        flex-direction: column;
    }
    
    .cta-box {
        padding: 2rem;
    }
    
    .cta-box h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 7rem 0 4rem;
    }
    
    .section {
        padding: 4rem 0;
    }
}

/* Comparison Section */
.comparison {
    background: var(--bg-primary);
}

.comparison-overview {
    margin: 3rem 0 4rem;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
}

.comparison-overview h3 {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
}

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

.overview-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.overview-item:hover {
    border-color: var(--accent-primary);
    transform: translateX(4px);
}

.overview-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.overview-item span {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.competitor-categories {
    margin: 4rem 0;
}

.competitor-categories > h3 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.competitor-category {
    margin-bottom: 3rem;
}

.competitor-category h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
}

.competitor-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.competitor-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.competitor-item:hover {
    border-color: var(--border-color);
    box-shadow: var(--shadow-md);
}

.competitor-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.competitor-desc {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.overlap-tag {
    display: inline-block;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--accent-secondary);
    border-radius: 0.375rem;
    color: var(--text-muted);
    font-style: italic;
}

.feature-matrix {
    margin: 4rem 0;
}

.feature-matrix h3 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.matrix-legend {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}











































































































































}

/* Responsive adjustments for comparison section */
@media (max-width: 768px) {
    .overview-grid,
    .summary-grid {
        grid-template-columns: 1fr;
    }
    
    .matrix-legend {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .comparison-table {
        font-size: 0.75rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .comparison-table td:first-child {
        min-width: 180px;
    }
    
    .differentiator-summary {
        padding: 2rem 1rem;
    }
}
/* Updated comparison table styles to eliminate scrollbar */
/* Updated comparison table styles - readable fonts, proper fit */
.matrix-scroll {
    overflow-x: auto;
    border-radius: 0.75rem;
    border: 1px solid var(--border-color);
    margin-top: 1.5rem;
}

.comparison-table {
    width: 100%;
    min-width: 1400px;
    border-collapse: collapse;
    background: var(--bg-card);
    font-size: 0.8125rem;
}

.comparison-table thead {
    background: var(--bg-tertiary);
    position: sticky;
    top: 0;
    z-index: 10;
}

.comparison-table th {
    padding: 0.875rem 0.75rem;
    text-align: left;
    font-weight: 700;
    color: var(--text-primary);
    border-bottom: 2px solid var(--border-color);
    white-space: normal;
    font-size: 0.75rem;
    line-height: 1.4;
    vertical-align: top;
}

.comparison-table th:first-child {
    width: 180px;
    min-width: 180px;
}

.comparison-table th.highlight {
    background: var(--accent-secondary);
    color: var(--text-primary);
}

.comparison-table td {
    padding: 0.875rem 0.75rem;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    text-align: left;
    vertical-align: top;
    line-height: 1.5;
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--text-primary);
    width: 180px;
    min-width: 180px;
    position: sticky;
    left: 0;
    background: var(--bg-card);
    z-index: 5;
}

.comparison-table td.highlight {
    background: rgba(124, 58, 237, 0.1);
    font-weight: 600;
}

.comparison-table tr:hover td {
    background: var(--bg-tertiary);
}

.comparison-table tr:hover td:first-child {
    background: var(--bg-tertiary);
}

.comparison-table tr:hover td.highlight {
    background: rgba(124, 58, 237, 0.15);
}

.check-full {
    color: var(--success);
    font-weight: 700;
}

.check-partial {
    color: var(--warning);
    font-weight: 700;
}

.check-none {
    color: var(--text-muted);
    font-weight: 700;
}

/* Responsive adjustments */
@media (max-width: 1600px) {
    .comparison-table {
        min-width: 1200px;
    }
}

@media (max-width: 1200px) {
    .comparison-table {
        font-size: 0.75rem;
        min-width: 1000px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.625rem;
    }
}

@media (max-width: 768px) {
    .overview-grid,
    .summary-grid {
        grid-template-columns: 1fr;
    }
    
    .matrix-legend {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .comparison-table {
        font-size: 0.6875rem;
        min-width: 900px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.625rem 0.5rem;
    }
    
    .comparison-table td:first-child {
        min-width: 120px;
        width: 120px;
    }
    
    .differentiator-summary {
        padding: 2rem 1rem;
    }
}

/* Contact Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 0;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl), 0 0 40px rgba(0, 229, 255, 0.2);
    animation: slideUp 0.3s ease;
}

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

.modal-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-primary);
}

.modal-close {
    font-size: 2rem;
    font-weight: 300;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.2s ease;
    line-height: 1;
    padding: 0;
    background: none;
    border: none;
}

.modal-close:hover {
    color: var(--accent-primary);
}

.contact-form {
    padding: 2rem;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    color: var(--text-primary);
    font-size: 0.9375rem;
    font-family: inherit;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.form-actions .btn {
    flex: 1;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--success);
    color: var(--success);
}

.form-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--error);
    color: var(--error);
}

.form-message.loading {
    display: block;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
}

/* Responsive */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
    }
}

/* Pricing Section Styles */
.pricing {
    background: var(--bg-secondary);
}

.pricing-categories {
    margin-top: 4rem;
}

.pricing-category {
    margin-bottom: 4rem;
}

.pricing-category h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
}

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

.pricing-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 0.75rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.pricing-item:hover {
    border-color: var(--border-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.pricing-vendor h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.vendor-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.pricing-details {
    border-top: 1px solid var(--border-subtle);
    padding-top: 1.5rem;
}

.price-tier {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0.75rem 0;
}

.tier-name {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.tier-price {
    font-size: 1rem;
    color: var(--accent-primary);
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
}

.pricing-note {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
}

.pricing-summary {
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
}

.pricing-summary h3 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2.5rem;
}

.pricing-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.summary-tier {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.summary-tier:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.summary-tier.highlight {
    background: rgba(124, 58, 237, 0.1);
    border: 2px solid var(--accent-primary);
    position: relative;
}

.summary-tier.highlight::before {
    content: 'Target Range';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    color: var(--bg-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tier-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.tier-range {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

.tier-example {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-style: italic;
}

.summary-note {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-secondary);
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-tertiary);
    border-radius: 0.5rem;
    border-left: 3px solid var(--accent-primary);
}

.summary-note strong {
    color: var(--text-primary);
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-items {
        grid-template-columns: 1fr;
    }
    
    .pricing-summary {
        padding: 2rem 1rem;
    }
    
    .pricing-summary-grid {
        grid-template-columns: 1fr;
    }
}

/* How Exploit Hound Stands Apart Section Styles */
.differentiator-summary {
    margin: 4rem auto 0;
    max-width: 1800px;
}

.differentiator-summary h3 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

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

.summary-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

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

.summary-number {
    position: absolute;
    top: -1rem;
    left: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--accent-gradient);
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.125rem;
    box-shadow: var(--shadow-md);
}

.summary-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    padding-top: 1rem;
    line-height: 1.4;
}

.summary-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.9375rem;
    text-align: justify;
    hyphens: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .summary-grid {
        grid-template-columns: 1fr;
    }
    
    .differentiator-summary {
        padding: 2rem 1rem;
    }
}

/* Pricing column styles for comparison table */
.comparison-table .pricing-cell {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-primary);
    white-space: normal;
    line-height: 1.4;
}

.comparison-table td.pricing-cell {
    vertical-align: middle;
}

.comparison-table .highlight.pricing-cell {
    background: rgba(124, 58, 237, 0.15);
    border-left: 2px solid var(--accent-primary);
}

/* Adjust table to accommodate pricing column */
.comparison-table {
    min-width: 1800px;
}

@media (max-width: 1800px) {
    .comparison-table {
        min-width: 1500px;
    }
}

@media (max-width: 1600px) {
    .comparison-table {
        min-width: 1400px;
    }
    
    .comparison-table .pricing-cell {
        font-size: 0.6875rem;
    }
}

@media (max-width: 1200px) {
    .comparison-table {
        min-width: 1200px;
    }
    
    .comparison-table .pricing-cell {
        font-size: 0.625rem;
    }
}

/* Better visual separation for comparison table rows */
.comparison-table tbody tr {
    border-bottom: 2px solid var(--border-color);
}

.comparison-table tbody tr:nth-child(odd) {
    background: rgba(29, 37, 51, 0.3);
}

.comparison-table tbody tr:nth-child(even) {
    background: rgba(21, 27, 36, 0.3);
}

.comparison-table tbody tr:hover {
    background: rgba(0, 229, 255, 0.05) !important;
    border-bottom: 2px solid var(--accent-primary);
}

.comparison-table tbody tr:hover td {
    background: transparent;
}

.comparison-table tbody tr:hover td.highlight {
    background: rgba(124, 58, 237, 0.15);
}

/* Add spacing between rows */
.comparison-table tbody tr td {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* Make first row (Exploit Hound) stand out more */
.comparison-table tbody tr:first-child {
    border-bottom: 3px solid var(--accent-primary);
    background: rgba(124, 58, 237, 0.08) !important;
}

.comparison-table tbody tr:first-child td {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

/* Hero Coverage Tagline */
.hero-coverage {
    margin: 2rem auto 3rem;
    padding: 1rem 2rem;
    background: rgba(0, 229, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 0.5rem;
    text-align: center;
    max-width: 900px;
}

.hero-coverage p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin: 0;
}

.hero-coverage strong {
    color: var(--accent-primary);
    font-weight: 700;
}

/* New Pricing Section Styles */
.pricing-hero {
    text-align: center;
    margin: 3rem 0;
    padding: 3rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
}

.pricing-tagline h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-tagline p {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin: 4rem 0;
}

.pricing-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), var(--glow-primary);
}

.pricing-card.featured {
    border-color: var(--accent-primary);
    border-width: 3px;
    background: rgba(124, 58, 237, 0.05);
}

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

.pricing-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.pricing-amount {
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.price {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'JetBrains Mono', monospace;
}

.price-period {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

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

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.pricing-example {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
}

.pricing-example h3 {
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2.5rem;
}

.example-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.example-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    border-radius: 0.75rem;
    gap: 0.5rem;
}

.example-qty {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-primary);
    font-family: 'JetBrains Mono', monospace;
}

.example-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.example-calc {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
    margin-top: 0.5rem;
}

.example-total {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 2rem;
    background: rgba(0, 229, 255, 0.1);
    border: 2px solid var(--accent-primary);
    border-radius: 0.75rem;
}

.total-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.total-amount {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'JetBrains Mono', monospace;
}

.example-note {
    text-align: center;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.9375rem;
    padding: 0 2rem;
}

.pricing-cta {
    text-align: center;
    margin: 4rem 0 2rem;
    padding: 3rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
}

.pricing-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-cta p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.pricing-footer-note {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 229, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.1);
    border-radius: 0.75rem;
    margin-top: 3rem;
}

.pricing-footer-note p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9375rem;
}

.pricing-footer-note strong {
    color: var(--accent-primary);
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .example-grid {
        grid-template-columns: 1fr;
    }
    
    .example-total {
        flex-direction: column;
        gap: 1rem;
    }
    
    .pricing-hero {
        padding: 2rem 1rem;
    }
    
    .pricing-tagline h3 {
        font-size: 1.5rem;
    }
    
    .hero-coverage p {
        font-size: 1rem;
    }
}

/* Pricing Page Specific Styles */
.pricing-page {
    padding-top: 8rem;
}

/* Calculator Section */
.calculator-section {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background: var(--bg-card);
    border: 2px solid var(--accent-primary);
    border-radius: 1rem;
}

.calculator-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.calculator-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

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

.calculator-item {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 2rem;
}

.calculator-item label {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    cursor: pointer;
}

.calc-icon {
    font-size: 2.5rem;
    text-align: center;
}

.calc-label {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
}

.calc-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-align: center;
}

.calc-input-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.calc-input-group input {
    flex: 1;
    padding: 1rem;
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    text-align: center;
    transition: all 0.2s ease;
}

.calc-input-group input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1);
}

.calc-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--accent-primary);
    font-family: 'JetBrains Mono', monospace;
    min-width: 60px;
}

.calc-total {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-primary);
    font-family: 'JetBrains Mono', monospace;
    padding: 1rem;
    background: rgba(0, 229, 255, 0.1);
    border-radius: 0.5rem;
}

.calculator-result {
    padding: 2.5rem;
    background: var(--bg-primary);
    border: 2px solid var(--accent-primary);
    border-radius: 1rem;
}

.result-breakdown {
    margin-bottom: 2rem;
}

.result-row {
    display: flex;
    justify-content: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 1rem;
    color: var(--text-secondary);
}

.result-row span:last-child {
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-primary);
}

.result-divider {
    height: 2px;
    background: var(--border-color);
    margin: 1rem 0;
}

.result-total {
    display: flex;
    justify-content: flex-start;
    padding: 1.5rem 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.result-total span:last-child {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.5rem;
}

.result-annual {
    display: flex;
    justify-content: flex-start;
    padding: 1rem 0;
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.result-annual span:last-child {
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    color: var(--success);
}

.calculator-result .btn {
    width: 100%;
    margin-top: 1rem;
}

/* Competitor Pricing Section */
.competitor-pricing-section {
    margin: 4rem 0;
}

.competitor-pricing-section h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

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

.competitor-pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.competitor-pricing-card:hover {
    border-color: var(--border-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.competitor-pricing-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.competitor-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-primary);
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.competitor-price span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
    margin-top: 0.5rem;
}

.competitor-note {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Value Proposition */
.pricing-value-prop {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
}

.pricing-value-prop h3 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

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

.value-prop-item {
    text-align: center;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-prop-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.value-prop-item p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.pricing-cards-section {
    margin: 4rem 0;
}

.pricing-cards-section h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

/* Responsive */
@media (max-width: 768px) {
    .calculator-grid {
        grid-template-columns: 1fr;
    }
    
    .competitor-pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .value-prop-grid {
        grid-template-columns: 1fr;
    }
    
    .result-total span:last-child {
        font-size: 2rem;
    }
}

/* Contact Page Styles */
.contact-page {
    padding-top: 8rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin: 4rem 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-md), var(--glow-primary);
}

.contact-info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-info-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.contact-info-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-form-container {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 1rem;
    padding: 3rem;
}

.contact-form-container h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    padding: 0.875rem 1rem;
    background: var(--bg-tertiary);
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.form-message {
    padding: 1rem;
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.form-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

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

    .contact-form-container {
        padding: 2rem;
    }

    .contact-info {
        gap: 1.5rem;
    }
}

/* Splash Screen */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.splash-logo {
    max-width: 512px;
    width: 80%;
    height: auto;
    animation: fadeInScale 1s ease-out;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Logo Styling */
.logo-image {
    height: 50px;
    width: auto;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.footer-brand .logo-image {
    height: 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .splash-logo {
        max-width: 300px;
        width: 70%;
    }

    .logo-image {
        height: 40px;
    }

    .footer-brand .logo-image {
        height: 35px;
    }
}

/* Updated Navbar Styles */
.navbar .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}


@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        width: 100%;
    }

    .nav-brand .logo-image {
        height: 45px;
    }
}

/* Updated Navbar Layout - Logo and Nav Side by Side */
.navbar .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.nav-brand .logo-image {
    height: 135px;
    width: auto;
}

.footer-brand .logo-image {
    height: 60px;
}

@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        margin-left: 0;
    }

    .nav-brand .logo-image {
        height: 60px;
    }

    .footer-brand .logo-image {
        height: 45px;
    }
}

/* Center nav links properly */
.navbar .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.nav-brand {
    flex: 0 0 auto;
}

.nav-links {
}

/* Reduce spacing between logo and nav links */
.navbar .container {
    gap: 0.5rem;
}

.nav-brand {
    margin-right: 0.5rem;
}

/* Fix navbar overlapping content */
body {
    padding-top: 120px;
}

.hero {
    padding-top: 4rem;
}

/* Ensure splash screen is above everything */
.splash-screen {
    z-index: 10000 !important;
}

@media (max-width: 768px) {
    body {
        padding-top: 140px;
    }
}

/* Highlights Section */
.highlights-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.highlights-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

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

.highlight-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    border-color: var(--accent-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md), var(--glow-primary);
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.highlight-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.highlight-item p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

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

    .highlights-section {
        padding: 3rem 0;
    }
}

/* Coming Soon Page */
.coming-soon-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
}

.coming-soon-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.coming-soon-icon {
    font-size: 6rem;
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.coming-soon-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon-subtitle {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

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

@media (max-width: 768px) {
    .coming-soon-icon {
        font-size: 4rem;
    }

    .coming-soon-title {
        font-size: 2rem;
    }

    .coming-soon-subtitle {
        font-size: 1.5rem;
    }

    .coming-soon-section {
        padding: 4rem 1rem;
    }
}

/* Flowchart Page */
.flowchart-section {
    padding: 2rem 0 4rem;
}

.flowchart-container {
    margin: 3rem auto;
    max-width: 1600px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.flowchart-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0.5rem;
}

@media (max-width: 768px) {
    .flowchart-container {
        padding: 1rem;
    }

    .flowchart-section {
        padding: 1rem 0 2rem;
    }
}

/* Fix index page footer spacing */
body:has(.hero) .footer {
    margin-top: 4rem;
}
/* Override navbar centering */
.navbar .container {
    display: flex;
    justify-content: center !important;
    align-items: center;
    gap: 0.5rem;
}
/* Push footer to bottom on index page */
.hero {
    min-height: calc(100vh - 200px);
    padding-bottom: 4rem;
}
/* Logo link styles */
.nav-brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.nav-brand a:hover {
    opacity: 0.8;
    transition: opacity 0.2s ease;
}
/* Mobile Layout Fixes */

/* Fix navigation visibility on mobile - override the display:none rule */
@media (max-width: 768px) {
    .nav-links {
        display: flex !important;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
        width: 100%;
    }
    
    .nav-links a {
        font-size: 0.875rem;
        padding: 0.5rem 0.75rem;
    }
    
    .navbar .container {
        flex-direction: column;
        gap: 0.75rem;
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    /* Fix comparison table on mobile */
    .comparison-table {
        min-width: 100% !important;
        font-size: 0.7rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.5rem 0.25rem;
        font-size: 0.65rem;
    }
    
    .comparison-table td:first-child {
        min-width: 100px;
        font-size: 0.7rem;
    }
    
    .matrix-scroll {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .nav-links a {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }
    
    .nav-brand .logo-image {
        height: 50px;
    }
}
/* Fix mobile hero/footer on index page */
@media (max-width: 768px) {
    .hero {
        min-height: auto !important;
        padding-top: 1rem;
        padding-bottom: 2rem;
    }
    
    body {
        padding-top: 140px;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 160px;
    }
}
/* Remove footer grey border on mobile */
@media (max-width: 768px) {
    .footer {
        border-top: none !important;
        padding: 2rem 0 1rem;
    }
}
/* Remove footer-bottom grey border on mobile */
@media (max-width: 768px) {
    .footer-bottom {
        border-top: none !important;
        padding-top: 1rem;
    }
}
/* Make footer blend with page on mobile */
@media (max-width: 768px) {
    .footer {
        background: transparent !important;
    }
}

/* Captcha Styling */
.captcha-group {
    margin-bottom: 1.5rem;
}

.captcha-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.captcha-question {
    background: rgba(0, 229, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 6px;
    padding: 0.75rem 1rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
    min-width: 150px;
    text-align: center;
}

.captcha-wrapper input[type="text"] {
    flex: 1;
    min-width: 120px;
    max-width: 150px;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-primary);
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.captcha-wrapper input[type="text"]:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 229, 255, 0.05);
}

.captcha-refresh {
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 6px;
    padding: 0.75rem 1rem;
    color: var(--primary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    min-width: 48px;
}

.captcha-refresh:hover {
    background: rgba(0, 229, 255, 0.2);
    border-color: var(--primary);
    transform: rotate(180deg);
}

.captcha-refresh:active {
    transform: rotate(180deg) scale(0.95);
}

/* Form message states */
.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 6px;
    font-size: 0.95rem;
    display: none;
}

.form-message.loading,
.form-message.success,
.form-message.error {
    display: block;
}

.form-message.loading {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #60a5fa;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

/* Responsive captcha layout */
@media (max-width: 768px) {
    .captcha-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .captcha-wrapper input[type="text"] {
        max-width: 100%;
    }

    .captcha-refresh {
        align-self: center;
    }
}
/* Why Page Styles */

.why-intro {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.problem-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.problem-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

.benefits-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.comparison-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.before-column h3 {
    color: #ef4444;
}

.after-column h3 {
    color: #10b981;
}

.comparison-list {
    list-style: none;
    padding: 0;
}

.comparison-list li {
    padding: 1rem;
    margin-bottom: 1rem;
    background: var(--card-bg);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    line-height: 1.6;
}

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

.audience-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.audience-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-primary);
}

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

.how-it-works {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.step-card {
    display: flex;
    gap: 1.5rem;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

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

.cta-section {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(168, 85, 247, 0.1));
}

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

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-box p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.2rem;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .benefits-comparison {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .problem-grid,
    .audience-grid {
        grid-template-columns: 1fr;
    }

    .step-card {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 auto;
    }

    .cta-box h2 {
        font-size: 2rem;
    }

    .cta-box p {
        font-size: 1rem;
    }
}
/* Why Page Hero Compact Styles */

.hero-compact {
    padding: 6rem 0 3rem;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-align: left;
}

.highlight-number {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
}

.highlight-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    margin-bottom: 0.25rem;
}

.highlight-subtitle {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Mobile responsiveness for hero highlights */
@media (max-width: 768px) {
    .hero-compact {
        padding: 5rem 0 2rem;
    }

    .hero-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .highlight-item {
        padding: 1rem;
    }

    .highlight-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}
/* Fix spacing under hero highlights */

.hero-compact {
    padding: 5rem 0 1rem;
    margin-bottom: 0;
}

.hero-compact + .section {
    margin-top: -5rem;
    padding-top: 1rem;
}
/* Protection Section Styles */

.protection-section {
    background: var(--bg-secondary);
}

.protection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    gap: 1.5rem;
    margin-top: 2rem;
}

.protection-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.protection-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.protection-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-primary);
    font-weight: 600;
}

.protection-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.protection-list li {
    padding: 0.75rem 0;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
}

.protection-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: 700;
}

/* Mobile responsiveness */
@media (max-width: 968px) {
    .protection-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
/* Make protection cards smaller */

.protection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.protection-card {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.protection-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.protection-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-primary);
    font-weight: 600;
}

.protection-list li {
    padding: 0.5rem 0;
    margin-bottom: 0.25rem;
    color: var(--text-secondary);
    line-height: 1.5;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}
/* Minimal Pricing Page Styles */

.pricing-minimal {
    padding: 4rem 0 3rem;
}

.pricing-minimal .section-title {
    margin-bottom: 3rem;
}

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

.pricing-minimal .pricing-card {
    padding: 2rem 1.5rem;
}

.pricing-minimal .pricing-features {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.pricing-minimal .pricing-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.pricing-note {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-note p {
    margin: 0;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .pricing-minimal .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Core Capabilities Section */
.capabilities {
    padding: 60px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 100%);
}

.capabilities h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #00ff88 0%, #00ccff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.capability-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 24px;
    transition: all 0.3s ease;
}

.capability-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 255, 136, 0.3);
    transform: translateY(-2px);
}

.capability-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #00ff88;
    margin-bottom: 12px;
}

.capability-item p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

@media (max-width: 768px) {
    .capabilities {
        padding: 40px 0;
    }

    .capabilities h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .capability-item {
        padding: 20px;
    }
}

/* Tiles Slider Container */
.tiles-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
}

.tiles-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.tiles-slide {
    min-width: 100%;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.tiles-slide.active {
    opacity: 1;
}

/* Hero tiles styling for capabilities in slider */
.hero-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-tiles .capability-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 12px;
    padding: 28px;
    transition: all 0.3s ease;
}

.hero-tiles .capability-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 255, 136, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 255, 136, 0.15);
}

.hero-tiles .capability-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #00ff88;
    margin-bottom: 12px;
    text-align: left;
}

.hero-tiles .capability-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    text-align: left;
}

/* Slider Navigation Buttons */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: #00ff88;
}

.slider-nav:hover {
    background: rgba(0, 255, 136, 0.2);
    border-color: rgba(0, 255, 136, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-nav-left {
    left: 20px;
}

.slider-nav-right {
    right: 20px;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot:hover {
    background: rgba(0, 255, 136, 0.3);
    border-color: rgba(0, 255, 136, 0.5);
    transform: scale(1.2);
}

.dot.active {
    background: #00ff88;
    border-color: #00ff88;
    width: 32px;
    border-radius: 6px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-tiles {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hero-tiles .capability-item {
        padding: 20px;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
    }

    .slider-nav-left {
        left: 10px;
    }

    .slider-nav-right {
        right: 10px;
    }

    .slider-nav svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .slider-nav {
        width: 36px;
        height: 36px;
        opacity: 0.9;
    }
}

/* Value Bullets */
.value-bullets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 40px 0 60px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.value-bullet {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 8px;
    padding: 24px;
    transition: all 0.3s ease;
}

.value-bullet:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 255, 136, 0.4);
    transform: translateY(-2px);
}

.value-bullet h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #00ff88;
    margin-bottom: 8px;
}

.value-bullet p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* How It Works */
.how-it-works {
    margin-top: 80px;
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
}

.how-it-works h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #00ff88 0%, #00ccff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00ff88 0%, #00ccff 100%);
    color: #0a0a0a;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
}

.step p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

@media (max-width: 768px) {
    .value-bullets {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 30px 0 40px 0;
    }

    .value-bullet {
        padding: 20px;
    }

    .how-it-works {
        margin-top: 60px;
        padding: 40px 20px;
    }

    .how-it-works h2 {
        font-size: 1.75rem;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Featured NEW cards */
.feature-card.featured-new {
    border: 1px solid rgba(0, 255, 136, 0.4);
    background: rgba(0, 255, 136, 0.03);
}

.badge-new {
    display: inline-block;
    background: linear-gradient(135deg, #00ff88 0%, #00ccff 100%);
    color: #0a0a0a;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    margin-left: 8px;
    vertical-align: middle;
}

/* Deployment Options */
.deployment-options {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 40px;
}

.deployment-options h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #00ff88;
    margin-bottom: 12px;
}

.deployment-options p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Why It Matters */
.why-it-matters {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 255, 136, 0.2);
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
}

/* Security Section */
.security-section {
    margin-top: 60px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 12px;
}

.security-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00ff88;
    margin-bottom: 30px;
    text-align: center;
}

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

.security-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
}

.security-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 255, 136, 0.3);
    transform: translateY(-2px);
}

.security-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #00ff88;
    margin-bottom: 8px;
}

.security-item p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

@media (max-width: 768px) {
    .deployment-options {
        padding: 20px;
    }

    .security-section {
        padding: 30px 20px;
    }

    .security-section h3 {
        font-size: 1.5rem;
    }

    .security-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* How It Works in Slider */
.how-it-works-slider {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.how-it-works-slider h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #00ff88 0%, #00ccff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.how-it-works-slider .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.how-it-works-slider .step {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.how-it-works-slider .step:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 255, 136, 0.4);
    transform: translateY(-2px);
}

.how-it-works-slider .step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00ff88 0%, #00ccff 100%);
    color: #0a0a0a;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
}

.how-it-works-slider .step p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

@media (max-width: 768px) {
    .how-it-works-slider {
        padding: 30px 15px;
    }

    .how-it-works-slider h2 {
        font-size: 1.75rem;
        margin-bottom: 30px;
    }

    .how-it-works-slider .steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .how-it-works-slider .step {
        padding: 16px;
    }
}

/* Nav Actions (Login) - positioned on the right */
.nav-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.nav-login {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
}

.nav-login:hover {
    color: var(--accent-primary);
    border-color: var(--accent-primary);
}

@media (max-width: 768px) {
    .nav-actions {
        margin-left: 0;
        margin-top: 0.75rem;
        width: 100%;
        justify-content: center;
    }

    .nav-login {
        display: block;
        text-align: center;
    }
}

/* Center the navbar links while keeping logo left and login right */
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-brand {
    flex-shrink: 0;
}

.nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1.5rem;
}

.nav-actions {
    margin-left: auto;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        justify-content: center;
    }

    .nav-links {
        position: static;
        transform: none;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 0.75rem;
    }

    .nav-actions {
        margin-left: 0;
        margin-top: 0.75rem;
    }
}
