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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

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

/* Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #e9ecef;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #4CAF50;
    text-decoration: none;
}

.logo {
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: #4CAF50;
}

.nav-cta {
    background: #4CAF50;
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: #45a049;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    margin-bottom: 4rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    display: block;
    background: linear-gradient(45deg, #4CAF50, #8BC34A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: #4CAF50;
    color: white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-primary:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #333;
    border: 2px solid #333;
}

.btn-secondary:hover {
    background: #333;
    color: white;
}

.btn-outline {
    background: transparent;
    color: #333;
    border: 1px solid #333;
}

.btn-outline:hover {
    background: #333;
    color: white;
    border-color: #333;
}

/* Fix secondary and outline buttons on dark backgrounds */
.cta .btn-secondary,
.hero .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta .btn-secondary:hover,
.hero .btn-secondary:hover {
    background: white;
    color: #333;
}

.cta .btn-outline,
.hero .btn-outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

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

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

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

.hero-visual {
    display: flex;
    justify-content: center;
}

.code-preview {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.code-header {
    background: #2d2d2d;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.code-header::before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff5f56;
    box-shadow: 20px 0 0 #ffbd2e, 40px 0 0 #27ca3f;
}

.code-title {
    color: #fff;
    font-size: 0.9rem;
    margin-left: 3rem;
}

.code-content {
    padding: 1.5rem;
    color: #f8f8f2;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    overflow-x: auto;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

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

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.8;
}

/* Demo Section */
.demo {
    padding: 100px 0;
    background: white;
}

/* Demo Categories */
.demo-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
    max-width: 1200px;
}

.demo-category {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.demo-category h3 {
    margin: 0 0 0.5rem 0;
    color: #333;
    font-size: 1.1rem;
}

.demo-category p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.demo-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.demo-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #e9ecef;
}

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

.demo-logo {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: linear-gradient(135deg, #4CAF50, #45a049);
}

.demo-header h3 {
    margin: 0;
    color: #333;
}

/* Production Example Styling */
.production-example {
    border: 2px solid #4CAF50;
    background: linear-gradient(135deg, #f8fff8, #f0f8f0);
}

.production-example .demo-logo {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
}

/* Coming Soon Card */
.coming-soon .demo-logo {
    background: linear-gradient(135deg, #FF9800, #F57C00);
    color: white;
}

.coming-soon-content {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 152, 0, 0.1);
    border-radius: 8px;
    border-left: 4px solid #FF9800;
}

.coming-soon-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.coming-soon-content p {
    margin: 0.5rem 0;
    color: #333;
    line-height: 1.5;
}

.btn-secondary {
    background: #6c757d;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 5px;
    display: inline-block;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background: #5a6268;
    color: white;
}

/* Production Links Styling */
.production-links {
    display: flex;
    gap: 0.75rem;
    margin: 1rem 0;
}

.production-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
}

.production-link:hover {
    background: #e9ecef;
    border-color: #4CAF50;
    color: #4CAF50;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.2);
}

.production-link .link-icon {
    font-size: 1rem;
}

/* Scraping Race Demo Styling */
.scraping-race-demo .demo-logo {
    background: linear-gradient(135deg, #FF6B35, #FF8C42);
    color: white;
}

.race-preview {
    margin-bottom: 2rem;
}

.race-description {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 8px;
    border-left: 4px solid #FF6B35;
}

.race-description p {
    margin: 0;
    color: #333;
    line-height: 1.5;
}

.race-stats-preview {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.race-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

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

.race-stat div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.race-stat strong {
    color: #333;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.race-stat span {
    color: #666;
    font-size: 0.8rem;
}

.vs-text {
    color: #FF6B35;
    font-weight: bold;
    font-size: 0.9rem;
    padding: 0 1rem;
}

.business-value {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.business-value h4 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1rem;
}

.business-value ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.business-value li {
    padding: 0.5rem 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.business-value li strong {
    color: #333;
}

/* Mini Race Demo Styles */
.race-container-mini {
    display: flex;
    align-items: stretch;
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.race-side {
    flex: 1;
    text-align: center;
    padding: 1rem;
    border-radius: 6px;
}

.unprotected-mini {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.2);
}

.protected-mini {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.race-side h4 {
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    color: #333;
}

.mini-counter {
    font-size: 1.8rem;
    font-weight: bold;
    color: #FF6B35;
    margin: 0.5rem 0;
}

.protected-mini .mini-counter {
    color: #4CAF50;
}

.mini-status {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.mini-data-feed {
    height: 60px;
    font-size: 10px;
    font-family: monospace;
    overflow: hidden;
    background: rgba(0,0,0,0.05);
    border-radius: 4px;
    padding: 4px;
    border: 1px solid rgba(0,0,0,0.1);
}

.vs-divider-mini {
    display: flex;
    align-items: center;
    color: #FF6B35;
    font-weight: bold;
    font-size: 0.9rem;
    padding: 0 0.5rem;
}

.mini-data-item {
    padding: 1px 0;
    animation: miniHighlight 0.3s ease-out;
    font-size: 9px;
    line-height: 1.2;
    color: #333;
}

@keyframes miniHighlight {
    0% { background: #ffff99; }
    100% { background: transparent; }
}

/* Responsive for mini race */
@media (max-width: 768px) {
    .race-container-mini {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .vs-divider-mini {
        text-align: center;
        padding: 0.5rem;
    }
}

.production-note {
    text-align: center;
    margin-top: 1rem;
    color: #666;
    font-style: italic;
}

/* Interactive Demo */
.interactive-demo {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px dashed #ddd;
}

.demo-endpoint {
    text-align: center;
    margin-bottom: 1.5rem;
}

.demo-endpoint h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.endpoint-url {
    font-family: 'Monaco', 'Menlo', monospace;
    background: #333;
    color: #4CAF50;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.demo-status {
    color: #666;
    font-style: italic;
}

.demo-action {
    text-align: center;
    margin: 1.5rem 0;
}

.demo-result {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #e8f5e8;
    border-radius: 8px;
    border-left: 4px solid #4CAF50;
}

.result-success h4 {
    margin-bottom: 1rem;
    color: #2e7d32;
}

.result-data {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.result-item {
    padding: 0.5rem;
    background: white;
    border-radius: 5px;
    font-size: 0.9rem;
}

.result-item strong {
    color: #333;
}

.pow-progress {
    margin: 1rem 0;
    padding: 1rem;
    background: #333;
    border-radius: 8px;
    color: white;
    display: none;
}

.progress-bar {
    width: 100%;
    height: 20px;
    background: #555;
    border-radius: 10px;
    overflow: hidden;
    margin: 0.5rem 0;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4CAF50, #45a049);
    width: 0%;
    transition: width 0.3s ease;
}

.progress-text {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.progress-container {
    margin: 1rem 0;
    padding: 1rem;
    background: #333;
    border-radius: 8px;
    color: white;
}

/* Comparison Section */
.comparison {
    background: #f8f9fa;
    padding: 5rem 0;
}

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

.comparison-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.comparison-card.traditional {
    border-left: 4px solid #ff6b6b;
}

.comparison-card.integrityguard {
    border-left: 4px solid #4CAF50;
}

.comparison-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.comparison-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comparison-point {
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.9rem;
}

.comparison-point strong {
    color: #333;
}

.use-case-examples {
    margin-top: 3rem;
}

.use-case-examples h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

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

.example-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.example-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.example-card h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.example-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.demo-header p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.demo-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    gap: 1rem;
}

.demo-stat {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

.demo-stat strong {
    display: block;
    font-size: 1.5rem;
    color: #4CAF50;
    margin-bottom: 0.25rem;
}

.demo-features h4 {
    margin-bottom: 1rem;
    color: #333;
}

.demo-features ul {
    list-style: none;
    padding: 0;
}

.demo-features li {
    padding: 0.5rem 0;
    color: #666;
}

/* Customer Segments Section */
.customer-segments {
    padding: 5rem 0;
    background: white;
}

.dual-market {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}

.market-side {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #e0e0e0;
}

.market-side.ai-providers {
    border-color: #4CAF50;
    background: linear-gradient(135deg, #f8fff8, #f0f8f0);
}

.market-side.content-owners {
    border-color: #2196F3;
    background: linear-gradient(135deg, #f8f9ff, #f0f4ff);
}

.market-side h3 {
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.3rem;
}

.market-examples {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 5px;
}

.market-problems {
    margin-bottom: 1.5rem;
}

.market-problem {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.4;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 5px;
}

.market-value {
    background: rgba(255, 255, 255, 0.8);
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.4;
    border-left: 3px solid #4CAF50;
}

.vs-divider {
    font-size: 2rem;
    font-weight: bold;
    color: #666;
    text-align: center;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.market-reality {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 2rem;
}

.market-reality h3 {
    margin-bottom: 1.5rem;
}

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

.reality-point {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .dual-market {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .vs-divider {
        order: 2;
        transform: rotate(90deg);
    }
    
    .market-side.content-owners {
        order: 3;
    }
}

.segment-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #e0e0e0;
    text-align: center;
}

.segment-card.primary {
    border-color: #4CAF50;
    background: linear-gradient(135deg, #f8fff8, #f0f8f0);
}

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

.segment-card h3 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.2rem;
}

.segment-examples {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-bottom: 1.5rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 5px;
}

.segment-problem, .segment-value {
    text-align: left;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.segment-problem {
    color: #d32f2f;
}

.segment-value {
    color: #2e7d32;
}

.value-callout {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    max-width: 800px;
    margin: 3rem auto 0 auto;
}

.value-callout h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.value-callout p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
}

.enterprise-cta {
    margin-top: 1.5rem;
}

.enterprise-cta .btn {
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

/* Economic Shift Section */
.economic-shift {
    padding: 5rem 0;
    background: #f8f9fa;
}

.economics-tldr {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    margin: 2rem auto;
    max-width: 600px;
    border-left: 5px solid #c44;
}

.economics-tldr h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

.economics-tldr p {
    margin: 0;
    font-size: 1.1rem;
}

.shift-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}

.shift-column {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.shift-column.old-way {
    border-left: 4px solid #ff6b6b;
}

.shift-column.new-way {
    border-left: 4px solid #4CAF50;
}

.shift-column h3 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.shift-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.shift-point {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.shift-arrow {
    font-size: 3rem;
    color: #4CAF50;
    text-align: center;
    font-weight: bold;
}

.economic-reality {
    max-width: 600px;
    margin: 0 auto;
}

.reality-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.reality-card h4 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.cost-comparison {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.cost-item {
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
}

.cost-item.traditional {
    background: rgba(255, 107, 107, 0.2);
    border: 1px solid rgba(255, 107, 107, 0.5);
}

.cost-item.integrityguard {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.5);
}

.cost-conclusion {
    font-size: 1.1rem;
    font-weight: bold;
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .shift-comparison {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .shift-arrow {
        transform: rotate(90deg);
        font-size: 2rem;
    }
}

/* AI Pain Points / Scraping Threats */
.ai-pain-points, .scraping-threats {
    padding: 5rem 0;
    background: white;
}

.pain-grid, .threat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pain-card, .threat-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #e0e0e0;
}

.pain-icon, .threat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pain-card h3, .threat-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

.pain-cost {
    background: #ff6b6b;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.threat-examples {
    background: #e3f2fd;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-style: italic;
    color: #1976d2;
    margin-top: 1rem;
}

.scraping-reality {
    background: #fff3e0;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #ff9800;
    margin-top: 3rem;
}

.scraping-reality h3 {
    margin-bottom: 1.5rem;
    color: #e65100;
}

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

.failure-point {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
}

/* ROI Calculator */
.roi-calculator {
    padding: 5rem 0;
    background: #f8f9fa;
}

.roi-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.roi-examples {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.roi-example {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #4CAF50;
}

.roi-scenario, .roi-assumption, .roi-savings, .roi-annual {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.roi-comparison {
    background: #e8f5e8;
    padding: 2rem;
    border-radius: 10px;
}

.cost-breakdown {
    margin: 1rem 0;
}

.cost-item {
    background: white;
    padding: 1rem;
    margin: 0.5rem 0;
    border-radius: 5px;
}

.cost-item.highlight {
    background: #4CAF50;
    color: white !important;
}

.cost-item.highlight strong {
    color: white !important;
}

.roi-conclusion {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2e7d32;
    text-align: center;
    margin-top: 1rem;
}

/* Economic Reality Section */
.economic-reality-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.economics-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}

.economics-side {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.economics-side.before {
    border-left: 4px solid #ff6b6b;
}

.economics-side.after {
    border-left: 4px solid #4CAF50;
}

.economics-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.economics-item {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.9rem;
}

.economics-arrow {
    font-size: 3rem;
    color: #4CAF50;
    font-weight: bold;
}

.scraper-abandonment {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

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

.abandonment-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 3px solid #4CAF50;
}

/* Success Stories */
.success-stories {
    padding: 5rem 0;
    background: white;
}

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

.story-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #e0e0e0;
}

.story-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.story-card h3 {
    margin-bottom: 1rem;
    text-align: center;
    color: #333;
}

.story-card p {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .economics-comparison {
        grid-template-columns: 1fr;
    }
    
    .economics-arrow {
        transform: rotate(90deg);
        font-size: 2rem;
    }
}

/* Integration Stack Section */
.integration-stack {
    padding: 5rem 0;
    background: white;
}

.stack-diagram {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.stack-layer {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    background: #f8f9fa;
    position: relative;
}

.stack-layer.existing {
    border-color: #ddd;
    background: #f5f5f5;
}

.stack-layer.new {
    border-color: #4CAF50;
    background: linear-gradient(135deg, #f8fff8, #f0f8f0);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2);
}

.stack-layer.business {
    border-color: #ff9800;
    background: linear-gradient(135deg, #fff8f0, #fff0e0);
}

.layer-icon {
    font-size: 2rem;
    min-width: 60px;
    text-align: center;
}

.layer-content h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    color: #333;
}

.layer-content p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.layer-badge {
    position: absolute;
    top: -8px;
    right: 15px;
    background: #4CAF50;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: bold;
}

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

.integration-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}

.integration-card h4 {
    margin-bottom: 1rem;
    color: #333;
}

.integration-card pre {
    background: #1a1a1a;
    color: #f8f8f2;
    padding: 1rem;
    border-radius: 5px;
    overflow-x: auto;
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

.integration-card code {
    font-family: 'Monaco', 'Menlo', monospace;
}

@media (max-width: 768px) {
    .integration-examples {
        grid-template-columns: 1fr;
    }
    
    .stack-layer {
        flex-direction: column;
        text-align: center;
    }
    
    .layer-content {
        text-align: center;
    }
}

/* Technical Section */
.technical {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.technical-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #4CAF50;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.technical-step h3 {
    margin-bottom: 1rem;
    color: #333;
}

.technical-step p {
    color: #666;
    line-height: 1.8;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: #f8f9fa;
    color: #333;
    text-align: center;
}

.pricing .section-header h2,
.pricing .section-header p {
    color: #333;
}

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

.pricing-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.pricing-card.developer {
    border-color: #2196F3;
}

.pricing-card.professional {
    border-color: #4CAF50;
    border-width: 3px;
    transform: scale(1.02);
}

.pricing-card.enterprise {
    border-color: #FF9800;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #4CAF50;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
    font-weight: bold;
}

.currency {
    font-size: 1.5rem;
    color: #666;
}

.amount {
    font-size: 3rem;
    color: #333;
    margin: 0 0.25rem;
}

.pricing-features {
    margin-bottom: 2rem;
}

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

.pricing-features li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: #333;
}

.pricing-action {
    margin-top: 2rem;
}

.tier-subtitle {
    color: #666;
    font-size: 0.9rem;
    margin: 0 0 1rem 0;
    font-style: italic;
}

.pricing-limit, .pricing-note {
    margin-top: 1rem;
    padding: 0.5rem;
    background: #f0f0f0;
    border-radius: 5px;
    font-size: 0.8rem;
    color: #666;
}

.amount {
    font-size: 4rem;
    font-weight: bold;
}

.price-period {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}


.pricing-note {
    margin-top: 1rem;
    opacity: 0.8;
    font-size: 0.9rem;
}

.roi-anchor {
    background: linear-gradient(135deg, #2e7d32, #4CAF50);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 3rem auto;
    max-width: 800px;
}

.roi-breakdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.roi-stat {
    flex: 0 0 auto;
}

.roi-number {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    line-height: 1;
}

.roi-label {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.roi-calculation {
    flex: 1;
    min-width: 300px;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: left;
}

@media (max-width: 768px) {
    .roi-breakdown {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .roi-calculation {
        text-align: center;
        min-width: auto;
    }
}

.pricing-guarantee {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-guarantee h4 {
    margin-bottom: 0.5rem;
    color: #4CAF50;
}

.price-subtitle {
    color: #666;
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.renewal-note {
    margin-top: 0.5rem;
}

.renewal-note small {
    color: #888;
    font-style: italic;
}

.period {
    font-size: 1rem;
    color: #666;
}

.pricing-faq {
    margin-top: 2rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    text-align: center;
}

.pricing-faq h4 {
    margin-bottom: 1.5rem;
    color: #333;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    text-align: left;
}

.faq-item {
    padding: 1rem;
    background: white;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.4;
}

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

/* CTA Section */
.cta {
    padding: 100px 0;
    background: #333;
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.threat-stat {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    margin: 1.5rem auto;
    max-width: 800px;
}

.stat-highlight {
    font-size: 1.2rem;
    line-height: 1.4;
}

.stat-highlight strong {
    color: #fff;
    font-weight: bold;
}

.publisher-roi-callout {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 3rem auto;
    max-width: 800px;
}

.publisher-roi-callout h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.publisher-roi-callout p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.publisher-roi-stat {
    font-size: 1.2rem;
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

.enterprise-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.enterprise-ctas .btn {
    min-width: 200px;
}

.legal-contrast {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    margin: 2rem auto 0;
    max-width: 600px;
}

.legal-contrast h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    font-weight: bold;
}

.legal-contrast p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.9;
}

.ai-pain-tldr {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    margin: 1.5rem auto;
    max-width: 700px;
}

.ai-pain-tldr h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

.ai-pain-tldr p {
    margin: 0;
    font-size: 1.1rem;
}

.setup-time {
    background: #4CAF50;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-left: auto;
}

.code-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.integration-note {
    text-align: center;
    margin-top: 1rem;
    padding: 0.8rem;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 8px;
    color: #2e7d32;
    font-size: 0.95rem;
}

.roi-table {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.roi-table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    background: #333;
    color: white;
}

.roi-table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    border-bottom: 1px solid #eee;
}

.roi-table-row:last-child {
    border-bottom: none;
}

.roi-col {
    padding: 1rem;
    text-align: center;
    font-size: 0.95rem;
}

.roi-table-header .roi-col {
    font-weight: bold;
    font-size: 1rem;
}

.roi-col.highlight {
    background: rgba(76, 175, 80, 0.2) !important;
    color: #2e7d32 !important;
    font-weight: bold;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: #2e7d32 !important;
}

.roi-conclusion {
    text-align: center;
    font-size: 1.1rem;
    color: #2e7d32;
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 8px;
}

@media (max-width: 768px) {
    .roi-table-header,
    .roi-table-row {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .roi-col {
        border-bottom: 1px solid #eee;
        padding: 0.75rem 1rem;
    }
    
    .roi-table-header .roi-col {
        background: #4CAF50;
        color: white;
        font-weight: bold;
    }
}

.roi-emphasis {
    background: rgba(76, 175, 80, 0.2);
    color: #2e7d32;
    padding: 0.8rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.95rem;
}

/* Interactive ROI Calculator */
.roi-calculator-interactive {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    margin: 3rem auto;
    max-width: 900px;
}

.roi-calculator-interactive h3 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.roi-calculator-interactive p {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

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

.input-group {
    text-align: center;
}

.input-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.slider {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.3);
    outline: none;
    margin: 1rem 0;
}

.slider::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.number-input {
    width: 120px;
    padding: 0.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    text-align: center;
}

.number-input:focus {
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 0.2);
}

.input-display {
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 0.5rem;
}

.input-note {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

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

.result-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.result-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.result-value {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
}

.calculator-cta {
    text-align: center;
    margin-top: 2rem;
}

.roi-summary {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.calculator-cta .btn {
    font-size: 1.1rem;
    padding: 1rem 2rem;
    background: white;
    color: #4CAF50;
}

.calculator-cta .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .calculator-inputs {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .calculator-results {
        grid-template-columns: 1fr;
    }
    
    .roi-calculator-interactive {
        padding: 2rem 1rem;
    }
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.floating-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.demo-btn {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
}

.license-btn {
    background: linear-gradient(135deg, #2196F3, #1976D2);
    color: white;
}

@media (max-width: 768px) {
    .floating-cta {
        bottom: 1rem;
        right: 1rem;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #4CAF50;
    margin-bottom: 1rem;
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.8;
}

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

.footer-column h4 {
    margin-bottom: 1rem;
    color: #4CAF50;
}

.footer-column a {
    display: block;
    color: #ccc;
    text-decoration: none;
    padding: 0.25rem 0;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #4CAF50;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    opacity: 0.6;
}

.footer-bottom p {
    margin: 0.5rem 0;
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .demo-categories {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .demo-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu .nav-link {
        padding: 1rem;
        display: block;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .demo-categories {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 2rem 0;
    }
    
    .demo-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .demo-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .technical-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}

/* Battle Hero Section */
.battle-hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.battlefield-container {
    display: flex;
    height: 100vh;
    position: relative;
    width: 100%;
}

.battlefield {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.8s ease;
    cursor: pointer;
    width: 100%;
}

.ai-battlefield {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    background-image: 
        linear-gradient(45deg, rgba(0, 255, 255, 0.05) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(0, 255, 255, 0.05) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(0, 255, 255, 0.05) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(0, 255, 255, 0.05) 75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
}

.content-battlefield {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #5d6d7e 100%);
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.05) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 2px, transparent 2px);
    background-size: 40px 40px;
}

.battlefield-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: all 0.3s ease;
}

.battlefield:hover .battlefield-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.battlefield-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 500px;
}

.battle-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.battle-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 4px rgba(0, 0, 0, 0.6);
}

.battle-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-style: italic;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8), 0 0 2px rgba(0, 0, 0, 0.6);
}

.battle-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.battle-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    cursor: help;
    transition: all 0.3s ease;
}

.battle-stat:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Tooltip Styles */
.battle-stat[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    z-index: 100;
    opacity: 0;
    animation: tooltipFadeIn 0.3s ease forwards;
}

.battle-stat[data-tooltip]:hover::before {
    content: '';
    position: absolute;
    bottom: 115%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
    z-index: 100;
    opacity: 0;
    animation: tooltipFadeIn 0.3s ease forwards;
}

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

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #4CAF50;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8), 0 0 2px rgba(0, 0, 0, 0.6);
}

.stat-desc {
    font-size: 0.85rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.btn-battle {
    background: linear-gradient(45deg, #4CAF50, #66BB6A);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-battle:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.5), 0 0 20px rgba(76, 175, 80, 0.3);
    background: linear-gradient(45deg, #45a049, #5cb85c);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.roi-punch-line {
    margin-top: 0.75rem;
    font-size: 0.95rem;
    color: #4CAF50;
    font-weight: bold;
    text-align: center;
    font-style: italic;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    opacity: 0.9;
}

/* Center Divider */
.battlefield-divider {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    min-width: 300px;
}

.divider-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.logo-shield {
    font-size: 2rem;
    animation: pulse 2s infinite;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4CAF50;
}

.divider-tagline {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #4CAF50;
}

.divider-subtitle {
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

/* Battle Selector */
.battle-selector {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.selector-intro h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #4CAF50;
}

.selector-intro p {
    opacity: 0.8;
    font-size: 1.1rem;
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Mobile Responsiveness for Battle Hero */
@media (max-width: 768px) {
    body {
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }
    
    html {
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }
    .battle-hero {
        min-height: auto;
        margin-top: 70px; /* Account for fixed header */
        width: 100vw;
        max-width: 100%;
        overflow-x: hidden;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }
    
    .battlefield-container {
        flex-direction: column;
        height: auto;
        width: 100vw;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .battlefield {
        min-height: 60vh;
        flex: none;
        width: 100vw;
        max-width: 100%;
        margin: 0;
        padding: 0;
        border-radius: 0 !important;
    }
    
    .battlefield-content {
        padding: 1.5rem 1rem;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    
    .battle-icon {
        font-size: 3rem;
    }
    
    .battle-title {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }
    
    .battle-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .battle-stats {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
        flex-direction: column;
        align-items: center;
    }
    
    .battle-stat {
        padding: 0.5rem 0.75rem;
        margin: 0 auto;
        max-width: 160px;
        width: 160px;
        border-radius: 8px !important;
    }
    
    .stat-value {
        font-size: 1.25rem;
    }
    
    .btn-battle {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        max-width: 280px;
        text-align: center;
    }
    
    .roi-punch-line {
        font-size: 0.8rem;
        margin-top: 0.5rem;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .battlefield-divider {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin: 0;
        padding: 1.5rem;
        min-width: auto;
        width: 100vw;
        max-width: 100%;
        box-sizing: border-box;
        border-radius: 0 !important;
    }
    
    .divider-logo {
        margin-bottom: 0.75rem;
    }
    
    .logo-shield {
        font-size: 1.5rem;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
    
    .divider-tagline {
        font-size: 1rem;
    }
    
    .divider-subtitle {
        font-size: 0.8rem;
    }
    
    .battle-selector {
        position: relative;
        padding: 1.5rem 1rem;
    }
    
    .selector-intro h2 {
        font-size: 1.5rem;
    }
    
    .selector-intro p {
        font-size: 1rem;
    }
    
    /* Disable hover effects on mobile */
    .battlefield:hover .battlefield-overlay {
        background: rgba(0, 0, 0, 0.7); /* Keep overlay dark on mobile */
    }
    
    .battle-stat:hover {
        background: rgba(255, 255, 255, 0.1); /* No hover lift on mobile */
        transform: none;
        box-shadow: none;
    }
    
    .btn-battle:hover {
        transform: none; /* No hover animations on mobile */
        box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    }
    
    /* Disable tooltips on mobile */
    .battle-stat[data-tooltip]:hover::after,
    .battle-stat[data-tooltip]:hover::before {
        display: none;
    }
}

/* Contact Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease-out;
}

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

.modal-header {
    padding: 1.5rem 2rem 1rem 2rem;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.5rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6c757d;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background-color: #f8f9fa;
    color: #495057;
}

.modal-body {
    padding: 1.5rem 2rem 2rem 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #495057;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

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

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

.contact-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
}

.contact-status.success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.contact-status.error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* Mobile Modal Styles */
@media (max-width: 768px) {
    .modal-content {
        margin: 2% auto;
        width: 95%;
        max-height: 90vh;
    }
    
    .modal-header,
    .modal-body {
        padding: 1rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
        margin: 0;
    }
}